我正在为 AWS VPC 创建创建一个 Terraform 模块。
这是我的目录结构
➢ tree -L 3
.
├── main.tf
├── modules
│ ├── subnets
│ │ ├── main.tf
│ │ ├── outputs.tf
│ │ └── variables.tf
│ └── vpc
│ ├── main.tf
│ ├── outputs.tf
│ └── variables.tf
└── variables.tf
3 directories, 12 files
在子网模块中,我想获取vpc(子)模块的vpc id。
在
modules/vpc/outputs.tf
中我使用:
output "my_vpc_id" {
value = "${aws_vpc.my_vpc.id}"
}
这足以让我在
modules/subnets/main.tf
中执行以下操作吗?
resource "aws_subnet" "env_vpc_sn" {
...
vpc_id = "${aws_vpc.my_vpc.id}"
}
您的
main.tf
(或在任何使用子网模块的地方)需要从 VPC 模块的输出中传递此参数,并且您的子网模块需要采用必需变量。
module.<MODULE NAME>.<OUTPUT NAME>
:
在父模块中,子模块的输出可在表达式中作为模块使用...例如,如果名为 web_server 的子模块声明了名为 instance_ip_addr 的输出,则可以通过 module.web_server.instance_ip_addr 访问该值。
所以你的
main.tf
看起来像这样:
module "vpc" {
# ...
}
module "subnets" {
vpc_id = "${module.vpc.my_vpc_id}"
# ...
}
和
subnets/variables.tf
看起来像这样:
variable "vpc_id" {}