Skip to content

Commit 3b066ed

Browse files
committed
Test Manual Workflows (#10)
1 parent b6fdb56 commit 3b066ed

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

.github/workflows/test-manual.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Test manual workflow
2+
on:
3+
workflow_dispatch:
4+
5+
jobs:
6+
greet:
7+
runs-on: ubuntu-20.04
8+
9+
steps:
10+
- name: Send greeting
11+
run: echo "Workflow executed"

terraform/terraform_aws/modules/swarm-security-group/main.tf

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -151,3 +151,15 @@ resource "aws_security_group_rule" "swarm_sgr_14" {
151151
cidr_blocks = ["0.0.0.0/0"]
152152

153153
}
154+
155+
resource "aws_security_group_rule" "swarm_sgr_15" {
156+
security_group_id = var.security_group_id
157+
158+
type = "ingress"
159+
from_port = 0
160+
to_port = 3000
161+
protocol = "tcp"
162+
cidr_blocks = ["0.0.0.0/0"]
163+
164+
}
165+

0 commit comments

Comments
 (0)