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