11 lines
159 B
HCL
11 lines
159 B
HCL
//modules-vpc-output
|
|
output "vpc_hq_id" {
|
|
description = "The name of vpc hq id"
|
|
value = aws_vpc.vpc-hq.id
|
|
}
|
|
|
|
output "vpc_name" {
|
|
value = var.tag_name
|
|
}
|
|
|