terraform-demo/prod-hq-idc-network/outputs.tf
2023-01-06 13:29:00 +09:00

16 lines
317 B
HCL

//main-outputs
output "aws_id" {
description = "The AWS Account ID."
value = data.aws_caller_identity.this.account_id
}
output "subnet" {
description = "The name of vpc hq id"
value = module.subnet_public.subnet
}
output "vpc_id" {
description = "vpc_id"
value = module.vpc_hq.vpc_hq_id
}