我有多个aws_glue_catalog_table
资源,我想创建一个output
循环遍历所有资源以显示每个资源的 S3 存储桶位置的单个资源。这样做的目的是测试我是否location
为 Terratest 中的每个资源使用了正确的(因为它是变量的串联)。我不能使用aws_glue_catalog_table.*
或者aws_glue_catalog_table.[]
因为 Terraform 不允许在不指定资源名称的情况下引用资源。
所以我variable "table_names"
用r1
, r2
, rx
. 然后,我可以遍历名称。我想aws_glue_catalog_table.r1.storage_descriptor[0].location
动态创建字符串,所以我可以检查它location
是否正确。
resource "aws_glue_catalog_table" "r1" {
name = "r1"
database_name = var.db_name
storage_descriptor {
location = "s3://${var.bucket_name}/${var.environment}-config/r1"
}
...
}
resource "aws_glue_catalog_table" "rX" {
name = "rX"
database_name = var.db_name
storage_descriptor {
location = "s3://${var.bucket_name}/${var.environment}-config/rX"
}
}
variable "table_names" {
description = "The list of Athena table names"
type = list(string)
default = ["r1", "r2", "r3", "rx"]
}
output "athena_tables" {
description = "Athena tables"
value = [for n in var.table_names : n]
}
第一次尝试:我尝试output "athena_tables_location"
使用语法创建一个,aws_glue_catalog_table.${table}
但确实如此。
output "athena_tables_location" {
// HOW DO I ITERATE OVER ALL TABLES?
value = [for t in var.table_names : aws_glue_catalog_table.${t}.storage_descriptor[0].location"]
}
第二次尝试:我尝试创建一个但 IntelliJ 已经在 for loop 中variable "table_name_locations"
显示错误。${t}
[for t in var.table_names : "aws_glue_catalog_table.${t}.storage_descriptor[0].location"]
variable "table_name_locations" {
description = "The list of Athena table locations"
type = list(string)
// THIS ALSO DOES NOT WORK
default = [for t in var.table_names : "aws_glue_catalog_table.${t}.storage_descriptor[0].location"]
}
如何列出所有表格位置,output
然后使用 Terratest 对其进行测试?一旦我可以遍历表并收集 S3 位置,我就可以使用 Terratest 进行以下测试:
athenaTablesLocation := terraform.Output(t, terraformOpts, "athena_tables_location")
assert.Contains(t, athenaTablesLocation, "s3://rX/test-config/rX",)