Skip to content

Commit 0290261

Browse files
authored
Merge pull request #350 from rbramwell/update_upstream_nameservers_variable_type
Updated "upstream_nameservers" variable type to list(string)
2 parents 4d220a2 + 98d3697 commit 0290261

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ In either case, upgrading to module version `v1.0.0` will trigger a recreation o
172172
| skip\_provisioners | Flag to skip all local-exec provisioners. It breaks `stub_domains` and `upstream_nameservers` variables functionality. | bool | `"false"` | no |
173173
| stub\_domains | Map of stub domains and their resolvers to forward DNS queries for a certain domain to an external DNS server | map(list(string)) | `<map>` | no |
174174
| subnetwork | The subnetwork to host the cluster in (required) | string | n/a | yes |
175-
| upstream\_nameservers | If specified, the values replace the nameservers taken by default from the node’s /etc/resolv.conf | list | `<list>` | no |
175+
| upstream\_nameservers | If specified, the values replace the nameservers taken by default from the node’s /etc/resolv.conf | list(string) | `<list>` | no |
176176
| zones | The zones to host the cluster in (optional if regional cluster / required if zonal) | list(string) | `<list>` | no |
177177

178178
## Outputs

autogen/variables.tf.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ variable "stub_domains" {
217217
}
218218

219219
variable "upstream_nameservers" {
220-
type = "list"
220+
type = list(string)
221221
description = "If specified, the values replace the nameservers taken by default from the node’s /etc/resolv.conf"
222222
default = []
223223
}

modules/beta-private-cluster-update-variant/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ In either case, upgrading to module version `v1.0.0` will trigger a recreation o
200200
| skip\_provisioners | Flag to skip all local-exec provisioners. It breaks `stub_domains` and `upstream_nameservers` variables functionality. | bool | `"false"` | no |
201201
| stub\_domains | Map of stub domains and their resolvers to forward DNS queries for a certain domain to an external DNS server | map(list(string)) | `<map>` | no |
202202
| subnetwork | The subnetwork to host the cluster in (required) | string | n/a | yes |
203-
| upstream\_nameservers | If specified, the values replace the nameservers taken by default from the node’s /etc/resolv.conf | list | `<list>` | no |
203+
| upstream\_nameservers | If specified, the values replace the nameservers taken by default from the node’s /etc/resolv.conf | list(string) | `<list>` | no |
204204
| zones | The zones to host the cluster in (optional if regional cluster / required if zonal) | list(string) | `<list>` | no |
205205

206206
## Outputs

modules/beta-private-cluster-update-variant/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ variable "stub_domains" {
215215
}
216216

217217
variable "upstream_nameservers" {
218-
type = "list"
218+
type = list(string)
219219
description = "If specified, the values replace the nameservers taken by default from the node’s /etc/resolv.conf"
220220
default = []
221221
}

modules/beta-private-cluster/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ In either case, upgrading to module version `v1.0.0` will trigger a recreation o
200200
| skip\_provisioners | Flag to skip all local-exec provisioners. It breaks `stub_domains` and `upstream_nameservers` variables functionality. | bool | `"false"` | no |
201201
| stub\_domains | Map of stub domains and their resolvers to forward DNS queries for a certain domain to an external DNS server | map(list(string)) | `<map>` | no |
202202
| subnetwork | The subnetwork to host the cluster in (required) | string | n/a | yes |
203-
| upstream\_nameservers | If specified, the values replace the nameservers taken by default from the node’s /etc/resolv.conf | list | `<list>` | no |
203+
| upstream\_nameservers | If specified, the values replace the nameservers taken by default from the node’s /etc/resolv.conf | list(string) | `<list>` | no |
204204
| zones | The zones to host the cluster in (optional if regional cluster / required if zonal) | list(string) | `<list>` | no |
205205

206206
## Outputs

modules/beta-private-cluster/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ variable "stub_domains" {
215215
}
216216

217217
variable "upstream_nameservers" {
218-
type = "list"
218+
type = list(string)
219219
description = "If specified, the values replace the nameservers taken by default from the node’s /etc/resolv.conf"
220220
default = []
221221
}

