将变量从一个模块传递到另一个模块

问题描述 投票:0回答:1

我正在为 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}"
}
amazon-web-services terraform terraform-provider-aws
1个回答
18
投票

您的

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" {}
© www.soinside.com 2019 - 2024. All rights reserved.