1
0
mirror of https://github.com/terraform-aws-modules/terraform-aws-eks.git synced 2025-09-09 19:32:58 +08:00

terraform fmt fix

This commit is contained in:
Max Williams
2018-07-11 10:43:09 +02:00
parent bb9e241021
commit e4263868e8
+6 -3
View File
@@ -5,27 +5,30 @@ variable "region" {
variable "map_accounts" {
description = "Additional AWS account numbers to add to the aws-auth configmap."
type = "list"
default = [
"777777777777",
"888888888888"
"888888888888",
]
}
variable "map_roles" {
description = "Additional IAM roles to add to the aws-auth configmap."
type = "list"
default = [
{
role_arn = "arn:aws:iam::66666666666:role/role1"
username = "role1"
group = "system:masters"
}
},
]
}
variable "map_users" {
description = "Additional IAM users to add to the aws-auth configmap."
type = "list"
default = [
{
user_arn = "arn:aws:iam::66666666666:user/user1"
@@ -36,6 +39,6 @@ variable "map_users" {
user_arn = "arn:aws:iam::66666666666:user/user2"
username = "user2"
group = "system:masters"
}
},
]
}