generated from getindata/terraform-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add must_change_password variable and credentials outputs (#8)
* feat: Add must_change_password variable and credentials outputs * Update outputs.tf Co-authored-by: Mariusz Wojakowski <[email protected]> * Update variables.tf Co-authored-by: Mariusz Wojakowski <[email protected]> * terraform-docs: automated action Co-authored-by: Mariusz Wojakowski <[email protected]> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
950c7e9
commit 604003d
Showing
6 changed files
with
29 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
dotenv_if_exists | ||
#Override defaults | ||
command -v dotenv && test -f .env && dotenv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,5 @@ | ||
output "display_name" { | ||
description = "Specifies the namespace (database only or database and schema) that is active by default for the user's session upon login" | ||
value = module.terraform_snowflake_user.display_name | ||
} | ||
output "login_name" { | ||
description = "The name users use to log in" | ||
value = module.terraform_snowflake_user.login_name | ||
} | ||
output "default_role" { | ||
description = "Specifies the role that is active by default for the user's session upon login" | ||
value = module.terraform_snowflake_user.default_role | ||
output "user_module_outputs" { | ||
description = "All user module outputs" | ||
value = module.terraform_snowflake_user | ||
sensitive = true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters