diff --git a/resources/keystone_role/actions/remove.yml b/resources/keystone_role/actions/remove.yml index 386d38ea..2a719f43 100644 --- a/resources/keystone_role/actions/remove.yml +++ b/resources/keystone_role/actions/remove.yml @@ -2,4 +2,5 @@ sudo: yes tasks: - name: keystone role - keystone_user: endpoint=http://{{keystone_host}}:{{keystone_port}}/v2.0/ token={{admin_token}} user={{user_name}} tenant={{tenant_name}} role={{role_name}} state=absent + #TODO: not implemented in module + pause: seconds=1 diff --git a/resources/keystone_service_endpoint/actions/remove.yaml b/resources/keystone_service_endpoint/actions/remove.yaml index b15fe775..67218324 100644 --- a/resources/keystone_service_endpoint/actions/remove.yaml +++ b/resources/keystone_service_endpoint/actions/remove.yaml @@ -1 +1,6 @@ -#todo +- hosts: [{{ ip }}] + sudo: yes + tasks: + - name: keystone service and endpoint + #TODO: not implemented in module + pause: seconds=1 diff --git a/resources/keystone_user/actions/remove.yml b/resources/keystone_user/actions/remove.yml index a56289db..8ab1004f 100644 --- a/resources/keystone_user/actions/remove.yml +++ b/resources/keystone_user/actions/remove.yml @@ -2,4 +2,5 @@ sudo: yes tasks: - name: keystone user - keystone_user: endpoint=http://{{keystone_host}}:{{keystone_port}}/v2.0/ token={{admin_token}} user={{user_name}} password={{user_password}} tenant={{tenant_name}} state=absent + #TODO: not implemented in module + pause: seconds=1