Skip to content

Commit aa842ea

Browse files
committed
Merging in template
2 parents f6d62a2 + e22ef07 commit aa842ea

31 files changed

+3255
-121
lines changed

.github/workflows/document.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
- name: "Confirm"
4444
run: |
45-
if [[ "$(basename "$(git rev-parse --show-toplevel)")" != 'terraform-aws-template' ]]; then
45+
if [[ "$(basename "$(git rev-parse --show-toplevel)")" != *'terraform-aws-template'* ]]; then
4646
echo "Setting core.fileMode to false to avoid false positives in documentation check."
4747
git config core.fileMode false
4848
if [[ -n $(git status --porcelain) ]]; then

.github/workflows/todo.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ jobs:
2222

2323
- name: "TODO"
2424
run: |
25-
if [[ "$(basename $(git rev-parse --show-toplevel))" != 'terraform-aws-template' ]]; then
25+
if [[ "$(basename $(git rev-parse --show-toplevel))" != *'terraform-aws-template'* ]]; then
2626
./scripts/todo.sh
2727
fi

.tflint.hcl

+16-16
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,45 @@
11
plugin "aws" {
2-
enabled = true
3-
version = "0.9.0"
4-
source = "github.com/terraform-linters/tflint-ruleset-aws"
2+
enabled = true
3+
version = "0.15.0"
4+
source = "github.com/terraform-linters/tflint-ruleset-aws"
55
}
66

77
rule "terraform_deprecated_interpolation" {
8-
enabled = true
8+
enabled = true
99
}
1010
rule "terraform_deprecated_index" {
11-
enabled = true
11+
enabled = true
1212
}
1313
rule "terraform_unused_declarations" {
14-
enabled = true
14+
enabled = true
1515
}
1616
rule "terraform_comment_syntax" {
17-
enabled = true
17+
enabled = true
1818
}
1919
rule "terraform_documented_outputs" {
20-
enabled = true
20+
enabled = true
2121
}
2222
rule "terraform_documented_variables" {
23-
enabled = true
23+
enabled = true
2424
}
2525
rule "terraform_typed_variables" {
26-
enabled = true
26+
enabled = true
2727
}
2828
rule "terraform_module_pinned_source" {
29-
enabled = true
29+
enabled = true
3030
}
3131
rule "terraform_naming_convention" {
32-
enabled = true
32+
enabled = true
3333
}
3434
rule "terraform_required_version" {
35-
enabled = true
35+
enabled = true
3636
}
3737
rule "terraform_required_providers" {
38-
enabled = true
38+
enabled = true
3939
}
4040
rule "terraform_unused_required_providers" {
41-
enabled = true
41+
enabled = true
4242
}
4343
rule "terraform_workspace_remote" {
44-
enabled = true
44+
enabled = true
4545
}

.tool-versions

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
terraform 1.1.7
2-
golang 1.17.6
1+
terraform 1.2.7
2+
golang 1.18.5
33
ripgrep 13.0.0
4-
tflint 0.34.1
5-
github-cli 2.8.0
6-
fd 8.3.2
4+
tflint 0.39.3
5+
github-cli 2.14.4
6+
fd 8.4.0
77
terraform-docs 0.16.0

README-HEADER.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# PBS TF rds module
1+
# PBS TF RDS Module
22

33
## Installation
44

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# PBS TF rds module
1+
# PBS TF RDS Module
22

33
## Installation
44

@@ -115,7 +115,7 @@ No modules.
115115

