feat: Add output for launch template name, and correct variable type value (#2205)

This commit is contained in:
Bryant Biggs
2022-08-17 06:24:22 -04:00
committed by GitHub
parent c0f14fbdef
commit 0a52d690d5
8 changed files with 22 additions and 10 deletions

View File

@@ -244,7 +244,7 @@ variable "cluster_security_group_name" {
variable "cluster_security_group_use_name_prefix" {
description = "Determines whether cluster security group name (`cluster_security_group_name`) is used as a prefix"
type = string
type = bool
default = true
}
@@ -300,7 +300,7 @@ variable "node_security_group_name" {
variable "node_security_group_use_name_prefix" {
description = "Determines whether node security group name (`node_security_group_name`) is used as a prefix"
type = string
type = bool
default = true
}
@@ -426,7 +426,7 @@ variable "iam_role_tags" {
variable "cluster_encryption_policy_use_name_prefix" {
description = "Determines whether cluster encryption policy name (`cluster_encryption_policy_name`) is used as a prefix"
type = string
type = bool
default = true
}