Skip to content

Commit 15d7090

Browse files
authored
chore: Added workflow_dispatch to allow manual releases (#251)
1 parent b44aae5 commit 15d7090

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Release
22

33
on:
4+
workflow_dispatch:
45
push:
56
branches:
67
- main

main.tf

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -285,9 +285,7 @@ resource "aws_security_group" "this" {
285285
vpc_id = var.vpc_id
286286
description = coalesce(var.security_group_description, "Control traffic to/from RDS Aurora ${var.name}")
287287

288-
tags = merge(var.tags, var.security_group_tags, {
289-
Name = var.name
290-
})
288+
tags = merge(var.tags, var.security_group_tags, { Name = var.name })
291289
}
292290

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

0 commit comments

Comments
 (0)