Skip to content

Commit 608f401

Browse files
author
Nikita Dugar
authored
Merge pull request #18 from clouddrove/0.15
update module tags
2 parents 939a3e4 + cbfc064 commit 608f401

File tree

5 files changed

+16
-4
lines changed

5 files changed

+16
-4
lines changed

.github/workflows/terraform.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,3 +93,15 @@ jobs:
9393
- name: 'Pre-Commit 🔎'
9494
uses: pre-commit/[email protected]
9595
continue-on-error: true
96+
97+
98+
- name: 'Slack Notification'
99+
uses: clouddrove/action-slack@v2
100+
with:
101+
status: ${{ job.status }}
102+
fields: repo,author
103+
author_name: 'CloudDrove'
104+
env:
105+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # required
106+
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_TERRAFORM }} # required
107+
if: always()

_example/new_security_group/example.tf

Lines changed: 1 addition & 1 deletion
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.14.0"
7+
version = "0.15.0"
88
name = "vpc"
99
environment = "test"
1010
label_order = ["name", "environment"]

_example/new_security_group_with_egress/example.tf

Lines changed: 1 addition & 1 deletion
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.14.0"
7+
version = "0.15.0"
88
name = "vpc"
99
environment = "test"
1010
label_order = ["name", "environment"]

_example/updated_existing/example.tf

Lines changed: 1 addition & 1 deletion
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.14.0"
7+
version = "0.15.0"
88
name = "vpc"
99
environment = "test"
1010
label_order = ["name", "environment"]

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ variable "name" {
88

99
variable "repository" {
1010
type = string
11-
default = "https://registry.terraform.io/modules/clouddrove/security-group/aws/"
11+
default = "https://github.com/clouddrove/terraform-aws-security-group"
1212
description = "Terraform current module repo"
1313
}
1414

0 commit comments

Comments
 (0)