Skip to content

Commit

Permalink
feat: Added new vpc security-group tag
Browse files Browse the repository at this point in the history
  • Loading branch information
theprashantyadav committed Jul 31, 2023
1 parent 9880091 commit 56ea0d8
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 12 deletions.
6 changes: 3 additions & 3 deletions _example/anomaly_example/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ provider "aws" {
##--------------------------------------------------------------------------------------------------------------------------
module "vpc" {
source = "clouddrove/vpc/aws"
version = "1.3.1"
version = "2.0.0"

name = "vpc"
environment = "test"
Expand Down Expand Up @@ -44,7 +44,7 @@ module "public_subnets" {
##-----------------------------------------------------
module "http-https" {
source = "clouddrove/security-group/aws"
version = "1.3.0"
version = "2.0.0"

name = "alarm"
environment = "test"
Expand All @@ -60,7 +60,7 @@ module "http-https" {
##-----------------------------------------------------
module "ssh" {
source = "clouddrove/security-group/aws"
version = "1.3.0"
version = "2.0.0"

name = "alarmsg"
environment = "test"
Expand Down
10 changes: 5 additions & 5 deletions _example/basic_example/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ provider "aws" {
##--------------------------------------------------------------------------------------------------------------------------
module "vpc" {
source = "clouddrove/vpc/aws"
version = "1.3.1"
version = "2.0.0"

name = "vpc"
environment = "test"
Expand Down Expand Up @@ -45,7 +45,7 @@ module "public_subnets" {
##-----------------------------------------------------
module "http-https" {
source = "clouddrove/security-group/aws"
version = "1.3.0"
version = "2.0.0"


name = "http-https"
Expand All @@ -62,7 +62,7 @@ module "http-https" {
##-----------------------------------------------------
module "ssh" {
source = "clouddrove/security-group/aws"
version = "1.3.0"
version = "2.0.0"


name = "ssh"
Expand All @@ -78,8 +78,8 @@ module "ssh" {
## Amazon EC2 provides cloud hosted virtual machines, called "instances", to run applications.
##-----------------------------------------------------
module "ec2" {
source = "clouddrove/ec2/aws"
version = "1.3.0"
source = "clouddrove/ec2/aws"
version = "1.3.0"
name = "ec2-instance"
environment = "test"
label_order = ["name", "environment"]
Expand Down
6 changes: 3 additions & 3 deletions _example/expression_example/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ provider "aws" {
##--------------------------------------------------------------------------------------------------------------------------
module "vpc" {
source = "clouddrove/vpc/aws"
version = "1.3.1"
version = "2.0.0"

name = "vpc"
environment = "test"
Expand Down Expand Up @@ -44,7 +44,7 @@ module "public_subnets" {
##-----------------------------------------------------
module "http-https" {
source = "clouddrove/security-group/aws"
version = "1.3.0"
version = "2.0.0"


name = "http-https"
Expand All @@ -61,7 +61,7 @@ module "http-https" {
##-----------------------------------------------------
module "ssh" {
source = "clouddrove/security-group/aws"
version = "1.3.0"
version = "2.0.0"


name = "ssh"
Expand Down
1 change: 0 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -124,5 +124,4 @@ resource "aws_cloudwatch_metric_alarm" "anomaly" {
}
}
}

}

0 comments on commit 56ea0d8

Please sign in to comment.