We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9470b64 commit 3690a66Copy full SHA for 3690a66
node/main.tf
@@ -6,9 +6,9 @@ provider "google" {
6
module "validation" {
7
source = "./validation"
8
9
- project = nonsensitive(var.vcluster.nodeType.spec.properties["project"])
10
- region = nonsensitive(var.vcluster.nodeType.spec.properties["region"])
11
- zone = try(nonsensitive(var.vcluster.nodeType.spec.properties["zone"]), "")
+ project = nonsensitive(var.vcluster.properties["project"])
+ region = nonsensitive(var.vcluster.properties["region"])
+ zone = try(nonsensitive(var.vcluster.properties["zone"]), "")
12
}
13
14
resource "random_id" "vm_suffix" {
0 commit comments