116116
| Name | Description | Type | Default | Required |
117117
|------|-------------|------|---------|:--------:|
118-
| <a name="input_environment"></a> [environment](#input\_environment) | Environment (sharedtools, dev, staging, prod) | `string` | n/a | yes |
118+
| <a name="input_environment"></a> [environment](#input\_environment) | Environment (sharedtools, dev, staging, qa, prod) | `string` | n/a | yes |
119119
| <a name="input_organization"></a> [organization](#input\_organization) | Organization using this module. Used to prefix tags so that they are easily identified as being from your organization | `string` | n/a | yes |
120120
| <a name="input_product"></a> [product](#input\_product) | Tag used to group resources according to product | `string` | n/a | yes |
121121
| <a name="input_repo"></a> [repo](#input\_repo) | Tag used to point to the repo using this module | `string` | n/a | yes |

docs/module/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# rds module
1+
# RDS Module
22

33
This directory will be used for any documentation that is unique to this module.

examples/lambda/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
backend.tf
2+
provider.tf

examples/lambda/.terraform.lock.hcl

+41
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/lambda/main.tf

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
module "rds" {
2+
source = "../.."
3+
4+
private_hosted_zone = var.private_hosted_zone
5+
6+
use_prefix = false
7+
8+
use_proxy = true
9+
10+
# Just to make testing easier
11+
deletion_protection = false
12+
skip_final_snapshot = true
13+
14+
organization = var.organization
15+
environment = var.environment
16+
product = var.product
17+
repo = var.repo
18+
}

examples/lambda/outputs.tf

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
output "name" {
2+
description = "Name of the DB"
3+
value = module.rds.name
4+
}
5+
6+
output "db_admin_username" {
7+
description = "Admin Username for DB"
8+
value = module.rds.db_admin_username
9+
}
10+
11+
output "db_admin_password" {
12+
description = "Admin password for DB"
13+
value = module.rds.db_admin_password
14+
sensitive = true
15+
}
16+
17+
output "db_cluster_dns" {
18+
description = "DB Cluster private DNS record"
19+
value = module.rds.db_cluster_dns
20+
}
21+
22+
output "sg_id" {
23+
description = "Security group ID for DB"
24+
value = module.rds.sg_id
25+
}

examples/lambda/sample-backend.tf

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# terraform {
2+
# backend "s3" {
3+
# bucket = "my-bucket-tfstate"
4+
# key = "example-terraform-aws-rds-lambda"
5+
# profile = "my-profile"
6+
# region = "us-east-1"
7+
# dynamodb_table = "terraform-lock"
8+
# }
9+
# }

examples/lambda/sample-provider.tf

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# provider "aws" {
2+
# region = "us-east-1"
3+
# profile = "my-profile"
4+
# default_tags {
5+
# tags = {
6+
# product = var.product
7+
# environment = var.environment
8+
# repo = var.repo
9+
# organization = var.organization
10+
# }
11+
# }
12+
# }

examples/lambda/tags.tf

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
variable "environment" {
2+
description = "Environment (sharedtools, dev, staging, prod)"
3+
type = string
4+
5+
default = "sharedtools"
6+
7+
validation {
8+
condition = contains(["sharedtools", "dev", "staging", "prod"], var.environment)
9+
error_message = "The environment variable must be one of [sharedtools, dev, staging, prod]."
10+
}
11+
}
12+
13+
variable "product" {
14+
description = "Tag used to group resources according to application"
15+
16+
default = "example-tf-rds-lambda"
17+
18+
validation {
19+
condition = can(regex("[a-z\\-]+", var.product))
20+
error_message = "The product variable violates approved regex."
21+
}
22+
}
23+
24+
variable "repo" {
25+
description = "Tag used to point to the repo using this module"
26+
27+
default = "https://github.com/pbs/terraform-rds-module.git"
28+
29+
validation {
30+
condition = can(regex("(?:git|ssh|https?|git@[-\\w.]+):(\\/\\/)?(.*?)(\\.git)(\\/?|\\#[-\\d\\w._]+?)$", var.repo))
31+
error_message = "The repo variable violates approved regex."
32+
}
33+
}
34+
35+
variable "organization" {
36+
description = "Organization using this module. Used to prefix tags so that they are easily identified as being from your organization"
37+
type = string
38+
39+
default = "example"
40+
41+
validation {
42+
condition = can(regex("[a-z\\-]+", var.organization))
43+
error_message = "The organization variable violates approved regex."
44+
}
45+
}

examples/lambda/vars.tf

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
variable "private_hosted_zone" {
2+
type = string
3+
description = "Private hosted zone for this RDS Cluster. Populate `TF_VAR_private_hosted_zone` before running any tests to have this value populated."
4+
}

go.work

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
go 1.18
2+
3+
use ./tests

0 commit comments

Comments
 (0)