File tree 7 files changed +70
-7
lines changed
7 files changed +70
-7
lines changed Original file line number Diff line number Diff line change
1
+ name : Checks
2
+
3
+ on :
4
+ push :
5
+
6
+ env :
7
+ TFLINT_VERSION : " v0.47.0"
8
+ TFDOCS_VERSION : " v0.16.0"
9
+
10
+ jobs :
11
+ precommit :
12
+ name : Run precommit-hooks
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ - name : Install dependencies
16
+ run : |
17
+ curl -s https://raw.githubusercontent.com/terraform-linters/tflint/master/install_linux.sh | bash
18
+ curl -sSLo ./terraform-docs.tar.gz https://terraform-docs.io/dl/v0.16.0/terraform-docs-${TFDOCS_VERSION}-$(uname)-amd64.tar.gz
19
+ tar -xzf terraform-docs.tar.gz
20
+ chmod +x terraform-docs
21
+ sudo mv terraform-docs /usr/bin/terraform-docs
22
+ - name : Check out code
23
+ uses : actions/checkout@v3
24
+
25
+ - uses : actions/setup-python@v3
26
+
27
+ -
uses :
pre-commit/[email protected]
Original file line number Diff line number Diff line change @@ -27,3 +27,6 @@ override.tf.json
27
27
28
28
# Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
29
29
# example: *tfplan*
30
+
31
+ # Terraform lockfile
32
+ .terraform.lock.hcl
Original file line number Diff line number Diff line change
1
+ repos :
2
+ - repo : https://github.com/antonbabenko/pre-commit-terraform
3
+ rev : v1.82.0
4
+ hooks :
5
+ - id : terraform_fmt
6
+ - id : terraform_validate
7
+ - id : terraform_docs
8
+ args :
9
+ - ' --args=--lockfile=false'
10
+ - ' --hook-config=--path-to-file=README.md'
11
+ - ' --hook-config=--create-file-if-not-exist=true'
12
+ - id : terraform_tflint
13
+ args :
14
+ - ' --args=--only=terraform_deprecated_interpolation'
15
+ - ' --args=--only=terraform_deprecated_index'
16
+ - ' --args=--only=terraform_unused_declarations'
17
+ - ' --args=--only=terraform_comment_syntax'
18
+ - ' --args=--only=terraform_documented_outputs'
19
+ - ' --args=--only=terraform_documented_variables'
20
+ - ' --args=--only=terraform_typed_variables'
21
+ - ' --args=--only=terraform_module_pinned_source'
22
+ - ' --args=--only=terraform_naming_convention'
23
+ - ' --args=--only=terraform_required_version'
24
+ - ' --args=--only=terraform_required_providers'
25
+ - ' --args=--only=terraform_standard_module_structure'
26
+ - ' --args=--only=terraform_workspace_remote'
27
+ - repo : https://github.com/pre-commit/pre-commit-hooks
28
+ rev : v4.4.0
29
+ hooks :
30
+ - id : check-merge-conflict
31
+ - id : end-of-file-fixer
32
+ - id : trailing-whitespace
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ resource "aws_route_table" "quortex_private" {
124
124
125
125
content {
126
126
cidr_block = " 0.0.0.0/0"
127
- nat_gateway_id = aws_nat_gateway. quortex . 0 . id
127
+ nat_gateway_id = aws_nat_gateway. quortex [ 0 ] . id
128
128
}
129
129
}
130
130
Original file line number Diff line number Diff line change 20
20
resource "aws_eip" "quortex" {
21
21
count = (local. enable_nat_gateway && var. nat_eip_allocation_id == " " ) ? 1 : 0
22
22
23
- vpc = true
24
-
25
23
tags = merge ({ " Name" = var.eip_name }, var. tags )
26
24
}
27
25
@@ -34,7 +32,7 @@ data "aws_eip" "existing_eip" {
34
32
}
35
33
36
34
# A single NAT gateway is used for all subnets (NAT gateway is placed in the 1st subnet),
37
- # or, one NAT gateway in each subnet
35
+ # or, one NAT gateway in each subnet
38
36
resource "aws_nat_gateway" "quortex" {
39
37
count = local. enable_nat_gateway ? 1 : 0
40
38
Original file line number Diff line number Diff line change 41
41
}
42
42
43
43
output "route_table_ids_public" {
44
- value = values (aws_route_table. quortex_public ). * . id
44
+ value = values (aws_route_table. quortex_public )[ * ] . id
45
45
description = " The IDs of the route tables for public subnets"
46
46
}
47
47
48
48
output "route_table_ids_private" {
49
- value = values (aws_route_table. quortex_private ). * . id
49
+ value = values (aws_route_table. quortex_private )[ * ] . id
50
50
description = " The IDs of the route tables for private subnets"
51
51
}
52
52
Original file line number Diff line number Diff line change @@ -18,6 +18,9 @@ terraform {
18
18
required_version = " >= 0.12"
19
19
20
20
required_providers {
21
- aws = " >= 2.38.0"
21
+ aws = {
22
+ source = " hashicorp/aws"
23
+ version = " >= 2.38.0"
24
+ }
22
25
}
23
26
}
You can’t perform that action at this time.
0 commit comments