security groups have to have unique name accross all tenant
this is limitation of ansible module https://github.com/openstack-ansible/openstack-ansible-modules/issues/37
This commit is contained in:
parent
2068a46cce
commit
b2fa075398
1 changed files with 4 additions and 4 deletions
|
@ -778,7 +778,7 @@
|
|||
login_tenant_name: "admin"
|
||||
auth_url: "https://{{controller_hostname}}:35357/v2.0"
|
||||
state: "present"
|
||||
name: 'ssh-internal'
|
||||
name: 'ssh-internal-{{item}}'
|
||||
description: "allow ssh from {{item.name}}-network"
|
||||
tenant_name: "{{ item.name }}"
|
||||
rules:
|
||||
|
@ -807,7 +807,7 @@
|
|||
login_tenant_name: "admin"
|
||||
auth_url: "https://{{controller_hostname}}:35357/v2.0"
|
||||
state: "present"
|
||||
name: 'web-80-anywhere'
|
||||
name: 'web-80-anywhere-{{item}}'
|
||||
description: "allow web-80 from anywhere"
|
||||
tenant_name: "{{item}}"
|
||||
rules:
|
||||
|
@ -835,7 +835,7 @@
|
|||
login_tenant_name: "admin"
|
||||
auth_url: "https://{{controller_hostname}}:35357/v2.0"
|
||||
state: "present"
|
||||
name: 'web-443-anywhere'
|
||||
name: 'web-443-anywhere-{{item}}'
|
||||
description: "allow web-443 from anywhere"
|
||||
tenant_name: "{{item}}"
|
||||
rules:
|
||||
|
@ -863,7 +863,7 @@
|
|||
login_tenant_name: "admin"
|
||||
auth_url: "https://{{controller_hostname}}:35357/v2.0"
|
||||
state: "present"
|
||||
name: 'wide-open'
|
||||
name: 'wide-open-{{item}}'
|
||||
description: "allow anything from anywhere"
|
||||
tenant_name: "{{item}}"
|
||||
rules:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue