Skip to content

Commit

Permalink
fix on readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Francesco Spinelli committed Nov 10, 2023
1 parent 6021879 commit 1539756
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions modules/cloudsql-instance/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,13 @@ module "db" {
users = {
# generatea password for user1
user1 = null
user1 = {
password = null
}
# assign a password to user2
user2 = "mypassword"
user2 = {
password = "mypassword"
}
}
}
# tftest modules=1 resources=6 inventory=custom.yaml
Expand Down

0 comments on commit 1539756

Please sign in to comment.