Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!"
Expand Down
2 changes: 1 addition & 1 deletion examples/PostgreSQL_Server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!"
Expand Down
2 changes: 1 addition & 1 deletion examples/PostgreSQL_Server/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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!"
Expand Down