-
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.
feat: Provide examples for ZSCALER APPC and PSE devices
- Loading branch information
1 parent
d2dc9df
commit 8f79efd
Showing
3 changed files
with
60 additions
and
1 deletion.
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 |
---|---|---|
@@ -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 = ["[email protected]", "[email protected]", "[email protected]"] | ||
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 = ["[email protected]", "[email protected]", "[email protected]"] | ||
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