We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b44aae5 commit 15d7090Copy full SHA for 15d7090
.github/workflows/release.yml
@@ -1,6 +1,7 @@
1
name: Release
2
3
on:
4
+ workflow_dispatch:
5
push:
6
branches:
7
- main
main.tf
@@ -285,9 +285,7 @@ resource "aws_security_group" "this" {
285
vpc_id = var.vpc_id
286
description = coalesce(var.security_group_description, "Control traffic to/from RDS Aurora ${var.name}")
287
288
- tags = merge(var.tags, var.security_group_tags, {
289
- Name = var.name
290
- })
+ tags = merge(var.tags, var.security_group_tags, { Name = var.name })
291
}
292
293
# TODO - change to map of ingress rules under one resource at next breaking change
0 commit comments