Skip to content

Commit b5c7a72

Browse files
committed
Welcome to StackSimplify
1 parent 9af89de commit b5c7a72

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

07-AWS-EC2Instance-and-SecurityGroups/terraform-manifests/c7-03-ec2instance-bastion.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
module "ec2_public" {
44
source = "terraform-aws-modules/ec2-instance/aws"
55
#version = "2.17.0"
6-
version = "5.6.0"
6+
#version = "5.6.0"
7+
version = "6.0.2"
78
# insert the 10 required variables here
89
name = "${var.environment}-BastionHost"
910
#instance_count = 5

07-AWS-EC2Instance-and-SecurityGroups/terraform-manifests/c7-04-ec2instance-private.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ module "ec2_private" {
44
depends_on = [ module.vpc ] # VERY VERY IMPORTANT else userdata webserver provisioning will fail
55
source = "terraform-aws-modules/ec2-instance/aws"
66
#version = "2.17.0"
7-
version = "5.6.0"
7+
#version = "5.6.0"
8+
version = "6.0.2"
89
# insert the 10 required variables here
910
name = "${var.environment}-vm"
1011
ami = data.aws_ami.amzlinux2.id
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
VPC created on Tue Nov 28 10:36:35 IST 2023 and VPC ID: vpc-03b65bf021fae83d9
2+
VPC created on Thu Jul 3 07:34:53 IST 2025 and VPC ID: vpc-0d7468077cd183bd0
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
Destroy time prov Tue Nov 28 10:40:26 IST 2023
2+
Destroy time prov Thu Jul 3 07:43:45 IST 2025

0 commit comments

Comments
 (0)