-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(Doc): Updated location management documentation
- Loading branch information
Showing
11 changed files
with
18 additions
and
12 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
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ resource "zia_admin_users" "john_smith" { | |
username = "John Smith" | ||
email = "[email protected]" | ||
is_password_login_allowed = true | ||
password = "<YOURPASSWORDHERE>" | ||
password = "********************" | ||
is_security_report_comm_enabled = true | ||
is_service_update_comm_enabled = true | ||
is_product_update_comm_enabled = true | ||
|
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ resource "zia_admin_users" "john_smith" { | |
username = "John Smith" | ||
email = "[email protected]" | ||
is_password_login_allowed = true | ||
password = "<YOURPASSWORDHERE>" | ||
password = "********************" | ||
is_security_report_comm_enabled = true | ||
is_service_update_comm_enabled = true | ||
is_product_update_comm_enabled = true | ||
|
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ resource "zia_admin_users" "john_smith" { | |
username = "John Smith" | ||
email = "[email protected]" | ||
is_password_login_allowed = true | ||
password = "<YOURPASSWORDHERE>" | ||
password = "********************" | ||
is_security_report_comm_enabled = true | ||
is_service_update_comm_enabled = true | ||
is_product_update_comm_enabled = true | ||
|
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ resource "zia_admin_users" "john_smith" { | |
username = "John Smith" | ||
email = "[email protected]" | ||
is_password_login_allowed = true | ||
password = "<YOURPASSWORDHERE>" | ||
password = "********************" | ||
is_security_report_comm_enabled = true | ||
is_service_update_comm_enabled = true | ||
is_product_update_comm_enabled = true | ||
|
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 |
---|---|---|
|
@@ -13,16 +13,17 @@ resource "zia_location_management" "usa_sjc37"{ | |
ip_addresses = [ zia_traffic_forwarding_static_ip.usa_sjc37.ip_address ] | ||
depends_on = [ zia_traffic_forwarding_static_ip.usa_sjc37, zia_traffic_forwarding_vpn_credentials.usa_sjc37 ] | ||
vpn_credentials { | ||
id = zia_traffic_forwarding_vpn_credentials.usa_sjc37.vpn_credental_id | ||
id = zia_traffic_forwarding_vpn_credentials.usa_sjc37.id | ||
type = zia_traffic_forwarding_vpn_credentials.usa_sjc37.type | ||
} | ||
} | ||
|
||
######### PASSWORDS IN THIS FILE ARE FAKE AND NOT USED IN PRODUCTION SYSTEMS ######### | ||
resource "zia_traffic_forwarding_vpn_credentials" "usa_sjc37"{ | ||
type = "UFQDN" | ||
fqdn = "[email protected]" | ||
comments = "USA - San Jose IPSec Tunnel" | ||
pre_shared_key = "P@ass0rd123!" | ||
pre_shared_key = "*************" | ||
} | ||
|
||
resource "zia_traffic_forwarding_static_ip" "usa_sjc37"{ | ||
|
3 changes: 2 additions & 1 deletion
3
examples/zia_traffic_forwarding_vpn_credentials/basic_ip_address.tf
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
3 changes: 2 additions & 1 deletion
3
examples/zia_traffic_forwarding_vpn_credentials/basic_ufqdn.tf
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 |
---|---|---|
@@ -1,8 +1,9 @@ | ||
######### PASSWORDS IN THIS FILE ARE FAKE AND NOT USED IN PRODUCTION SYSTEMS ######### | ||
resource "zia_traffic_forwarding_vpn_credentials" "example"{ | ||
type = "UFQDN" | ||
fqdn = "[email protected]" | ||
comments = "Created via Terraform" | ||
pre_shared_key = "newPassword123!" | ||
pre_shared_key = "***************" | ||
} | ||
|
||
output "zia_traffic_forwarding_vpn_credentials"{ | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
resource "zia_user_management" "john_ashcroft" { | ||
name = "John Ashcroft" | ||
email = "[email protected]" | ||
password = "<YOURPASSWORDHERE>" | ||
password = "********************" | ||
auth_methods = ["BASIC"] | ||
groups { | ||
id = [ data.zia_group_management.normal_internet.id, | ||
|