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!"