Skip to content

Commit 368b05e

Browse files
authored
Remove aws_eip vpc (default to true) upgrade was provider to 5.0.0 (#28)
* Remove aws_eip vpc (default to true) * Add pre-commit-hooks
1 parent 1749577 commit 368b05e

File tree

7 files changed

+70
-7
lines changed

7 files changed

+70
-7
lines changed

.github/workflows/checks.yaml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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]

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,6 @@ override.tf.json
2727

2828
# Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
2929
# example: *tfplan*
30+
31+
# Terraform lockfile
32+
.terraform.lock.hcl

.pre-commit-config.yaml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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

network.tf main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ resource "aws_route_table" "quortex_private" {
124124

125125
content {
126126
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
128128
}
129129
}
130130

nat_gateway.tf

+1-3
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@
2020
resource "aws_eip" "quortex" {
2121
count = (local.enable_nat_gateway && var.nat_eip_allocation_id == "") ? 1 : 0
2222

23-
vpc = true
24-
2523
tags = merge({ "Name" = var.eip_name }, var.tags)
2624
}
2725

@@ -34,7 +32,7 @@ data "aws_eip" "existing_eip" {
3432
}
3533

3634
# 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
3836
resource "aws_nat_gateway" "quortex" {
3937
count = local.enable_nat_gateway ? 1 : 0
4038

outputs.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@ EOT
4141
}
4242

4343
output "route_table_ids_public" {
44-
value = values(aws_route_table.quortex_public).*.id
44+
value = values(aws_route_table.quortex_public)[*].id
4545
description = "The IDs of the route tables for public subnets"
4646
}
4747

4848
output "route_table_ids_private" {
49-
value = values(aws_route_table.quortex_private).*.id
49+
value = values(aws_route_table.quortex_private)[*].id
5050
description = "The IDs of the route tables for private subnets"
5151
}
5252

versions.tf

+4-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ terraform {
1818
required_version = ">= 0.12"
1919

2020
required_providers {
21-
aws = ">= 2.38.0"
21+
aws = {
22+
source = "hashicorp/aws"
23+
version = ">= 2.38.0"
24+
}
2225
}
2326
}

0 commit comments

Comments
 (0)