CloudDocs Home > F5 OpenStack Heat Index

BIG-IP Data Security GroupΒΆ

Download the template via the link below, or copy and paste the text into a new file (must be saved as .yaml.

Download

heat_template_version: 2014-10-16

description: This template deploys standard TMOS data security group.

resources:

   bigip_data_security_group:
    type: OS::Neutron::SecurityGroup
    properties:
      description: security group rules for data interfaces
      name: bigip_data_security_group
      rules: 
        - protocol: icmp
          direction: ingress
        - protocol: icmp
          direction: egress
        - protocol: tcp
          direction: ingress
        - protocol: tcp
          direction: egress
        - protocol: udp
          direction: ingress
        - protocol: udp
          direction: egress

outputs:
   data_security_group_id:
     description: Get resource id of this security group
     value: { get_resource: bigip_data_security_group }
<< Previous Next >>