将一个 Terraform 清单用于另一个 Terraform 脚本
using one terraform inventory into another terraform script
除了创建 aws 实例之外,我正在尝试为 aws cloudwatch 警报编写一个单独的 terraform 脚本,我想使用不同 terraform 脚本的 terraform 清单,它将构建 aws instances.How 以访问一个 terraform 的清单脚本并在 cloudwatch 警报 terraform 脚本中使用它?
谢谢!
如果您在第二个 terraform 配置中使用 remote state. You will have to use root-level outputs to expose the values you want to be able to access from the second Terraform state (in your example, the aws_instance
ids, most likely). You can then use the terraform_remote_state
data source 来访问这些输出,这是可能的。
除了创建 aws 实例之外,我正在尝试为 aws cloudwatch 警报编写一个单独的 terraform 脚本,我想使用不同 terraform 脚本的 terraform 清单,它将构建 aws instances.How 以访问一个 terraform 的清单脚本并在 cloudwatch 警报 terraform 脚本中使用它?
谢谢!
如果您在第二个 terraform 配置中使用 remote state. You will have to use root-level outputs to expose the values you want to be able to access from the second Terraform state (in your example, the aws_instance
ids, most likely). You can then use the terraform_remote_state
data source 来访问这些输出,这是可能的。