Skip to content

Commit

Permalink
fix: change empty string by null
Browse files Browse the repository at this point in the history
Signed-off-by: Manuel Morejon <manuel@mmorejon.io>
  • Loading branch information
mmorejon committed Sep 28, 2023
1 parent a3ad317 commit 50b5e1b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion autogen/safer-cluster/variables.tf.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ variable "enable_mesh_certificates" {
variable "workload_vulnerability_mode" {
description = "(beta) Vulnerability mode."
type = string
default = ""
default = null
}

variable "workload_config_audit_mode" {
Expand Down
2 changes: 1 addition & 1 deletion modules/safer-cluster-update-variant/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ For simplicity, we suggest using `roles/container.admin` and
| upstream\_nameservers | If specified, the values replace the nameservers taken by default from the node’s /etc/resolv.conf | `list(string)` | `[]` | no |
| windows\_node\_pools | List of maps containing node pools | `list(map(string))` | `[]` | no |
| workload\_config\_audit\_mode | (beta) Workload config audit mode. | `string` | `"DISABLED"` | no |
| workload\_vulnerability\_mode | (beta) Vulnerability mode. | `string` | `""` | no |
| workload\_vulnerability\_mode | (beta) Vulnerability mode. | `string` | `null` | no |
| zones | The zones to host the cluster in | `list(string)` | `[]` | no |

## Outputs
Expand Down
2 changes: 1 addition & 1 deletion modules/safer-cluster-update-variant/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ variable "enable_mesh_certificates" {
variable "workload_vulnerability_mode" {
description = "(beta) Vulnerability mode."
type = string
default = ""
default = null
}

variable "workload_config_audit_mode" {
Expand Down
2 changes: 1 addition & 1 deletion modules/safer-cluster/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ For simplicity, we suggest using `roles/container.admin` and
| upstream\_nameservers | If specified, the values replace the nameservers taken by default from the node’s /etc/resolv.conf | `list(string)` | `[]` | no |
| windows\_node\_pools | List of maps containing node pools | `list(map(string))` | `[]` | no |
| workload\_config\_audit\_mode | (beta) Workload config audit mode. | `string` | `"DISABLED"` | no |
| workload\_vulnerability\_mode | (beta) Vulnerability mode. | `string` | `""` | no |
| workload\_vulnerability\_mode | (beta) Vulnerability mode. | `string` | `null` | no |
| zones | The zones to host the cluster in | `list(string)` | `[]` | no |

## Outputs
Expand Down
2 changes: 1 addition & 1 deletion modules/safer-cluster/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ variable "enable_mesh_certificates" {
variable "workload_vulnerability_mode" {
description = "(beta) Vulnerability mode."
type = string
default = ""
default = null
}

variable "workload_config_audit_mode" {
Expand Down

0 comments on commit 50b5e1b

Please sign in to comment.