Skip to content
Snippets Groups Projects
pv176-port.template 668 B
Newer Older
Martin Cuchran's avatar
Martin Cuchran committed
{
    "heat_template_version": "2016-04-08",
Martin Cuchran's avatar
Martin Cuchran committed
    "parameters":{
        "name":{
            "type": "string"
        },
        "network":{
            "type": "string"
        }
    },
Martin Cuchran's avatar
Martin Cuchran committed
    "resources":{
        "port":{
            "type": "OS::Neutron::Port",
Martin Cuchran's avatar
Martin Cuchran committed
            "properties": {  
Martin Cuchran's avatar
Martin Cuchran committed
                "name": {"get_param": "name"},
                "network_id":{"get_param": "network"},
Martin Cuchran's avatar
Martin Cuchran committed
                "security_groups": [
                    "default",
                    "PV176-security-group-MUNI"
                ]
            }
        }
    },
    "outputs":{
        "OS::stack_id:":{
            "value": { "get_resource": "port" }
        },
    }
}