Skip to content

Commit

Permalink
Add default to examples
Browse files Browse the repository at this point in the history
  • Loading branch information
slevenick committed Apr 10, 2023
1 parent 1e1a19f commit 72e4fbf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mmv1/provider/terraform/examples.rb
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,8 @@ def config_documentation(pwd)
MASTER_BILLING_ACCT: '000000-0000000-0000000-000000',
SERVICE_ACCT: 'my@service-account.com',
CUST_ID: 'A01b123xz',
IDENTITY_USER: 'cloud_identity_user'
IDENTITY_USER: 'cloud_identity_user',
PAP_DESCRIPTION: 'description'
}
@vars ||= {}
@test_env_vars ||= {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ resource "google_compute_public_advertised_prefix" "advertised" {

resource "google_compute_public_delegated_prefix" "<%= ctx[:primary_resource_id] %>" {
name = "<%= ctx[:vars]['prefixes_name'] %>"
region = "us-central1"
description = "my description"
ip_cidr_range = "127.127.0.0/24"
parent_prefix = google_compute_public_advertised_prefix.advertised.id
Expand Down

0 comments on commit 72e4fbf

Please sign in to comment.