Skip to content

Commit 295a725

Browse files
update github-action & License update
1 parent 43254c5 commit 295a725

File tree

7 files changed

+15
-37
lines changed

7 files changed

+15
-37
lines changed

.github/workflows/readme.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
python-version: '3.x'
1919

2020
- name: 'create readme'
21-
uses: 'clouddrove/github-actions@v9.0.1'
21+
uses: 'clouddrove/github-actions@v9.0.2'
2222
with:
2323
actions_subcommand: 'readme'
2424
github_token: '${{ secrets.GITHUB}}'
@@ -35,7 +35,7 @@ jobs:
3535
continue-on-error: true
3636

3737
- name: 'push readme'
38-
uses: 'clouddrove/github-actions@v9.0.1'
38+
uses: 'clouddrove/github-actions@v9.0.2'
3939
continue-on-error: true
4040
with:
4141
actions_subcommand: 'push'

.github/workflows/terraform.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ jobs:
5757
cd ${{ matrix.directory }}
5858
terraform init
5959
terraform validate
60-
terraform plan -input=false -no-color
60+
61+
6162
- name: tflint
6263
uses: reviewdog/action-tflint@master
6364
with:

.github/workflows/terratest.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
- name: 'Terratest for multi_node_non_vpc'
2525
if: ${{ github.event.label.name == 'terratest' }}
26-
uses: 'clouddrove/github-actions@v9.0.1'
26+
uses: 'clouddrove/github-actions@v9.0.2'
2727
with:
2828
actions_subcommand: 'terratest'
2929
tf_actions_working_dir: '_test/multi_node_non_vpc'
@@ -32,8 +32,7 @@ jobs:
3232

3333
- name: 'Terratest for multi_node_vpc'
3434
if: ${{ github.event.label.name == 'terratest' }}
35-
uses: 'clouddrove/github-actions@v9.0.1'
36-
with:
35+
uses: 'clouddrove/github-actions@v9.0.2
3736
actions_subcommand: 'terratest'
3837
tf_actions_working_dir: '_test/multi_node_vpc'
3938
env:
@@ -42,7 +41,7 @@ jobs:
4241

4342
- name: 'Terratest for single_node_non_vpc'
4443
if: ${{ github.event.label.name == 'terratest' }}
45-
uses: 'clouddrove/github-actions@v9.0.1'
44+
uses: 'clouddrove/github-actions@v9.0.2'
4645
with:
4746
actions_subcommand: 'terratest'
4847
tf_actions_working_dir: '_test/single_node_non_vpc'
@@ -52,7 +51,7 @@ jobs:
5251

5352
- name: 'Terratest for single_node_vpc'
5453
if: ${{ github.event.label.name == 'terratest' }}
55-
uses: 'clouddrove/github-actions@v9.0.1'
54+
uses: 'clouddrove/github-actions@v9.0.2'
5655
with:
5756
actions_subcommand: 'terratest'
5857
tf_actions_working_dir: '_test/single_node_vpc'

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Apache License
1+
Apache License
22
Version 2.0, January 2004
33
http://www.apache.org/licenses/
44

_example/multi_node_vpc/example.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ provider "aws" {
44

55
module "vpc" {
66
source = "clouddrove/vpc/aws"
7-
version = "0.15.0"
7+
version = "0.15.1"
88

99
name = "vpc"
1010
environment = "test"
@@ -14,7 +14,7 @@ module "vpc" {
1414

1515
module "public_subnets" {
1616
source = "clouddrove/subnet/aws"
17-
version = "0.15.0"
17+
version = "0.15.3"
1818

1919
name = "public-subnet"
2020
environment = "test"
@@ -30,7 +30,7 @@ module "public_subnets" {
3030

3131
module "security_group" {
3232
source = "clouddrove/security-group/aws"
33-
version = "0.15.0"
33+
version = "1.0.1"
3434

3535
name = "ingress_security_groups"
3636
environment = "test"

_example/single_node_non_vpc/.terraform.lock.hcl

Lines changed: 0 additions & 22 deletions
This file was deleted.

_example/single_node_vpc/example.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ provider "aws" {
44

55
module "vpc" {
66
source = "clouddrove/vpc/aws"
7-
version = "0.15.0"
7+
version = "0.15.1"
88

99

1010
name = "vpc"
@@ -16,7 +16,7 @@ module "vpc" {
1616

1717
module "public_subnets" {
1818
source = "clouddrove/subnet/aws"
19-
version = "0.15.0"
19+
version = "0.15.3"
2020

2121
name = "public-subnet"
2222
environment = "test"
@@ -32,7 +32,7 @@ module "public_subnets" {
3232

3333
module "security_group" {
3434
source = "clouddrove/security-group/aws"
35-
version = "0.15.0"
35+
version = "1.0.1"
3636

3737
name = "ingress_security_groups"
3838
environment = "test"

0 commit comments

Comments
 (0)