From 1bb383b5ed051c23634d0b63474f44156f994b61 Mon Sep 17 00:00:00 2001 From: theprashantyadav Date: Thu, 19 May 2022 17:07:22 +0530 Subject: [PATCH] update version --- .github/workflows/readme.yml | 4 ++-- .github/workflows/terraform.yml | 3 ++- .github/workflows/tfsec.yml | 3 ++- README.yaml | 6 +++--- _example/alb/example.tf | 14 +++++++------- _example/clb/example.tf | 14 +++++++------- _example/nlb/example.tf | 12 ++++++------ 7 files changed, 29 insertions(+), 27 deletions(-) diff --git a/.github/workflows/readme.yml b/.github/workflows/readme.yml index 90c45a2..4dd3ca2 100644 --- a/.github/workflows/readme.yml +++ b/.github/workflows/readme.yml @@ -18,7 +18,7 @@ jobs: python-version: '3.x' - name: 'create readme' - uses: 'clouddrove/github-actions@v8.0' + uses: 'clouddrove/github-actions@v9.0.2' with: actions_subcommand: 'readme' github_token: '${{ secrets.GITHUB}}' @@ -35,7 +35,7 @@ jobs: continue-on-error: true - name: 'push readme' - uses: 'clouddrove/github-actions@v8.0' + uses: 'clouddrove/github-actions@v9.0.2' continue-on-error: true with: actions_subcommand: 'push' diff --git a/.github/workflows/terraform.yml b/.github/workflows/terraform.yml index 7f1959b..d2de229 100644 --- a/.github/workflows/terraform.yml +++ b/.github/workflows/terraform.yml @@ -79,4 +79,5 @@ jobs: terraform_version: ${{ needs.versionExtract.outputs.maxVersion }} - name: Check Terraform format changes - run: terraform fmt --recursive \ No newline at end of file + run: terraform fmt --recursive + \ No newline at end of file diff --git a/.github/workflows/tfsec.yml b/.github/workflows/tfsec.yml index 20cde2d..3336117 100644 --- a/.github/workflows/tfsec.yml +++ b/.github/workflows/tfsec.yml @@ -22,4 +22,5 @@ jobs: uses: github/codeql-action/upload-sarif@v1 with: # Path to SARIF file relative to the root of the repository - sarif_file: tfsec.sarif \ No newline at end of file + sarif_file: tfsec.sarif + \ No newline at end of file diff --git a/README.yaml b/README.yaml index 4d88659..ad8079a 100644 --- a/README.yaml +++ b/README.yaml @@ -43,7 +43,7 @@ usage : |- ```hcl module "alb" { source = "clouddrove/alb/aws" - version = "0.15.0" + version = "1.0.1" name = "alb" internal = false load_balancer_type = "application" @@ -85,7 +85,7 @@ usage : |- ```hcl module "alb" { source = "clouddrove/alb/aws" - version = "0.15.0" + version = "1.0.1" name = "nlb" internal = false load_balancer_type = "application" @@ -130,7 +130,7 @@ usage : |- ```hcl module "clb" { source = "clouddrove/alb/aws" - version = "0.15.0" + version = "1.0.1" name = "clb" load_balancer_type = "classic" diff --git a/_example/alb/example.tf b/_example/alb/example.tf index b488ddc..29577a2 100644 --- a/_example/alb/example.tf +++ b/_example/alb/example.tf @@ -4,7 +4,7 @@ provider "aws" { module "vpc" { source = "clouddrove/vpc/aws" - version = "0.15.0" + version = "0.15.1" name = "vpc" environment = "test" @@ -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" @@ -32,7 +32,7 @@ module "public_subnets" { module "http_https" { source = "clouddrove/security-group/aws" - version = "0.15.0" + version = "1.0.1" name = "http-https" environment = "test" @@ -46,7 +46,7 @@ module "http_https" { module "ssh" { source = "clouddrove/security-group/aws" - version = "0.15.0" + version = "1.0.1" name = "ssh" environment = "test" @@ -60,7 +60,7 @@ module "ssh" { module "iam-role" { source = "clouddrove/iam-role/aws" - version = "0.15.0" + version = "1.0.1" name = "iam-role" environment = "test" @@ -98,7 +98,7 @@ data "aws_iam_policy_document" "iam-policy" { module "ec2" { source = "clouddrove/ec2/aws" - version = "0.15.0" + version = "1.0.1" name = "ec2-instance" environment = "test" @@ -119,7 +119,7 @@ module "ec2" { instance_profile_enabled = true iam_instance_profile = module.iam-role.name - disk_size = 8 + ebs_optimized = false ebs_volume_enabled = true ebs_volume_type = "gp2" diff --git a/_example/clb/example.tf b/_example/clb/example.tf index 83a2b11..29a52a5 100644 --- a/_example/clb/example.tf +++ b/_example/clb/example.tf @@ -4,7 +4,7 @@ provider "aws" { module "vpc" { source = "clouddrove/vpc/aws" - version = "0.15.0" + version = "0.15.1" name = "vpc" environment = "test" @@ -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" @@ -31,7 +31,7 @@ module "public_subnets" { module "http_https" { source = "clouddrove/security-group/aws" - version = "0.15.0" + version = "1.0.1" name = "http-https" @@ -45,7 +45,7 @@ module "http_https" { module "ssh" { source = "clouddrove/security-group/aws" - version = "0.15.0" + version = "1.0.1" name = "ssh" environment = "test" @@ -58,7 +58,7 @@ module "ssh" { module "iam-role" { source = "clouddrove/iam-role/aws" - version = "0.15.0" + version = "1.0.1" name = "iam-role" environment = "test" @@ -96,7 +96,7 @@ data "aws_iam_policy_document" "iam-policy" { module "ec2" { source = "clouddrove/ec2/aws" - version = "0.15.0" + version = "1.0.1" name = "ec2-instance" environment = "test" @@ -117,7 +117,7 @@ module "ec2" { instance_profile_enabled = true iam_instance_profile = module.iam-role.name - disk_size = 8 + ebs_optimized = false ebs_volume_enabled = true ebs_volume_type = "gp2" diff --git a/_example/nlb/example.tf b/_example/nlb/example.tf index 2ae0c15..f5846d8 100644 --- a/_example/nlb/example.tf +++ b/_example/nlb/example.tf @@ -4,7 +4,7 @@ provider "aws" { module "vpc" { source = "clouddrove/vpc/aws" - version = "0.15.0" + version = "0.15.1" name = "vpc" environment = "test" @@ -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" @@ -31,7 +31,7 @@ module "public_subnets" { module "http-https" { source = "clouddrove/security-group/aws" - version = "0.15.0" + version = "1.0.1" name = "http-https" environment = "test" @@ -45,7 +45,7 @@ module "http-https" { module "ssh" { source = "clouddrove/security-group/aws" - version = "0.15.0" + version = "1.0.1" name = "ssh" environment = "test" @@ -58,7 +58,7 @@ module "ssh" { module "iam-role" { source = "clouddrove/iam-role/aws" - version = "0.15.0" + version = "1.0.1" name = "iam-role" environment = "test" @@ -96,7 +96,7 @@ data "aws_iam_policy_document" "iam-policy" { module "ec2" { source = "clouddrove/ec2/aws" - version = "0.15.0" + version = "1.0.1" name = "ec2-instance" environment = "test"