mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-04-26 02:28:24 +02:00
adding types to fix the output of terraform-docs command
This commit is contained in:
@@ -126,3 +126,4 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a
|
|||||||
| worker_iam_role_name | IAM role name attached to EKS workers |
|
| worker_iam_role_name | IAM role name attached to EKS workers |
|
||||||
| worker_security_group_id | Security group ID attached to the EKS workers. |
|
| worker_security_group_id | Security group ID attached to the EKS workers. |
|
||||||
| workers_asg_arns | IDs of the autoscaling groups containing workers. |
|
| workers_asg_arns | IDs of the autoscaling groups containing workers. |
|
||||||
|
|
||||||
|
|||||||
@@ -34,6 +34,7 @@ variable "subnets" {
|
|||||||
|
|
||||||
variable "tags" {
|
variable "tags" {
|
||||||
description = "A map of tags to add to all resources."
|
description = "A map of tags to add to all resources."
|
||||||
|
type = "map"
|
||||||
default = {}
|
default = {}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -87,15 +88,17 @@ variable "kubeconfig_aws_authenticator_command" {
|
|||||||
|
|
||||||
variable "kubeconfig_aws_authenticator_additional_args" {
|
variable "kubeconfig_aws_authenticator_additional_args" {
|
||||||
description = "Any additional arguments to pass to the authenticator such as the role to assume [\"-r\", \"MyEksRole\"]"
|
description = "Any additional arguments to pass to the authenticator such as the role to assume [\"-r\", \"MyEksRole\"]"
|
||||||
|
type = "list"
|
||||||
default = []
|
default = []
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "kubeconfig_aws_authenticator_env_variables" {
|
variable "kubeconfig_aws_authenticator_env_variables" {
|
||||||
description = "Environment variables that should be used when executing the authenticator i.e. { AWS_PROFILE = \"eks\"}"
|
description = "Environment variables that should be used when executing the authenticator i.e. { AWS_PROFILE = \"eks\"}"
|
||||||
|
type = "map"
|
||||||
default = {}
|
default = {}
|
||||||
}
|
}
|
||||||
|
|
||||||
variable "kubeconfig_name" {
|
variable "kubeconfig_name" {
|
||||||
description = "Override the default name used for items kubeconfig"
|
description = "Override the default name used for items kubeconfig."
|
||||||
default = ""
|
default = ""
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user