我正在尝试代表objects
Go 中的 Terraform 列表,即
variable "map_roles" {
description = "Additional IAM roles to add to the aws-auth configmap."
type = list(object({
rolearn = string
username = string
groups = list(string)
}))
rolearn
和其他基本类型或复合类型,例如地图?map_roles 只是一个字符串结构和字符串切片(列表),还是一个映射结构?