我有数据库模块,我想在数据库资源中使用count,但是我不能在mysql provider中使用count。 有什么解决方法吗?
以下是相关代码:
provider "mysql" {
endpoint = "${docker_container.database.ip_address}:3306"
#CUT CUT
}
resource "docker_container" "database" {
count = length(var.database_resource_images)
name = "db${count.index}"
image = var.database_resource_images[count.index]
# CUT CUT
}