modules/beta-public-cluster/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ In either case, upgrading to module version `v1.0.0` will trigger a recreation o
191191
| skip\_provisioners | Flag to skip all local-exec provisioners. It breaks `stub_domains` and `upstream_nameservers` variables functionality. | bool | `"false"` | no |
192192
| stub\_domains | Map of stub domains and their resolvers to forward DNS queries for a certain domain to an external DNS server | map(list(string)) | `<map>` | no |
193193
| subnetwork | The subnetwork to host the cluster in (required) | string | n/a | yes |
194-
| upstream\_nameservers | If specified, the values replace the nameservers taken by default from the node’s /etc/resolv.conf | list | `<list>` | no |
194+
| upstream\_nameservers | If specified, the values replace the nameservers taken by default from the node’s /etc/resolv.conf | list(string) | `<list>` | no |
195195
| zones | The zones to host the cluster in (optional if regional cluster / required if zonal) | list(string) | `<list>` | no |
196196

197197
## Outputs

modules/beta-public-cluster/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ variable "stub_domains" {
215215
}
216216

217217
variable "upstream_nameservers" {
218-
type = "list"
218+
type = list(string)
219219
description = "If specified, the values replace the nameservers taken by default from the node’s /etc/resolv.conf"
220220
default = []
221221
}

modules/private-cluster-update-variant/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ In either case, upgrading to module version `v1.0.0` will trigger a recreation o
181181
| skip\_provisioners | Flag to skip all local-exec provisioners. It breaks `stub_domains` and `upstream_nameservers` variables functionality. | bool | `"false"` | no |
182182
| stub\_domains | Map of stub domains and their resolvers to forward DNS queries for a certain domain to an external DNS server | map(list(string)) | `<map>` | no |
183183
| subnetwork | The subnetwork to host the cluster in (required) | string | n/a | yes |
184-
| upstream\_nameservers | If specified, the values replace the nameservers taken by default from the node’s /etc/resolv.conf | list | `<list>` | no |
184+
| upstream\_nameservers | If specified, the values replace the nameservers taken by default from the node’s /etc/resolv.conf | list(string) | `<list>` | no |
185185
| zones | The zones to host the cluster in (optional if regional cluster / required if zonal) | list(string) | `<list>` | no |
186186

187187
## Outputs

modules/private-cluster-update-variant/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ variable "stub_domains" {
204204
}
205205

206206
variable "upstream_nameservers" {
207-
type = "list"
207+
type = list(string)
208208
description = "If specified, the values replace the nameservers taken by default from the node’s /etc/resolv.conf"
209209
default = []
210210
}

modules/private-cluster/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ In either case, upgrading to module version `v1.0.0` will trigger a recreation o
181181
| skip\_provisioners | Flag to skip all local-exec provisioners. It breaks `stub_domains` and `upstream_nameservers` variables functionality. | bool | `"false"` | no |
182182
| stub\_domains | Map of stub domains and their resolvers to forward DNS queries for a certain domain to an external DNS server | map(list(string)) | `<map>` | no |
183183
| subnetwork | The subnetwork to host the cluster in (required) | string | n/a | yes |
184-
| upstream\_nameservers | If specified, the values replace the nameservers taken by default from the node’s /etc/resolv.conf | list | `<list>` | no |
184+
| upstream\_nameservers | If specified, the values replace the nameservers taken by default from the node’s /etc/resolv.conf | list(string) | `<list>` | no |
185185
| zones | The zones to host the cluster in (optional if regional cluster / required if zonal) | list(string) | `<list>` | no |
186186

187187
## Outputs

modules/private-cluster/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ variable "stub_domains" {
204204
}
205205

206206
variable "upstream_nameservers" {
207-
type = "list"
207+
type = list(string)
208208
description = "If specified, the values replace the nameservers taken by default from the node’s /etc/resolv.conf"
209209
default = []
210210
}

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ variable "stub_domains" {
204204
}
205205

206206
variable "upstream_nameservers" {
207-
type = "list"
207+
type = list(string)
208208
description = "If specified, the values replace the nameservers taken by default from the node’s /etc/resolv.conf"
209209
default = []
210210
}

0 commit comments

Comments
 (0)