-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Provide examples for create device types - ZSCALER APPC and PSE (…
…#819) feat: Provide examples for create device types - ZSCALER APPC and PSE
- Loading branch information
Showing
4 changed files
with
122 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Create ZSCALER APPC device | ||
|
||
data "equinix_network_account" "sv" { | ||
metro_code = "SV" | ||
} | ||
|
||
resource "equinix_network_device" "zscaler-appc-single" { | ||
name = "tf-zscaler-appc" | ||
project_id = "XXXXXX" | ||
metro_code = data.equinix_network_account.sv.metro_code | ||
type_code = "ZSCALER-APPC" | ||
self_managed = true | ||
byol = true | ||
connectivity = "PRIVATE" | ||
package_code = "STD" | ||
notifications = ["john@equinix.com", "marry@equinix.com", "fred@equinix.com"] | ||
term_length = 12 | ||
account_number = data.equinix_network_account.sv.number | ||
version = "23.395.1" | ||
interface_count = 1 | ||
core_count = 4 | ||
vendor_configuration = {"provisioningKey" = "XXXXXXXXXX", "hostname" = "XXXX"} | ||
ssh_key { | ||
username = "test" | ||
key_name = "test-key" | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Create ZSCALER APPC device | ||
|
||
data "equinix_network_account" "sv" { | ||
metro_code = "SV" | ||
} | ||
|
||
resource "equinix_network_device" "zscaler-pse-single" { | ||
name = "tf-zscaler-pse" | ||
project_id = "XXXXXX" | ||
metro_code = data.equinix_network_account.sv.metro_code | ||
type_code = "ZSCALER-PSE" | ||
self_managed = true | ||
byol = true | ||
connectivity = "PRIVATE" | ||
package_code = "STD" | ||
notifications = ["john@equinix.com", "marry@equinix.com", "fred@equinix.com"] | ||
term_length = 12 | ||
account_number = data.equinix_network_account.sv.number | ||
version = "23.395.1" | ||
interface_count = 1 | ||
core_count = 4 | ||
vendor_configuration = {"provisioningKey" = "XXXXXXXXXX", "hostname" = "XXXX"} | ||
ssh_key { | ||
username = "test" | ||
key_name = "test-key" | ||
} | ||
} |
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