Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
terraform-aws-rds
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Terraform Modules
terraform-aws-rds
Commits
96de19ff
Unverified
Commit
96de19ff
authored
Apr 24, 2021
by
Bryant Biggs
Committed by
GitHub
Apr 24, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: mark sensitive outputs to support Terraform 0.15.x (#329)
parent
a8532472
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
17 additions
and
10 deletions
+17
-10
pre-commit.yml
.github/workflows/pre-commit.yml
+1
-1
.pre-commit-config.yaml
.pre-commit-config.yaml
+1
-1
README.md
README.md
+0
-7
outputs.tf
examples/complete-mssql/outputs.tf
+1
-0
outputs.tf
examples/complete-mysql/outputs.tf
+2
-0
outputs.tf
examples/complete-oracle/outputs.tf
+1
-0
outputs.tf
examples/complete-postgres/outputs.tf
+2
-0
outputs.tf
examples/enhanced-monitoring/outputs.tf
+1
-0
outputs.tf
examples/replica-mysql/outputs.tf
+2
-0
outputs.tf
examples/replica-postgres/outputs.tf
+2
-0
outputs.tf
examples/s3-import-mysql/outputs.tf
+1
-0
outputs.tf
modules/db_instance/outputs.tf
+1
-0
outputs.tf
outputs.tf
+2
-1
No files found.
.github/workflows/pre-commit.yml
View file @
96de19ff
...
...
@@ -94,7 +94,7 @@ jobs:
-
name
:
Install pre-commit dependencies
run
:
|
pip install pre-commit
curl -L "$(curl -s https://api.github.com/repos/terraform-docs/terraform-docs/releases/latest | grep -o -E "https://.+?-v0.12
.0
-linux-amd64" | head -n1)" > terraform-docs && chmod +x terraform-docs && sudo mv terraform-docs /usr/bin/
curl -L "$(curl -s https://api.github.com/repos/terraform-docs/terraform-docs/releases/latest | grep -o -E "https://.+?-v0.12
\..+?
-linux-amd64" | head -n1)" > terraform-docs && chmod +x terraform-docs && sudo mv terraform-docs /usr/bin/
curl -L "$(curl -s https://api.github.com/repos/terraform-linters/tflint/releases/latest | grep -o -E "https://.+?_linux_amd64.zip")" > tflint.zip && unzip tflint.zip && rm tflint.zip && sudo mv tflint /usr/bin/
-
name
:
Execute pre-commit
# Run all pre-commit checks on max version supported
...
...
.pre-commit-config.yaml
View file @
96de19ff
repos
:
-
repo
:
git://github.com/antonbabenko/pre-commit-terraform
rev
:
v1.
48
.0
rev
:
v1.
50
.0
hooks
:
-
id
:
terraform_fmt
-
id
:
terraform_validate
...
...
README.md
View file @
96de19ff
...
...
@@ -2,13 +2,6 @@
Terraform module which creates RDS resources on AWS.
These types of resources are supported:
-
[
DB Instance
](
https://www.terraform.io/docs/providers/aws/r/db_instance.html
)
-
[
DB Subnet Group
](
https://www.terraform.io/docs/providers/aws/r/db_subnet_group.html
)
-
[
DB Parameter Group
](
https://www.terraform.io/docs/providers/aws/r/db_parameter_group.html
)
-
[
DB Option Group
](
https://www.terraform.io/docs/providers/aws/r/db_option_group.html
)
Root module calls these modules which can also be used separately to create independent resources:
-
[
db_instance
](
https://github.com/terraform-aws-modules/terraform-aws-rds/tree/master/modules/db_instance
)
- creates RDS DB instance
...
...
examples/complete-mssql/outputs.tf
View file @
96de19ff
...
...
@@ -46,6 +46,7 @@ output "this_db_instance_name" {
output
"this_db_instance_username"
{
description
=
"The master username for the database"
value
=
module
.
db
.
this_db_instance_username
sensitive
=
true
}
output
"this_db_instance_password"
{
...
...
examples/complete-mysql/outputs.tf
View file @
96de19ff
...
...
@@ -46,6 +46,7 @@ output "this_db_instance_name" {
output
"this_db_instance_username"
{
description
=
"The master username for the database"
value
=
module
.
db
.
this_db_instance_username
sensitive
=
true
}
output
"this_db_instance_password"
{
...
...
@@ -133,6 +134,7 @@ output "db_default_instance_name" {
output
"db_default_instance_username"
{
description
=
"The master username for the database"
value
=
module
.
db_default
.
this_db_instance_username
sensitive
=
true
}
output
"db_default_instance_password"
{
...
...
examples/complete-oracle/outputs.tf
View file @
96de19ff
...
...
@@ -46,6 +46,7 @@ output "this_db_instance_name" {
output
"this_db_instance_username"
{
description
=
"The master username for the database"
value
=
module
.
db
.
this_db_instance_username
sensitive
=
true
}
output
"this_db_instance_password"
{
...
...
examples/complete-postgres/outputs.tf
View file @
96de19ff
...
...
@@ -46,6 +46,7 @@ output "this_db_instance_name" {
output
"this_db_instance_username"
{
description
=
"The master username for the database"
value
=
module
.
db
.
this_db_instance_username
sensitive
=
true
}
output
"this_db_instance_password"
{
...
...
@@ -133,6 +134,7 @@ output "db_default_instance_name" {
output
"db_default_instance_username"
{
description
=
"The master username for the database"
value
=
module
.
db_default
.
this_db_instance_username
sensitive
=
true
}
output
"db_default_instance_password"
{
...
...
examples/enhanced-monitoring/outputs.tf
View file @
96de19ff
...
...
@@ -46,6 +46,7 @@ output "this_db_instance_name" {
output
"this_db_instance_username"
{
description
=
"The master username for the database"
value
=
module
.
db
.
this_db_instance_username
sensitive
=
true
}
output
"this_db_instance_password"
{
...
...
examples/replica-mysql/outputs.tf
View file @
96de19ff
...
...
@@ -47,6 +47,7 @@ output "master_db_instance_name" {
output
"master_db_instance_username"
{
description
=
"The master username for the database"
value
=
module
.
master
.
this_db_instance_username
sensitive
=
true
}
output
"master_db_instance_password"
{
...
...
@@ -119,6 +120,7 @@ output "replica_db_instance_name" {
output
"replica_db_instance_username"
{
description
=
"The replica username for the database"
value
=
module
.
replica
.
this_db_instance_username
sensitive
=
true
}
output
"replica_db_instance_port"
{
...
...
examples/replica-postgres/outputs.tf
View file @
96de19ff
...
...
@@ -47,6 +47,7 @@ output "master_db_instance_name" {
output
"master_db_instance_username"
{
description
=
"The master username for the database"
value
=
module
.
master
.
this_db_instance_username
sensitive
=
true
}
output
"master_db_instance_password"
{
...
...
@@ -119,6 +120,7 @@ output "replica_db_instance_name" {
output
"replica_db_instance_username"
{
description
=
"The replica username for the database"
value
=
module
.
replica
.
this_db_instance_username
sensitive
=
true
}
output
"replica_db_instance_port"
{
...
...
examples/s3-import-mysql/outputs.tf
View file @
96de19ff
...
...
@@ -46,6 +46,7 @@ output "this_db_instance_name" {
output
"this_db_instance_username"
{
description
=
"The master username for the database"
value
=
module
.
db
.
this_db_instance_username
sensitive
=
true
}
output
"this_db_instance_password"
{
...
...
modules/db_instance/outputs.tf
View file @
96de19ff
...
...
@@ -76,6 +76,7 @@ output "this_db_instance_name" {
output
"this_db_instance_username"
{
description
=
"The master username for the database"
value
=
local
.
this_db_instance_username
sensitive
=
true
}
output
"this_db_instance_port"
{
...
...
outputs.tf
View file @
96de19ff
...
...
@@ -56,6 +56,7 @@ output "this_db_instance_name" {
output
"this_db_instance_username"
{
description
=
"The master username for the database"
value
=
module
.
db_instance
.
this_db_instance_username
sensitive
=
true
}
output
"this_db_instance_password"
{
...
...
@@ -119,4 +120,4 @@ output "this_db_master_password" {
description
=
"The master password"
value
=
module
.
db_instance
.
this_db_instance_master_password
sensitive
=
true
}
\ No newline at end of file
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment