Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add tags to level 0 pool #70

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ module "level_zero" {

pool_config = {
cidr = var.top_cidr
netmask_length = var.top_netmask_length
ram_share_principals = var.top_ram_share_principals
auto_import = var.top_auto_import
description = var.top_description
Expand All @@ -58,9 +59,8 @@ module "level_zero" {
aws_service = var.top_aws_service
locale = var.top_locale


name = var.top_name
netmask_length = var.top_netmask_length
tags = var.tags
}
}

Expand Down