Skip to content

Commit

Permalink
Set user_data to null by default
Browse files Browse the repository at this point in the history
Empty string is no longer allowed
  • Loading branch information
brikis98 committed Sep 14, 2019
1 parent 08553b9 commit ddb2965
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ variable "enable_autoscaling" {
# ---------------------------------------------------------------------------------------------------------------------

variable "target_group_arns" {
description = "The ARNs of load balancer target groups in which to register Instances"
description = "The ARNs of ELB target groups in which to register Instances"
type = list(string)
default = []
}
Expand All @@ -58,7 +58,7 @@ variable "health_check_type" {
variable "user_data" {
description = "The User Data script to run in each Instance at boot"
type = string
default = ""
default = null
}

variable "custom_tags" {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ variable "health_check_type" {
variable "user_data" {
description = "The User Data script to run in each Instance at boot"
type = string
default = ""
default = null
}

variable "custom_tags" {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ variable "health_check_type" {
variable "user_data" {
description = "The User Data script to run in each Instance at boot"
type = string
default = ""
default = null
}

variable "custom_tags" {
Expand Down

0 comments on commit ddb2965

Please sign in to comment.