From 1c7e5d3d8cd21d80d9b65b607205a4185a4077d6 Mon Sep 17 00:00:00 2001 From: Kumaraswamy Vithanala <36370570+kumarvna@users.noreply.github.com> Date: Sat, 26 Jun 2021 22:12:31 +0530 Subject: [PATCH] updating examples --- README.md | 2 +- examples/PostgreSQL_Server/README.md | 2 +- examples/PostgreSQL_Server/main.tf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index bbc0c53..0c13702 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ module "postgresql-db" { sku_name = "GP_Gen5_8" storage_mb = 640000 version = "9.6" - # default admin user `sqladmin` and can be specified as per the choice here + # default admin user `postgresadmin` and can be specified as per the choice here # by default random password created by this module. required password can be specified here admin_username = "postgresadmin" admin_password = "H@Sh1CoR3!" diff --git a/examples/PostgreSQL_Server/README.md b/examples/PostgreSQL_Server/README.md index c746f27..6278b2d 100644 --- a/examples/PostgreSQL_Server/README.md +++ b/examples/PostgreSQL_Server/README.md @@ -24,7 +24,7 @@ module "postgresql-db" { sku_name = "GP_Gen5_8" storage_mb = 640000 version = "9.6" - # default admin user `sqladmin` and can be specified as per the choice here + # default admin user `postgresadmin` and can be specified as per the choice here # by default random password created by this module. required password can be specified here admin_username = "postgresadmin" admin_password = "H@Sh1CoR3!" diff --git a/examples/PostgreSQL_Server/main.tf b/examples/PostgreSQL_Server/main.tf index 6ba40cc..1798c33 100644 --- a/examples/PostgreSQL_Server/main.tf +++ b/examples/PostgreSQL_Server/main.tf @@ -18,7 +18,7 @@ module "postgresql-db" { sku_name = "GP_Gen5_8" storage_mb = 640000 version = "9.6" - # default admin user `sqladmin` and can be specified as per the choice here + # default admin user `postgresadmin` and can be specified as per the choice here # by default random password created by this module. required password can be specified here admin_username = "postgresadmin" admin_password = "H@Sh1CoR3!"