From bcff7e51f787848eea3982c499bbb101cff0eb7b Mon Sep 17 00:00:00 2001 From: ritninja Date: Thu, 10 Oct 2024 18:46:10 +0800 Subject: [PATCH 01/20] first commit --- terraform/terraform.tf | 2 +- terraform/variables.tf | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/terraform/terraform.tf b/terraform/terraform.tf index 67b75c673..eae0c71f0 100644 --- a/terraform/terraform.tf +++ b/terraform/terraform.tf @@ -27,7 +27,7 @@ terraform { } backend "s3" { - bucket = "gitopsterrastate" + bucket = "ritninjaactions23" key = "terraform.tfstate" region = "us-east-2" } diff --git a/terraform/variables.tf b/terraform/variables.tf index a41d982a0..3e49f4a09 100644 --- a/terraform/variables.tf +++ b/terraform/variables.tf @@ -7,5 +7,5 @@ variable "region" { variable "clusterName" { description = "Name of the EKS cluster" type = string - default = "kitops-eks" + default = "vprofile-eks" } From a3eccb2cf981587e17f4f64ba3048b89007918aa Mon Sep 17 00:00:00 2001 From: ritninja Date: Thu, 10 Oct 2024 19:08:33 +0800 Subject: [PATCH 02/20] Added terraform staging commands --- .DS_Store | Bin 0 -> 6148 bytes .github/workflows/terraform.yml | 51 ++++++++++++++++++++++++++++++++ terraform/.DS_Store | Bin 0 -> 6148 bytes 3 files changed, 51 insertions(+) create mode 100644 .DS_Store create mode 100644 .github/workflows/terraform.yml create mode 100644 terraform/.DS_Store diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..ca0f09f541566436bbb5cf18d968a85eecec0663 GIT binary patch literal 6148 zcmeHK!A=4(5Sf1c~gM)ZU%~Q0|CVFZvP4oGtXW(4Ek}Y^uiWW>BXgtm9bW=3+Gl0 zo!E^B{hHf5qu#L)p*M+L?<8msTe-CZ5yfs0wR@5f_-&kWei}r+7}mrf^81qOsDzcZ zvaMWxG%8mr1zy=Lj|+UXw^b_e?aI!0oVC_BHusyYyRZ|92PGrJQ%BmW#tA%PFtw_C zrx%4Hy1@*wve1MERG|(>h(+jte;A4@FO=)1 zsI&3UYx{{7Q~FBDOf%OC=-p$j%=K5Ak24Aw1%5*TIv+SXp{+4dD31C}efePe%}n1=n0z}vpUdgMY=x#Z z3K#`GDv(m$9M%8E*Z2RAB-1kr7zO^70xVs3>NQ-FuB|hRqgu<+FVV?pUZPM^u+imM g22_gk=+ZF9DL}L}CJJ!`&HNFNGML6F@S_U60l49&qW}N^ literal 0 HcmV?d00001 diff --git a/.github/workflows/terraform.yml b/.github/workflows/terraform.yml new file mode 100644 index 000000000..9b2a2fbac --- /dev/null +++ b/.github/workflows/terraform.yml @@ -0,0 +1,51 @@ +name: "Vprofile IAC" +on: + push: + branches: + - main + - stage + paths: + - terraform/** + +env: + AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESSKEY_ID }} + AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + BUCKET_TF_STATE: ${{ secrets.BUCKET_TF_STATE }} + AWS_REGION: us-east-2 + EKS_CLUSTER: vprofile-eks + +jobs: + terraform: + name: "Apply terraform code changes" + runs-on: ubuntu-latest + defaults: + run: + shell: bash + working-directory: ./terraform + steps: + - name: Checkout source code + uses: actions/checkout@v4 + + - name: Setup Terraform + uses: hashicorp/setup-terraform@v2 + + - name: Terraform init + id: init + run: terraform init -backend-config="bucket=$BUCKET_TF_STATE" + + - name: Terraform fmt + id: fmt + run: terraform fmt -check + + - name: Terraform validate + id: validate + run: terraform validate + + - name: Terraform plan + id: plan + run: terraform plan -no-color -input=false -out planFile + continue-on-error: true + + - name: Terraform plan status + if: steps.plan.outcome == 'failure' + run: exit 1 \ No newline at end of file diff --git a/terraform/.DS_Store b/terraform/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..73444126ec585dac6d59710c07a0fa04d92c8dde GIT binary patch literal 6148 zcmeHK%TB{E5S$HFDG#9@xghxmsKg(HsvJ1;12m;Yh(J*KIOopC@O_+M*0w5|m@5Lb zE3LSy5I6q_m&+7K z&RU#ff0}C49A`m(%@Gqblh+P!Lq^THO;PY%&bh)A@4dzAW5fB)QnA^6E0#?&Q@|83 z1^%D{%-L##qkvYL0;Yf|uvI|6500*wM{EN6PX`Ns1t9j=?TvN)O;nDHm`7{^@(E1> zl^CcJuNV^O>~}FPkJtnZbV$5>NE}(>4MqIue82PIkUXH3rhqB1tH54p4mJN@eSiPo zC0WZ9Fa`dV0@9n@OvYSN%&ncpX|8qjTe_OYH37F2R(vXEtft~qx;OSatq}8wO+fb0 P>_@=MV1+60qY8Wi-wI%y literal 0 HcmV?d00001 From ea588cc8868c865137c18d29d5d468c22b1e7bcd Mon Sep 17 00:00:00 2001 From: ritninja Date: Thu, 10 Oct 2024 19:13:48 +0800 Subject: [PATCH 03/20] fix TF version --- .github/workflows/terraform.yml | 2 ++ terraform/variables.tf | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/terraform.yml b/.github/workflows/terraform.yml index 9b2a2fbac..364c384a2 100644 --- a/.github/workflows/terraform.yml +++ b/.github/workflows/terraform.yml @@ -28,6 +28,8 @@ jobs: - name: Setup Terraform uses: hashicorp/setup-terraform@v2 + with: + terraform_version: 1.6.3 - name: Terraform init id: init diff --git a/terraform/variables.tf b/terraform/variables.tf index 3e49f4a09..576ba161e 100644 --- a/terraform/variables.tf +++ b/terraform/variables.tf @@ -9,3 +9,5 @@ variable "clusterName" { type = string default = "vprofile-eks" } + +## \ No newline at end of file From fec0f6d8797098d1218704ffc9b668a579bc2df0 Mon Sep 17 00:00:00 2001 From: ritninja Date: Thu, 10 Oct 2024 19:22:53 +0800 Subject: [PATCH 04/20] fix s3 region --- .DS_Store | Bin 6148 -> 6148 bytes terraform/terraform.tf | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/.DS_Store b/.DS_Store index ca0f09f541566436bbb5cf18d968a85eecec0663..70b6e257ddc4cf79d74e99be46d87ef5814fb6f8 100644 GIT binary patch delta 24 fcmZoMXffFEo0Z+bL`T8I&|va17W>VPY=;E_W8Md^ delta 16 XcmZoMXffFEn|1Ph7PrlgY=;E_IuZtB diff --git a/terraform/terraform.tf b/terraform/terraform.tf index eae0c71f0..d1bba2063 100644 --- a/terraform/terraform.tf +++ b/terraform/terraform.tf @@ -27,7 +27,7 @@ terraform { } backend "s3" { - bucket = "ritninjaactions23" + bucket = "ritninjaactions710" key = "terraform.tfstate" region = "us-east-2" } From 03971d9fafa939beb0cea573d6f0fae69b047c3d Mon Sep 17 00:00:00 2001 From: ritninja Date: Thu, 10 Oct 2024 19:37:06 +0800 Subject: [PATCH 05/20] second fix attempt --- terraform/terraform.tf | 4 +--- terraform/vpc.tf | 2 ++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/terraform/terraform.tf b/terraform/terraform.tf index d1bba2063..37adf08e0 100644 --- a/terraform/terraform.tf +++ b/terraform/terraform.tf @@ -34,6 +34,4 @@ terraform { required_version = "~> 1.6.3" } -## -## -## +## \ No newline at end of file diff --git a/terraform/vpc.tf b/terraform/vpc.tf index 5775ce1c3..2d975fd10 100644 --- a/terraform/vpc.tf +++ b/terraform/vpc.tf @@ -24,3 +24,5 @@ module "vpc" { "kubernetes.io/role/internal-elb" = 1 } } + +## \ No newline at end of file From 3538a41b5a165aab56e4a88be2df39d0d7cbb729 Mon Sep 17 00:00:00 2001 From: ritninja Date: Thu, 10 Oct 2024 19:42:43 +0800 Subject: [PATCH 06/20] third attempt fix --- .github/workflows/terraform.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/terraform.yml b/.github/workflows/terraform.yml index 364c384a2..726149b93 100644 --- a/.github/workflows/terraform.yml +++ b/.github/workflows/terraform.yml @@ -33,7 +33,7 @@ jobs: - name: Terraform init id: init - run: terraform init -backend-config="bucket=$BUCKET_TF_STATE" + run: terraform init -backend-config="bucket=${{ env.BUCKET_TF_STATE }}" - name: Terraform fmt id: fmt From b3dbf3d3e21fa74e95834a569e4070c421831977 Mon Sep 17 00:00:00 2001 From: ritninja Date: Thu, 10 Oct 2024 19:49:35 +0800 Subject: [PATCH 07/20] 4 --- terraform/terraform.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/terraform/terraform.tf b/terraform/terraform.tf index 37adf08e0..3c1617095 100644 --- a/terraform/terraform.tf +++ b/terraform/terraform.tf @@ -34,4 +34,5 @@ terraform { required_version = "~> 1.6.3" } + ## \ No newline at end of file From cb702683dba569db39a946ec61a731301deec1c3 Mon Sep 17 00:00:00 2001 From: ritninja Date: Thu, 10 Oct 2024 20:09:07 +0800 Subject: [PATCH 08/20] 5 --- .github/workflows/terraform.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/terraform.yml b/.github/workflows/terraform.yml index 726149b93..dda253ce3 100644 --- a/.github/workflows/terraform.yml +++ b/.github/workflows/terraform.yml @@ -33,7 +33,7 @@ jobs: - name: Terraform init id: init - run: terraform init -backend-config="bucket=${{ env.BUCKET_TF_STATE }}" + run: terraform init -backend-config="bucket=${BUCKET_TF_STATE}" -backend-config="access_key=${AWS_ACCESS_KEY_ID}" -backend-config="secret_key=${AWS_SECRET_ACCESS_KEY}" - name: Terraform fmt id: fmt From 0aae0e036fffa32a8f321ebf11ac2fe365f8f97e Mon Sep 17 00:00:00 2001 From: ritninja Date: Thu, 10 Oct 2024 20:09:57 +0800 Subject: [PATCH 09/20] 6 --- terraform/vpc.tf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/terraform/vpc.tf b/terraform/vpc.tf index 2d975fd10..bc0907c4e 100644 --- a/terraform/vpc.tf +++ b/terraform/vpc.tf @@ -25,4 +25,6 @@ module "vpc" { } } +## + ## \ No newline at end of file From c9afdad648d97c29aa3df76077358c77068142d3 Mon Sep 17 00:00:00 2001 From: ritninja Date: Thu, 10 Oct 2024 20:14:59 +0800 Subject: [PATCH 10/20] 7 --- .github/workflows/terraform.yml | 2 +- terraform/terraform.tf | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/terraform.yml b/.github/workflows/terraform.yml index dda253ce3..4da52257a 100644 --- a/.github/workflows/terraform.yml +++ b/.github/workflows/terraform.yml @@ -33,7 +33,7 @@ jobs: - name: Terraform init id: init - run: terraform init -backend-config="bucket=${BUCKET_TF_STATE}" -backend-config="access_key=${AWS_ACCESS_KEY_ID}" -backend-config="secret_key=${AWS_SECRET_ACCESS_KEY}" + run: terraform init -backend-config="bucket=$BUCKET_TF_STATE" -backend-config="access_key=$AWS_ACCESS_KEY_ID" -backend-config="secret_key=$AWS_SECRET_ACCESS_KEY" - name: Terraform fmt id: fmt diff --git a/terraform/terraform.tf b/terraform/terraform.tf index 3c1617095..a82dc6674 100644 --- a/terraform/terraform.tf +++ b/terraform/terraform.tf @@ -35,4 +35,5 @@ terraform { required_version = "~> 1.6.3" } +## ## \ No newline at end of file From b2dc393e02045364dedc497504dc4a434c498f4a Mon Sep 17 00:00:00 2001 From: ritninja Date: Thu, 10 Oct 2024 20:17:35 +0800 Subject: [PATCH 11/20] 8 --- .github/workflows/terraform.yml | 2 +- terraform/vpc.tf | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/terraform.yml b/.github/workflows/terraform.yml index 4da52257a..364c384a2 100644 --- a/.github/workflows/terraform.yml +++ b/.github/workflows/terraform.yml @@ -33,7 +33,7 @@ jobs: - name: Terraform init id: init - run: terraform init -backend-config="bucket=$BUCKET_TF_STATE" -backend-config="access_key=$AWS_ACCESS_KEY_ID" -backend-config="secret_key=$AWS_SECRET_ACCESS_KEY" + run: terraform init -backend-config="bucket=$BUCKET_TF_STATE" - name: Terraform fmt id: fmt diff --git a/terraform/vpc.tf b/terraform/vpc.tf index bc0907c4e..2d975fd10 100644 --- a/terraform/vpc.tf +++ b/terraform/vpc.tf @@ -25,6 +25,4 @@ module "vpc" { } } -## - ## \ No newline at end of file From d1f190e4c293fac9495a8e5f91f2e43093fa0caa Mon Sep 17 00:00:00 2001 From: ritninja Date: Thu, 10 Oct 2024 20:22:16 +0800 Subject: [PATCH 12/20] 9 --- .github/workflows/terraform.yml | 2 +- terraform/vpc.tf | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/terraform.yml b/.github/workflows/terraform.yml index 364c384a2..726149b93 100644 --- a/.github/workflows/terraform.yml +++ b/.github/workflows/terraform.yml @@ -33,7 +33,7 @@ jobs: - name: Terraform init id: init - run: terraform init -backend-config="bucket=$BUCKET_TF_STATE" + run: terraform init -backend-config="bucket=${{ env.BUCKET_TF_STATE }}" - name: Terraform fmt id: fmt diff --git a/terraform/vpc.tf b/terraform/vpc.tf index 2d975fd10..ab80aaabe 100644 --- a/terraform/vpc.tf +++ b/terraform/vpc.tf @@ -25,4 +25,5 @@ module "vpc" { } } +## ## \ No newline at end of file From a98de59ab0f5e10d7e7088fb932f0be581a2f948 Mon Sep 17 00:00:00 2001 From: ritninja Date: Thu, 10 Oct 2024 20:26:29 +0800 Subject: [PATCH 13/20] 10 --- .github/workflows/terraform.yml | 2 +- terraform/vpc.tf | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/terraform.yml b/.github/workflows/terraform.yml index 726149b93..f7e4cb9c0 100644 --- a/.github/workflows/terraform.yml +++ b/.github/workflows/terraform.yml @@ -10,7 +10,7 @@ on: env: AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESSKEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - BUCKET_TF_STATE: ${{ secrets.BUCKET_TF_STATE }} + BUCKET_TF_STATE: ritninjaactions710 AWS_REGION: us-east-2 EKS_CLUSTER: vprofile-eks diff --git a/terraform/vpc.tf b/terraform/vpc.tf index ab80aaabe..2d975fd10 100644 --- a/terraform/vpc.tf +++ b/terraform/vpc.tf @@ -25,5 +25,4 @@ module "vpc" { } } -## ## \ No newline at end of file From 02b35a23185bc5f41f2663171a9c7f7e4853d32e Mon Sep 17 00:00:00 2001 From: ritninja Date: Thu, 10 Oct 2024 20:48:43 +0800 Subject: [PATCH 14/20] 11 --- .github/workflows/terraform.yml | 2 +- terraform/vpc.tf | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/terraform.yml b/.github/workflows/terraform.yml index f7e4cb9c0..4a30f23f3 100644 --- a/.github/workflows/terraform.yml +++ b/.github/workflows/terraform.yml @@ -8,7 +8,7 @@ on: - terraform/** env: - AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESSKEY_ID }} + AWS_ACCESS_KEY_ID: AKIAVVIWVJAIVYM7BQMC AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} BUCKET_TF_STATE: ritninjaactions710 AWS_REGION: us-east-2 diff --git a/terraform/vpc.tf b/terraform/vpc.tf index 2d975fd10..ab80aaabe 100644 --- a/terraform/vpc.tf +++ b/terraform/vpc.tf @@ -25,4 +25,5 @@ module "vpc" { } } +## ## \ No newline at end of file From 3d086fe759bd4d6078d923f7648bd8830f67c76e Mon Sep 17 00:00:00 2001 From: ritninja Date: Thu, 10 Oct 2024 20:50:27 +0800 Subject: [PATCH 15/20] 12 --- .github/workflows/terraform.yml | 4 ++-- terraform/vpc.tf | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/terraform.yml b/.github/workflows/terraform.yml index 4a30f23f3..532a67adc 100644 --- a/.github/workflows/terraform.yml +++ b/.github/workflows/terraform.yml @@ -8,9 +8,9 @@ on: - terraform/** env: - AWS_ACCESS_KEY_ID: AKIAVVIWVJAIVYM7BQMC + AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} - BUCKET_TF_STATE: ritninjaactions710 + BUCKET_TF_STATE: ${{ secrets.BUCKET_TF_STATE }} AWS_REGION: us-east-2 EKS_CLUSTER: vprofile-eks diff --git a/terraform/vpc.tf b/terraform/vpc.tf index ab80aaabe..2d975fd10 100644 --- a/terraform/vpc.tf +++ b/terraform/vpc.tf @@ -25,5 +25,4 @@ module "vpc" { } } -## ## \ No newline at end of file From 03763cab1cc945eeff2224cd85ead52f828142c6 Mon Sep 17 00:00:00 2001 From: ritninja Date: Thu, 10 Oct 2024 23:02:59 +0800 Subject: [PATCH 16/20] terraform new changes --- .github/workflows/terraform.yml | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/.github/workflows/terraform.yml b/.github/workflows/terraform.yml index 532a67adc..5709b5405 100644 --- a/.github/workflows/terraform.yml +++ b/.github/workflows/terraform.yml @@ -50,4 +50,25 @@ jobs: - name: Terraform plan status if: steps.plan.outcome == 'failure' - run: exit 1 \ No newline at end of file + run: exit 1 + + - name: Terraform Apply + id: apple + if: github.ref == 'refs/heads/main' && github.event_name == 'push' + run: terraform apply -auto-approve -input=false -parallelism=1 planfile + + - name: Configure AWS credentials + uses: aws-actions/configure-aws-credentials@v1 + with: + aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} + aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + aws-region: ${{ env.AWS_REGION }} + + - name: Get Kube config file + id: getconfig + if: steps.apple.outcome == 'success' + run: aws eks update-kubeconfig --region ${{ env.AWS_REGION }} --name ${{ env.EKS_CLUSTER}} + + - name: Install Ingress controller + if: steps.apple.outcome == 'success' && steps.getconfig.outcome == 'sucess' + run: kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.1.3/deploy/static/provider/aws/deploy.yaml \ No newline at end of file From 0dc7c8c0379874d9467236938ddd9af178ae8dae Mon Sep 17 00:00:00 2001 From: ritninja Date: Thu, 10 Oct 2024 23:03:33 +0800 Subject: [PATCH 17/20] stage test --- terraform/variables.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/terraform/variables.tf b/terraform/variables.tf index 576ba161e..b8fe9d331 100644 --- a/terraform/variables.tf +++ b/terraform/variables.tf @@ -10,4 +10,5 @@ variable "clusterName" { default = "vprofile-eks" } +## ## \ No newline at end of file From 20d6f015519943b264f312e182525e573084cdde Mon Sep 17 00:00:00 2001 From: ritninja Date: Thu, 10 Oct 2024 23:12:03 +0800 Subject: [PATCH 18/20] fix planfile --- .github/workflows/terraform.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/terraform.yml b/.github/workflows/terraform.yml index 5709b5405..e03503f37 100644 --- a/.github/workflows/terraform.yml +++ b/.github/workflows/terraform.yml @@ -55,7 +55,7 @@ jobs: - name: Terraform Apply id: apple if: github.ref == 'refs/heads/main' && github.event_name == 'push' - run: terraform apply -auto-approve -input=false -parallelism=1 planfile + run: terraform apply -auto-approve -input=false -parallelism=1 planFile - name: Configure AWS credentials uses: aws-actions/configure-aws-credentials@v1 From 6ddb04dd02f7cdfc07367abedadabb48a511c86f Mon Sep 17 00:00:00 2001 From: ritninja Date: Thu, 10 Oct 2024 23:15:02 +0800 Subject: [PATCH 19/20] stage push --- terraform/vpc.tf | 1 + 1 file changed, 1 insertion(+) diff --git a/terraform/vpc.tf b/terraform/vpc.tf index 2d975fd10..ab80aaabe 100644 --- a/terraform/vpc.tf +++ b/terraform/vpc.tf @@ -25,4 +25,5 @@ module "vpc" { } } +## ## \ No newline at end of file From ed7998de57fa203c7971091b3c280ae0f0d7b088 Mon Sep 17 00:00:00 2001 From: ritninja Date: Fri, 11 Oct 2024 00:02:08 +0800 Subject: [PATCH 20/20] fix ingress --- .github/workflows/terraform.yml | 2 +- terraform/vpc.tf | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/terraform.yml b/.github/workflows/terraform.yml index e03503f37..6cb6745cc 100644 --- a/.github/workflows/terraform.yml +++ b/.github/workflows/terraform.yml @@ -70,5 +70,5 @@ jobs: run: aws eks update-kubeconfig --region ${{ env.AWS_REGION }} --name ${{ env.EKS_CLUSTER}} - name: Install Ingress controller - if: steps.apple.outcome == 'success' && steps.getconfig.outcome == 'sucess' + if: steps.apple.outcome == 'success' run: kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.1.3/deploy/static/provider/aws/deploy.yaml \ No newline at end of file diff --git a/terraform/vpc.tf b/terraform/vpc.tf index ab80aaabe..2d975fd10 100644 --- a/terraform/vpc.tf +++ b/terraform/vpc.tf @@ -25,5 +25,4 @@ module "vpc" { } } -## ## \ No newline at end of file