diff --git a/docs/resources/zia_admin_users.md b/docs/resources/zia_admin_users.md index edab6607..b1be1921 100644 --- a/docs/resources/zia_admin_users.md +++ b/docs/resources/zia_admin_users.md @@ -13,12 +13,13 @@ The **zia_admin_users** resource allows the creation and management of ZIA admin ## Example Usage - Organization Scope ```hcl +######### PASSWORDS IN THIS FILE ARE FAKE AND NOT USED IN PRODUCTION SYSTEMS ######### resource "zia_admin_users" "john_smith" { login_name = "john.smith@acme.com" user_name = "John Smith" email = "john.smith@acme.com" is_password_login_allowed = true - password = "AeQ9E5w8B$" + password = "" is_security_report_comm_enabled = true is_service_update_comm_enabled = true is_product_update_comm_enabled = true @@ -37,12 +38,13 @@ data "zia_admin_roles" "super_admin" { ## Example Usage - Department Scope ```hcl +######### PASSWORDS IN THIS FILE ARE FAKE AND NOT USED IN PRODUCTION SYSTEMS ######### resource "zia_admin_users" "john_smith" { login_name = "john.smith@acme.com" user_name = "John Smith" email = "john.smith@acme.com" is_password_login_allowed = true - password = "AeQ9E5w8B$" + password = "" is_security_report_comm_enabled = true is_service_update_comm_enabled = true is_product_update_comm_enabled = true @@ -68,12 +70,13 @@ data "zia_department_management" "engineering" { ## Example Usage - Location Scope ```hcl +######### PASSWORDS IN THIS FILE ARE FAKE AND NOT USED IN PRODUCTION SYSTEMS ######### resource "zia_admin_users" "john_smith" { login_name = "john.smith@acme.com" user_name = "John Smith" email = "john.smith@acme.com" is_password_login_allowed = true - password = "AeQ9E5w8B$" + password = "" is_security_report_comm_enabled = true is_service_update_comm_enabled = true is_product_update_comm_enabled = true @@ -99,12 +102,13 @@ data "zia_location_management" "au_sydney_branch01" { ## Example Usage - Location Group Scope ```hcl +######### PASSWORDS IN THIS FILE ARE FAKE AND NOT USED IN PRODUCTION SYSTEMS ######### resource "zia_admin_users" "john_smith" { login_name = "john.smith@acme.com" user_name = "John Smith" email = "john.smith@acme.com" is_password_login_allowed = true - password = "AeQ9E5w8B$" + password = "" is_security_report_comm_enabled = true is_service_update_comm_enabled = true is_product_update_comm_enabled = true diff --git a/docs/resources/zia_user_management.md b/docs/resources/zia_user_management.md index 3d2b9eb7..641bbbdf 100644 --- a/docs/resources/zia_user_management.md +++ b/docs/resources/zia_user_management.md @@ -23,10 +23,11 @@ data "zia_department_management" "engineering" { } # ZIA Local User Account +######### PASSWORDS IN THIS FILE ARE FAKE AND NOT USED IN PRODUCTION SYSTEMS ######### resource "zia_user_management" "john_ashcroft" { name = "John Ashcroft" email = "john.ashcroft@acme.com" - password = "P@ssw0rd123*" + password = "" auth_methods = ["BASIC"] groups { id = data.zia_group_management.normal_internet.id diff --git a/examples/zia_admin_user/admin_user_department_scope.tf b/examples/zia_admin_user/admin_user_department_scope.tf index b875517a..b509a04d 100644 --- a/examples/zia_admin_user/admin_user_department_scope.tf +++ b/examples/zia_admin_user/admin_user_department_scope.tf @@ -1,9 +1,10 @@ +######### PASSWORDS IN THIS FILE ARE FAKE AND NOT USED IN PRODUCTION SYSTEMS ######### resource "zia_admin_users" "john_smith" { login_name = "john.smith@acme.com" username = "John Smith" email = "john.smith@acme.com" is_password_login_allowed = true - password = "AeQ9E5w8B$" + password = "" is_security_report_comm_enabled = true is_service_update_comm_enabled = true is_product_update_comm_enabled = true diff --git a/examples/zia_admin_user/admin_user_location_group_scope.tf b/examples/zia_admin_user/admin_user_location_group_scope.tf index f7036db5..29332fdf 100644 --- a/examples/zia_admin_user/admin_user_location_group_scope.tf +++ b/examples/zia_admin_user/admin_user_location_group_scope.tf @@ -1,9 +1,10 @@ +######### PASSWORDS IN THIS FILE ARE FAKE AND NOT USED IN PRODUCTION SYSTEMS ######### resource "zia_admin_users" "john_smith" { login_name = "john.smith@acme.com" username = "John Smith" email = "john.smith@acme.com" is_password_login_allowed = true - password = "AeQ9E5w8B$" + password = "" is_security_report_comm_enabled = true is_service_update_comm_enabled = true is_product_update_comm_enabled = true diff --git a/examples/zia_admin_user/admin_user_location_scope.tf b/examples/zia_admin_user/admin_user_location_scope.tf index eec6bfc8..baec7919 100644 --- a/examples/zia_admin_user/admin_user_location_scope.tf +++ b/examples/zia_admin_user/admin_user_location_scope.tf @@ -1,9 +1,10 @@ +######### PASSWORDS IN THIS FILE ARE FAKE AND NOT USED IN PRODUCTION SYSTEMS ######### resource "zia_admin_users" "john_smith" { login_name = "john.smith@acme.com" username = "John Smith" email = "john.smith@acme.com" is_password_login_allowed = true - password = "AeQ9E5w8B$" + password = "" is_security_report_comm_enabled = true is_service_update_comm_enabled = true is_product_update_comm_enabled = true diff --git a/examples/zia_admin_user/admin_user_organization_scope.tf b/examples/zia_admin_user/admin_user_organization_scope.tf index 49945d31..02d318b5 100644 --- a/examples/zia_admin_user/admin_user_organization_scope.tf +++ b/examples/zia_admin_user/admin_user_organization_scope.tf @@ -1,9 +1,10 @@ +######### PASSWORDS IN THIS FILE ARE FAKE AND NOT USED IN PRODUCTION SYSTEMS ######### resource "zia_admin_users" "john_smith" { login_name = "john.smith@acme.com" username = "John Smith" email = "john.smith@acme.com" is_password_login_allowed = true - password = "AeQ9E5w8B$" + password = "" is_security_report_comm_enabled = true is_service_update_comm_enabled = true is_product_update_comm_enabled = true diff --git a/examples/zia_user_management/zia_user_management_data/basic.tf b/examples/zia_user_management/zia_user_management_data/basic.tf index 3c2a8607..a6302fae 100644 --- a/examples/zia_user_management/zia_user_management_data/basic.tf +++ b/examples/zia_user_management/zia_user_management_data/basic.tf @@ -1,7 +1,8 @@ +######### PASSWORDS IN THIS FILE ARE FAKE AND NOT USED IN PRODUCTION SYSTEMS ######### resource "zia_user_management" "john_ashcroft" { name = "John Ashcroft" email = "john.ashcroft@acme.com" - password = "P@ssw0rd123*" + password = "" auth_methods = ["BASIC"] groups { id = [ data.zia_group_management.normal_internet.id,