feat: Add kubernetes standard labels to avoid manual mistakes on the managed aws-auth configmap (#989)

This commit is contained in:
Guillaume GILL
2020-10-25 15:14:50 +01:00
committed by GitHub
parent c7f88997d1
commit 751c422330
3 changed files with 16 additions and 0 deletions

View File

@@ -47,6 +47,12 @@ variable "manage_aws_auth" {
default = true
}
variable "aws_auth_additional_labels" {
description = "Additionnal kubernetes labels applied on aws-auth ConfigMap"
default = {}
type = map(string)
}
variable "map_accounts" {
description = "Additional AWS account numbers to add to the aws-auth configmap. See examples/basic/variables.tf for example format."
type = list(string)