Update Limestone Networks vendor config

- Change the config to yaml
- Set the networks on a per-region basis since the "DDoS Protected"
  network is not yet available in the us-slc region, only us-dfw-1.

Change-Id: Ie231f041accb83097e7585355f4174a57d74212e
This commit is contained in:
Logan V 2019-05-23 12:42:00 -05:00
parent 3bcaf2d5e0
commit 9db14f6d78
2 changed files with 36 additions and 36 deletions

View File

@ -1,36 +0,0 @@
{
"name": "limestonenetworks",
"profile": {
"auth": {
"auth_url": "https://auth.cloud.lstn.net:5000/v3"
},
"regions": [
"us-dfw-1",
"us-slc"
],
"identity_api_version": "3",
"image_format": "raw",
"volume_api_version": "3",
"networks": [
{
"name": "Public Internet",
"routes_externally": true,
"default_interface": true,
"nat_source": true
},
{
"name": "DDoS Protected",
"routes_externally": true
},
{
"name": "Private Network (10.0.0.0/8 only)",
"routes_externally": false
},
{
"name": "Private Network (Floating Public)",
"routes_externally": false,
"nat_destination": true
}
]
}
}

View File

@ -0,0 +1,36 @@
---
name: limestonenetworks
profile:
auth:
auth_url: https://auth.cloud.lstn.net:5000/v3
regions:
- name: us-dfw-1
values:
networks:
- name: Public Internet
routes_externally: true
default_interface: true
nat_source: true
- name: DDoS Protected
routes_externally: true
- name: Private Network (10.0.0.0/8 only)
routes_externally: false
- name: Private Network (Floating Public)
routes_externally: false
nat_destination: true
- name: us-slc
values:
networks:
- name: Public Internet
routes_externally: true
default_interface: true
nat_source: true
- name: Private Network (10.0.0.0/8 only)
routes_externally: false
- name: Private Network (Floating Public)
routes_externally: false
nat_destination: true
identity_api_version: '3'
image_format: raw
volume_api_version: '3'