-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #361 from schadalawada/master
NFV-25337: Added attribute Connectivity to support device creation with no internet access
- Loading branch information
Showing
8 changed files
with
33 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,6 +43,7 @@ resource "equinix_network_device" "csr1000v-ha" { | |
metro_code = data.equinix_network_account.dc.metro_code | ||
type_code = "CSR1000V" | ||
self_managed = false | ||
connectivity = "INTERNET-ACCESS" | ||
byol = false | ||
package_code = "SEC" | ||
notifications = ["[email protected]", "[email protected]", "[email protected]"] | ||
|
@@ -190,6 +191,7 @@ resource "equinix_network_device" "arista-ha" { | |
metro_code = data.equinix_network_account.sv.metro_code | ||
type_code = "ARISTA-ROUTER" | ||
self_managed = true | ||
connectivity = "PRIVATE" | ||
byol = true | ||
package_code = "CloudEOS" | ||
notifications = ["[email protected]"] | ||
|
@@ -261,6 +263,8 @@ on a device (max one key). See [SSH Key](#ssh-key) below for more details. | |
device configurations. See [Secondary Device](#secondary-device) below for more details. | ||
* `cluster_details` - (Optional) An object that has the cluster details. See | ||
[Cluster Details](#cluster-details) below for more details. | ||
* `connectivity` - (Optional) Device accessibility (INTERNET-ACCESS or PRIVATE or INTERNET-ACCESS-WITH-PRVT-MGMT). | ||
If not specified, default will be INTERNET-ACCESS | ||
|
||
### Secondary Device | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters