Skip to content

Commit

Permalink
chore: Added workflow_dispatch to allow manual releases (#251)
Browse files Browse the repository at this point in the history
  • Loading branch information
antonbabenko authored Nov 8, 2021
1 parent b44aae5 commit 15d7090
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: Release

on:
workflow_dispatch:
push:
branches:
- main
Expand Down
4 changes: 1 addition & 3 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -285,9 +285,7 @@ resource "aws_security_group" "this" {
vpc_id = var.vpc_id
description = coalesce(var.security_group_description, "Control traffic to/from RDS Aurora ${var.name}")

tags = merge(var.tags, var.security_group_tags, {
Name = var.name
})
tags = merge(var.tags, var.security_group_tags, { Name = var.name })
}

# TODO - change to map of ingress rules under one resource at next breaking change
Expand Down

0 comments on commit 15d7090

Please sign in to comment.