Add port 5000 security group rule for modularity
This commit is contained in:
parent
d98d854c98
commit
94f7206c4d
1 changed files with 18 additions and 0 deletions
|
@ -1184,6 +1184,24 @@
|
||||||
protocol: "tcp"
|
protocol: "tcp"
|
||||||
remote_ip_prefix: "172.25.32.1/20"
|
remote_ip_prefix: "172.25.32.1/20"
|
||||||
|
|
||||||
|
- name: "Create '5000-anywhere-persistent' security group"
|
||||||
|
neutron_sec_group:
|
||||||
|
login_username: "admin"
|
||||||
|
login_password: "{{ ADMIN_PASS }}"
|
||||||
|
login_tenant_name: "admin"
|
||||||
|
auth_url: "https://{{controller_publicname}}:35357/v2.0"
|
||||||
|
state: "present"
|
||||||
|
name: '5000-anywhere-persistent'
|
||||||
|
description: "port 5000 access"
|
||||||
|
tenant_name: "persistent"
|
||||||
|
rules:
|
||||||
|
- direction: "ingress"
|
||||||
|
port_range_min: "5000"
|
||||||
|
port_range_max: "5000"
|
||||||
|
ethertype: "IPv4"
|
||||||
|
protocol: "tcp"
|
||||||
|
remote_ip_prefix: "0.0.0.0/0"
|
||||||
|
|
||||||
- name: "Create 'pg-5432-anywhere' security group"
|
- name: "Create 'pg-5432-anywhere' security group"
|
||||||
neutron_sec_group:
|
neutron_sec_group:
|
||||||
login_username: "admin"
|
login_username: "admin"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue