Skip to content

Commit

Permalink
add output descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
kevcube committed Sep 16, 2024
1 parent 404198c commit 8182b3e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions examples/complete/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,15 @@ output "hostname" {

output "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
description = "CIDRs for the private subnets"
}

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

0 comments on commit 8182b3e

Please sign in to comment.