Skip to content

Commit

Permalink
Add types to all variables (required by TF 1.0.x) (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Kossakowski authored Nov 4, 2021
1 parent 20e65e1 commit a37d3c6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions _variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -56,21 +56,25 @@ variable "namespace" {
}

variable "service_account_name" {
type = string
default = "aws-alb-ingress-controller"
description = "The kubernetes service account name."
}

variable "arn_format" {
type = string
default = "aws"
description = "ARNs identifier, usefull for GovCloud begin with `aws-us-gov-<region>`."
}

variable "mod_dependency" {
type = any
default = null
description = "Dependence variable binds all AWS resources allocated by this module, dependent modules reference this variable."
}

variable "settings" {
type = map
default = {}
description = "Additional settings which will be passed to the Helm chart values, see https://github.com/aws/eks-charts/tree/master/stable/aws-load-balancer-controller#configuration."
}

0 comments on commit a37d3c6

Please sign in to comment.