File tree Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,13 @@ BACKWARDS INCOMPATIBILITIES / NOTES:
11
11
` true|false ` .
12
12
* The ` allowed_cidrs ` variable has been renamed to ` default_ingress_cidrs ` .
13
13
* The ` egress_cidrs ` variable has been renamed to ` default_egress_cidrs ` .
14
+ * The ` cluster_instance_amis ` variable has been replaced with the singular
15
+ ` cluster_instance_ami ` , with default value of ` null ` .
16
+ * The following variables have had their default value replaced from ` "" ` to
17
+ ` null ` :
18
+ - ` cluster_instance_user_data_template `
19
+ - ` cluster_instance_iam_policy_contents `
20
+ - ` cluster_service_iam_policy_contents `
14
21
15
22
IMPROVEMENTS:
16
23
Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ custom_ami_id: "ami-3fb6bc5b"
22
22
cluster_name : ' test-cluster'
23
23
cluster_instance_ssh_public_key_path : " %{hiera('project_directory')}/config/secrets/cluster/ssh.public"
24
24
cluster_instance_type : ' t2.medium'
25
- cluster_instance_ami : " ''"
26
25
cluster_instance_root_block_device_size : 40
27
26
cluster_instance_root_block_device_path : ' /dev/xvda'
28
27
Original file line number Diff line number Diff line change @@ -37,7 +37,6 @@ variable "cluster_instance_ssh_public_key_path" {
37
37
description = " The path to the public key to use for the container instances."
38
38
type = string
39
39
default = null
40
- nullable = true
41
40
}
42
41
43
42
variable "cluster_instance_root_block_device_size" {
@@ -63,29 +62,24 @@ variable "cluster_instance_root_block_device_path" {
63
62
variable "cluster_instance_user_data_template" {
64
63
description = " The contents of a template for container instance user data."
65
64
type = string
66
- default = " "
67
- nullable = false
65
+ default = null
68
66
}
69
67
70
68
variable "cluster_instance_ami" {
71
69
description = " AMI for the container instances."
72
70
type = string
73
-
74
- default = " "
75
- nullable = false
71
+ default = null
76
72
}
77
73
78
74
variable "cluster_instance_iam_policy_contents" {
79
75
description = " The contents of the cluster instance IAM policy."
80
76
type = string
81
- default = " "
82
- nullable = false
77
+ default = null
83
78
}
84
79
variable "cluster_service_iam_policy_contents" {
85
80
description = " The contents of the cluster service IAM policy."
86
81
type = string
87
- default = " "
88
- nullable = false
82
+ default = null
89
83
}
90
84
91
85
variable "cluster_minimum_size" {
You can’t perform that action at this time.
0 commit comments