tests: fix gcp_compute_forwarding_rule test

The targetpool object was being passed directly to the forwarding
rule, rather than passing the selfLink string.
This commit is contained in:
Yusuke Tsutsumi 2022-10-08 17:57:06 +00:00
parent 372141f3ad
commit 6f1ee2b2b4
2 changed files with 5 additions and 6 deletions

View file

@ -1,2 +1 @@
cloud/gcp
unsupported

View file

@ -35,7 +35,7 @@
google.cloud.gcp_compute_forwarding_rule:
name: "{{ resource_name }}"
region: us-west1
target: "{{ targetpool }}"
target: "{{ targetpool.selfLink }}"
ip_protocol: TCP
port_range: 80-80
ip_address: "{{ address.address }}"
@ -48,7 +48,7 @@
google.cloud.gcp_compute_forwarding_rule:
name: "{{ resource_name }}"
region: us-west1
target: "{{ targetpool }}"
target: "{{ targetpool.selfLink }}"
ip_protocol: TCP
port_range: 80-80
ip_address: "{{ address.address }}"
@ -81,7 +81,7 @@
google.cloud.gcp_compute_forwarding_rule:
name: "{{ resource_name }}"
region: us-west1
target: "{{ targetpool }}"
target: "{{ targetpool.selfLink }}"
ip_protocol: TCP
port_range: 80-80
ip_address: "{{ address.address }}"
@ -99,7 +99,7 @@
google.cloud.gcp_compute_forwarding_rule:
name: "{{ resource_name }}"
region: us-west1
target: "{{ targetpool }}"
target: "{{ targetpool.selfLink }}"
ip_protocol: TCP
port_range: 80-80
ip_address: "{{ address.address }}"
@ -132,7 +132,7 @@
google.cloud.gcp_compute_forwarding_rule:
name: "{{ resource_name }}"
region: us-west1
target: "{{ targetpool }}"
target: "{{ targetpool.selfLink }}"
ip_protocol: TCP
port_range: 80-80
ip_address: "{{ address.address }}"