diff options
author | 2018-08-02 14:52:45 -0400 | |
---|---|---|
committer | 2018-08-02 14:55:52 -0400 | |
commit | 3ddd88cf4cb92f5b8e0eebca9afe806f96a09fba (patch) | |
tree | b5abafefc59f9bbc77333d548c02bab6ea880b56 /heat/vLBMS/dnsscaling.yaml | |
parent | d4c5f6b933e2ba449cb1ddf39355f03affec9b53 (diff) |
Add security group to vFW, vLB
- Extend the ONAP sec group to support the vLB/vDNS use case
- Add sec group to vFW, vFWCL, vLB, vLBMS
Change-Id: Ica89840cf40249990d6df2dfff9a7712c094ab3a
Issue-ID: INT-526
Signed-off-by: Marco Platania <platania@research.att.com>
Diffstat (limited to 'heat/vLBMS/dnsscaling.yaml')
-rw-r--r-- | heat/vLBMS/dnsscaling.yaml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/heat/vLBMS/dnsscaling.yaml b/heat/vLBMS/dnsscaling.yaml index 29c1010a..f0a9a2d5 100644 --- a/heat/vLBMS/dnsscaling.yaml +++ b/heat/vLBMS/dnsscaling.yaml @@ -125,6 +125,9 @@ parameters: type: string description: Root URL for the Nexus repository for Maven artifacts. default: "https://nexus.onap.org" + sec_group: + type: string + description: ONAP Security Group ############# # # @@ -156,12 +159,16 @@ resources: properties: network: { get_param: vlb_private_net_id } fixed_ips: [{"subnet": { get_param: vlb_private_net_id }, "ip_address": { get_param: vdns_private_ip_0 }}] + security_groups: + - { get_param: sec_group } vdns_2_private_1_port: type: OS::Neutron::Port properties: network: { get_param: onap_private_net_id } fixed_ips: [{"subnet": { get_param: onap_private_subnet_id }, "ip_address": { get_param: vdns_private_ip_1 }}] + security_groups: + - { get_param: sec_group } vdns_2: type: OS::Nova::Server |