Skip to content

Commit

Permalink
Merge pull request #24 from clouddrove/1.0.1
Browse files Browse the repository at this point in the history
Fix. versions
  • Loading branch information
yadavprakash committed May 18, 2022
2 parents 504a45b + bf15cd5 commit 44eeef0
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions _example/aurora-mysql-serverless/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ provider "aws" {

module "vpc" {
source = "clouddrove/vpc/aws"
version = "0.15.0"
version = "0.15.1"

name = "vpc"
environment = "test"
Expand All @@ -17,7 +17,7 @@ module "vpc" {

module "subnets" {
source = "clouddrove/subnet/aws"
version = "0.15.0"
version = "0.15.3"

name = "public-subnet"
environment = "test"
Expand All @@ -35,7 +35,7 @@ module "subnets" {

module "security_group" {
source = "clouddrove/security-group/aws"
version = "0.15.0"
version = "1.0.1"
name = "aurora-mysql-sg"

environment = "test"
Expand All @@ -48,7 +48,7 @@ module "security_group" {

module "kms_key" {
source = "clouddrove/kms/aws"
version = "0.15.0"
version = "1.0.1"
name = "kms"
environment = "test"
label_order = ["name", "environment"]
Expand Down
6 changes: 3 additions & 3 deletions _example/aurora-mysql/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ provider "aws" {

module "vpc" {
source = "clouddrove/vpc/aws"
version = "0.15.0"
version = "0.15.1"

name = "aurora-mysql"
environment = "test"
Expand All @@ -14,7 +14,7 @@ module "vpc" {

module "public_subnets" {
source = "clouddrove/subnet/aws"
version = "0.15.0"
version = "0.15.3"
name = "public-subnet"
environment = "test"
label_order = ["name", "environment"]
Expand All @@ -30,7 +30,7 @@ module "public_subnets" {

module "security-group" {
source = "clouddrove/security-group/aws"
version = "0.15.0"
version = "1.0.1"
name = "aurora-sg"

environment = "test"
Expand Down
8 changes: 4 additions & 4 deletions _example/aurora-postgre-serverless/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ provider "aws" {

module "vpc" {
source = "clouddrove/vpc/aws"
version = "0.15.0"
version = "0.15.1"

name = "vpc"
environment = "test"
Expand All @@ -17,7 +17,7 @@ module "vpc" {

module "subnets" {
source = "clouddrove/subnet/aws"
version = "0.15.0"
version = "0.15.3"

name = "public-subnet"
environment = "test"
Expand All @@ -34,7 +34,7 @@ module "subnets" {

module "security_group" {
source = "clouddrove/security-group/aws"
version = "0.15.0"
version = "1.0.1"

name = "aurora-postgresql-sg"
environment = "test"
Expand All @@ -47,7 +47,7 @@ module "security_group" {

module "kms_key" {
source = "clouddrove/kms/aws"
version = "0.15.0"
version = "1.0.1"

name = "kms"
environment = "test"
Expand Down
6 changes: 3 additions & 3 deletions _example/aurora-postgre/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ provider "aws" {

module "vpc" {
source = "clouddrove/vpc/aws"
version = "0.15.0"
version = "0.15.1"

name = "vpc"
environment = "test"
Expand All @@ -15,7 +15,7 @@ module "vpc" {

module "public_subnets" {
source = "clouddrove/subnet/aws"
version = "0.15.0"
version = "0.15.3"

name = "public-subnet"
environment = "test"
Expand All @@ -31,7 +31,7 @@ module "public_subnets" {

module "security-group" {
source = "clouddrove/security-group/aws"
version = "0.15.0"
version = "1.0.1"

name = "postgres-sg"
environment = "test"
Expand Down

0 comments on commit 44eeef0

Please sign in to comment.