Skip to content

Commit

Permalink
fix outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
kevcube committed Sep 16, 2024
1 parent 8182b3e commit 5353694
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
6 changes: 3 additions & 3 deletions examples/complete/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,16 @@ output "hostname" {
}

output "public_subnet_cidrs" {
value = module.subnets.public_subnet_cidrs
value = module.subnets.public_subnet_cidrs
description = "CIDRs for the public subnets"
}

output "private_subnet_cidrs" {
value = module.subnets.private_subnet_cidrs
value = module.subnets.private_subnet_cidrs
description = "CIDRs for the private subnets"
}

output "vpc_cidr" {
value = module.vpc.vpc_cidr_block
value = module.vpc.vpc_cidr_block
description = "CIDR for the VPC"
}
9 changes: 6 additions & 3 deletions examples/mssql/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,16 @@ output "hostname" {
}

output "public_subnet_cidrs" {
value = module.subnets.public_subnet_cidrs
value = module.subnets.public_subnet_cidrs
description = "CIDRs for the public subnets"
}

output "private_subnet_cidrs" {
value = module.subnets.private_subnet_cidrs
value = module.subnets.private_subnet_cidrs
description = "CIDRs for the private subnets"
}

output "vpc_cidr" {
value = module.vpc.vpc_cidr_block
value = module.vpc.vpc_cidr_block
description = "CIDR for the VPC"
}

0 comments on commit 5353694

Please sign in to comment.