diff --git a/Openstack/pv176_network.yaml b/Openstack/pv176_network.yaml index b0b88cd52acb534cdef3157bc9376cfd65490385..c13350d595d0e0ca4d4c91ac259cc201209abce4 100644 --- a/Openstack/pv176_network.yaml +++ b/Openstack/pv176_network.yaml @@ -14,4 +14,30 @@ resources: dns_nameservers: [ "147.251.4.3", "8.8.8.8" ] ip_version: 4 enable_dhcp: false - name: PV176-private-subnet \ No newline at end of file + name: PV176-private-subnet + + internal_router: + type: OS::Neutron::Router + properties: + external_gateway_info: { network: public-float-21 } + name: PV176-router + + internal_interface: + type: OS::Neutron::RouterInterface + properties: + router_id: { get_resource: internal_router } + subnet: { get_resource: internal_subnet } + + full_access_secgroup: + type: OS::Neutron::SecurityGroup + properties: + name: PV176-security-group-MUNI + rules: + - protocol: tcp + remote_ip_prefix: 147.251.0.0/16 + port_range_min: 1 + port_range_max: 65000 + - protocol: tcp + remote_ip_prefix: 10.0.0.0/8 + port_range_min: 1 + port_range_max: 65000 \ No newline at end of file