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