Skip to content

Commit

Permalink
security groups have to have unique name accross all tenant
Browse files Browse the repository at this point in the history
this is limitation of ansible module
openstack-ansible/openstack-ansible-modules#37
  • Loading branch information
xsuchy committed Mar 13, 2015
1 parent 2068a46 commit b2fa075
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions playbooks/hosts/fed-cloud09.cloud.fedoraproject.org.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit b2fa075

Please sign in to comment.