Skip to content

Commit

Permalink
Added comments for default DB username value
Browse files Browse the repository at this point in the history
  • Loading branch information
yamaszone committed Oct 11, 2017
1 parent 1018fb9 commit 42270f9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions examples/complete/postgres/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ module "db" {
# kms_key_id = "arm:aws:kms:<region>:<accound id>:key/<kms key id>"

name = "demodb"
# NOTE: Do NOT use 'user' as the value for 'username' as it throws:
# "Error creating DB Instance: InvalidParameterValue: MasterUsername
# user cannot be used as it is a reserved word used by the engine"
username = "demouser"
password = "YourPwdShouldBeLongAndSecure!"
port = "5432"
Expand Down

0 comments on commit 42270f9

Please sign in to comment.