Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
theprashantyadav committed May 19, 2022
1 parent e95b179 commit 1bb383b
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 27 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/readme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}}'
Expand All @@ -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'
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/terraform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,5 @@ jobs:
terraform_version: ${{ needs.versionExtract.outputs.maxVersion }}

- name: Check Terraform format changes
run: terraform fmt --recursive
run: terraform fmt --recursive

3 changes: 2 additions & 1 deletion .github/workflows/tfsec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
sarif_file: tfsec.sarif

6 changes: 3 additions & 3 deletions README.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -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"
Expand Down
14 changes: 7 additions & 7 deletions _example/alb/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 @@ -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"
Expand All @@ -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"
Expand All @@ -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"
Expand Down Expand Up @@ -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"
Expand All @@ -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"
Expand Down
14 changes: 7 additions & 7 deletions _example/clb/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 "http_https" {
source = "clouddrove/security-group/aws"
version = "0.15.0"
version = "1.0.1"


name = "http-https"
Expand All @@ -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"
Expand All @@ -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"
Expand Down Expand Up @@ -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"
Expand All @@ -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"
Expand Down
12 changes: 6 additions & 6 deletions _example/nlb/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 "http-https" {
source = "clouddrove/security-group/aws"
version = "0.15.0"
version = "1.0.1"

name = "http-https"
environment = "test"
Expand All @@ -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"
Expand All @@ -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"
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit 1bb383b

Please sign in to comment.