This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
locals { | |
project_id = "{{YOUR PROJECT ID}}" | |
region = "europe-west2" | |
zone = "europe-west2-a" | |
} | |
provider "google" { | |
project = local.project_id | |
region = local.region | |
zone = local.zone |
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[36m[2021-03-30T16:04:45.638] [DEBUG] default - [39mTerraform v0.14.9 | |
⠋ starting... | |
[2K[1A[2K[G⠋ downloading and generating modules and providers... | |
[2K[1A[2K[G⠙ downloading and generating modules and providers... | |
[36m[2021-03-30T16:04:45.857] [DEBUG] default - [39m[0m[1mInitializing modules...[0m | |
[2K[1A[2K[G⠹ downloading and generating modules and providers... | |
[2K[1A[2K[G⠸ downloading and generating modules and providers... | |
[36m[2021-03-30T16:04:46.062] [DEBUG] default - [39mDownloading terraform-google-modules/network/google 3.0.0 for google... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
An execution plan has been generated and is shown below. | |
Resource actions are indicated with the following symbols: | |
+ create | |
Terraform will perform the following actions: | |
# google_compute_firewall.fw-testa-allow-all-internal will be created | |
+ resource "google_compute_firewall" "fw-testa-allow-all-internal" { | |
+ creation_timestamp = (known after apply) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
⠸ Deploying Stack: test | |
Resources | |
~ GOOGLE_COMPUTE_FIREW testfw google_compute_firewall.fw-test-allow-all-from-test2 | |
~ GOOGLE_COMPUTE_HA_VP vgw-test google_compute_ha_vpn_gateway.vgw-test | |
Summary: 0 created, 0 updated, 0 destroyed. | |
TypeError: Cannot read property 'startsWith' of undefined | |
at exports.ResourceName (/usr/local/lib/node_modules/cdktf-cli/bin/cmds/ui/components/resource-name.js:12:43) | |
at Jd (/usr/local/lib/node_modules/cdktf-cli/node_modules/react-reconciler/cjs/react-reconciler.production.min.js:64:98) | |
at ig (/usr/local/lib/node_modules/cdktf-cli/node_modules/react-reconciler/cjs/react-reconciler.production.min.js:160:456) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", | |
"contentVersion": "1.0.0.0", | |
"parameters": { | |
"vmName": { | |
"type": "string", | |
"defaultValue": "simpleLinuxVM", | |
"metadata": { | |
"description": "The name of you Virtual Machine." | |
} |