-
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.
eat: create device without default password(supported for only C8000V…
… Autonomous and Fortinet firewall devices)
- Loading branch information
1 parent
f59e5d5
commit 47f51fc
Showing
7 changed files
with
258 additions
and
176 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -552,6 +552,36 @@ resource "equinix_network_device" "zscaler-pse-single" { | |
} | ||
``` | ||
|
||
```terraform | ||
# Create C8000V BYOL device with bandwidth tier information | ||
data "equinix_network_account" "sv" { | ||
metro_code = "SV" | ||
} | ||
resource "equinix_network_device" "c8000v-byol-withtout-default-password" { | ||
name = "tf-c8000v-byol" | ||
metro_code = data.equinix_network_account.sv.metro_code | ||
type_code = "C8000V" | ||
self_managed = true | ||
byol = true | ||
generate_default_password = false | ||
package_code = "VM100" | ||
notifications = ["[email protected]", "[email protected]", "[email protected]"] | ||
term_length = 12 | ||
account_number = data.equinix_network_account.sv.number | ||
version = "17.11.01a" | ||
interface_count = 10 | ||
core_count = 2 | ||
tier = 1 | ||
ssh_key { | ||
username = "test" | ||
key_name = "test-key" | ||
} | ||
acl_template_id = "0bff6e05-f0e7-44cd-804a-25b92b835f8b" | ||
} | ||
``` | ||
|
||
## Argument Reference | ||
|
||
The following arguments are supported: | ||
|
@@ -589,6 +619,9 @@ The following arguments are supported: | |
* `connectivity` - (Optional) Device accessibility (INTERNET-ACCESS or PRIVATE or INTERNET-ACCESS-WITH-PRVT-MGMT). If not specified, default will be INTERNET-ACCESS | ||
* `project_id` - (Optional) Unique Identifier for the project resource where the device is scoped to.If you leave it out, the device will be created under the default project id of your organization. | ||
* `diverse_device_id` - (Optional) Unique ID of an existing device. Use this field to let Equinix know if you want your new device to be in a different location from any existing virtual device. This field is only meaningful for single devices. | ||
* `generate_default_password` - (Optional) Boolean value that determines to create device with or without default password. Use this field to let Equinix know if you want your new device to be create with default admin password. | ||
This field is only meaningful for C8000V Autonomous(single/ha) and Fortinet Firewall devices(single/ha/cluster). If not specified, by default device is created with admin password. | ||
|
||
|
||
### 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
Oops, something went wrong.