mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-07-05 01:58:54 +00:00
Bug fixes for GCP modules (#51576)
This commit is contained in:
parent
7502df4435
commit
6a79468acf
5 changed files with 9 additions and 9 deletions
|
|
@ -23,7 +23,7 @@
|
|||
register: bucket
|
||||
- name: delete a bucket access control
|
||||
gcp_storage_bucket_access_control:
|
||||
bucket: "{{ bucket }}"
|
||||
bucket: "{{ resource_name }}"
|
||||
entity: user-alexstephen@google.com
|
||||
role: WRITER
|
||||
project: "{{ gcp_project }}"
|
||||
|
|
@ -33,7 +33,7 @@
|
|||
#----------------------------------------------------------
|
||||
- name: create a bucket access control
|
||||
gcp_storage_bucket_access_control:
|
||||
bucket: "{{ bucket }}"
|
||||
bucket: "{{ resource_name }}"
|
||||
entity: user-alexstephen@google.com
|
||||
role: WRITER
|
||||
project: "{{ gcp_project }}"
|
||||
|
|
@ -49,7 +49,7 @@
|
|||
# ----------------------------------------------------------------------------
|
||||
- name: create a bucket access control that already exists
|
||||
gcp_storage_bucket_access_control:
|
||||
bucket: "{{ bucket }}"
|
||||
bucket: "{{ resource_name }}"
|
||||
entity: user-alexstephen@google.com
|
||||
role: WRITER
|
||||
project: "{{ gcp_project }}"
|
||||
|
|
@ -65,7 +65,7 @@
|
|||
#----------------------------------------------------------
|
||||
- name: delete a bucket access control
|
||||
gcp_storage_bucket_access_control:
|
||||
bucket: "{{ bucket }}"
|
||||
bucket: "{{ resource_name }}"
|
||||
entity: user-alexstephen@google.com
|
||||
role: WRITER
|
||||
project: "{{ gcp_project }}"
|
||||
|
|
@ -81,7 +81,7 @@
|
|||
# ----------------------------------------------------------------------------
|
||||
- name: delete a bucket access control that does not exist
|
||||
gcp_storage_bucket_access_control:
|
||||
bucket: "{{ bucket }}"
|
||||
bucket: "{{ resource_name }}"
|
||||
entity: user-alexstephen@google.com
|
||||
role: WRITER
|
||||
project: "{{ gcp_project }}"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue