Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
milesstoetzner authored Jul 17, 2023
1 parent ffdc1e3 commit a1374e2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions examples/xopera-motivation/tests/dev/expected.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ topology_template:
release:
type: string

gcp_project:
type: string

gcp_region:
type: string

Expand Down Expand Up @@ -70,6 +73,8 @@ topology_template:
vm_ssh_user: {get_input: private_vm_ssh_user}
vm_ssh_key_file: {get_input: private_vm_ssh_key_file}
gcp_service_account_file: {get_input: gcp_service_account_file}
gcp_project: {get_input: gcp_project}
gcp_region: {get_input: gcp_region}
requirements:
- host:
node: dev_runtime
Expand All @@ -81,6 +86,7 @@ topology_template:
gcp:
type: gcp.provider
properties:
project: {get_input: gcp_project}
region: {get_input: gcp_region}
service_account_file: {get_input: gcp_service_account_file}

Expand Down
6 changes: 6 additions & 0 deletions examples/xopera-motivation/tests/prod/expected.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ topology_template:
release:
type: string

gcp_project:
type: string

gcp_region:
type: string

Expand Down Expand Up @@ -70,6 +73,8 @@ topology_template:
vm_ssh_user: {get_input: private_vm_ssh_user}
vm_ssh_key_file: {get_input: private_vm_ssh_key_file}
gcp_service_account_file: {get_input: gcp_service_account_file}
gcp_project: {get_input: gcp_project}
gcp_region: {get_input: gcp_region}
requirements:
- host:
node: prod_runtime
Expand Down Expand Up @@ -107,5 +112,6 @@ topology_template:
gcp:
type: gcp.provider
properties:
project: {get_input: gcp_project}
region: {get_input: gcp_region}
service_account_file: {get_input: gcp_service_account_file}

0 comments on commit a1374e2

Please sign in to comment.