mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-05 02:10:27 -07:00
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:
parent
372141f3ad
commit
6f1ee2b2b4
2 changed files with 5 additions and 6 deletions
|
@ -1,2 +1 @@
|
|||
cloud/gcp
|
||||
unsupported
|
||||
|
|
|
@ -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 }}"
|
||||
|
|
Loading…
Add table
Reference in a new issue