Skip to content

Commit 266caac

Browse files
committed
Welcome to StackSimplify by Kalyan Reddy Daida
1 parent 4631bba commit 266caac

File tree

10 files changed

+17
-18
lines changed

10 files changed

+17
-18
lines changed

08-AWS-EKS-Cluster-Basics/01-ekscluster-terraform-manifests/c4-05-ec2bastion-instance.tf

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
# Bastion Host - EC2 Instance that will be created in VPC Public Subnet
33
module "ec2_public" {
44
source = "terraform-aws-modules/ec2-instance/aws"
5-
#version = "3.3.0"
65
#version = "5.0.0"
76
version = "5.5.0"
87
# insert the required variables here

12-Terraform-Remote-State-Storage/01-ekscluster-terraform-manifests/c1-versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Terraform Settings Block
22
terraform {
3-
required_version = ">= 1.0.0"
3+
required_version = ">= 1.6.0"
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"

12-Terraform-Remote-State-Storage/02-k8sresources-terraform-manifests/c1-versions.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Terraform Settings Block
22
terraform {
3-
required_version = ">= 1.0.0"
3+
required_version = ">= 1.6.0"
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"

13-EKS-IRSA/01-ekscluster-terraform-manifests/c1-versions.tf

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Terraform Settings Block
22
terraform {
3-
required_version = ">= 1.0.0"
3+
required_version = ">= 1.6.0"
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
#version = "~> 3.70"
8-
version = ">= 4.65"
7+
#version = ">= 4.65"
8+
version = ">= 5.31"
99
}
1010
}
1111
# Adding Backend as S3 for Remote State Storage

13-EKS-IRSA/01-ekscluster-terraform-manifests/c3-02-vpc-module.tf

+2-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,8 @@ data "aws_availability_zones" "available" {
55
# Create VPC Terraform Module
66
module "vpc" {
77
source = "terraform-aws-modules/vpc/aws"
8-
#version = "3.11.0"
9-
#version = "~> 3.11"
10-
version = "4.0.1"
8+
#version = "4.0.1"
9+
version = "5.4.0"
1110

1211
# VPC Basic Details
1312
name = local.eks_cluster_name

13-EKS-IRSA/01-ekscluster-terraform-manifests/c4-03-ec2bastion-securitygroups.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# Security Group for Public Bastion Host
33
module "public_bastion_sg" {
44
source = "terraform-aws-modules/security-group/aws"
5-
#version = "4.5.0"
6-
version = "4.17.2"
5+
#version = "4.17.2"
6+
version = "5.1.0"
77

88
name = "${local.name}-public-bastion-sg"
99
description = "Security Group with SSH port open for everybody (IPv4 CIDR), egress ports are all world open"

13-EKS-IRSA/01-ekscluster-terraform-manifests/c4-05-ec2bastion-instance.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# Bastion Host - EC2 Instance that will be created in VPC Public Subnet
33
module "ec2_public" {
44
source = "terraform-aws-modules/ec2-instance/aws"
5-
#version = "3.3.0"
6-
version = "5.0.0"
5+
#version = "5.0.0"
6+
version = "5.5.0"
77

88
# insert the required variables here
99
name = "${local.name}-BastionHost"

13-EKS-IRSA/01-ekscluster-terraform-manifests/c4-06-ec2bastion-elasticip.tf

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
resource "aws_eip" "bastion_eip" {
44
depends_on = [ module.ec2_public, module.vpc ]
55
instance = module.ec2_public.id
6-
vpc = true
6+
#vpc = true
7+
domain = "vpc"
78
tags = local.common_tags
89
}
910

13-EKS-IRSA/01-ekscluster-terraform-manifests/eks.auto.tfvars

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cluster_name = "eksdemo1"
22
cluster_service_ipv4_cidr = "172.20.0.0/16"
3-
cluster_version = "1.26"
3+
cluster_version = "1.28"
44
cluster_endpoint_private_access = false
55
cluster_endpoint_public_access = true
66
cluster_endpoint_public_access_cidrs = ["0.0.0.0/0"]

13-EKS-IRSA/02-eks-irsa-demo-terraform-manifests/c1-versions.tf

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Terraform Settings Block
22
terraform {
3-
required_version = ">= 1.0.0"
3+
required_version = ">= 1.6.0"
44
required_providers {
55
aws = {
66
source = "hashicorp/aws"
7-
#version = "~> 3.70"
8-
version = ">= 4.65"
7+
#version = ">= 4.65"
8+
version = ">= 5.31"
99
}
1010
}
1111
# Adding Backend as S3 for Remote State Storage

0 commit comments

Comments
 (0)