File tree Expand file tree Collapse file tree 5 files changed +16
-1
lines changed Expand file tree Collapse file tree 5 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 4
4
push :
5
5
branches :
6
6
- main
7
+ paths-ignore :
8
+ - " **/README.md"
7
9
workflow_dispatch :
8
10
9
11
jobs :
Original file line number Diff line number Diff line change 4
4
pull_request :
5
5
branches :
6
6
- main
7
+ paths-ignore :
8
+ - " **/README.md"
7
9
workflow_dispatch :
8
10
9
11
jobs :
Original file line number Diff line number Diff line change 8
8
uses : soat-tech-challenge/github-workflows/.github/workflows/terraform-destroy.yml@main
9
9
secrets : inherit
10
10
with :
11
- workspace : ${{ vars.TF_WORKSPACE }}
11
+ cloud_workspace : ${{ vars.TF_WORKSPACE }}
Original file line number Diff line number Diff line change
1
+ # terraform-aws-rds
2
+
3
+ Manages AWS RDS-related Terraform resources.
4
+
5
+ Part of a group course project of a self service and kitchen management system for a fictional fast food restaurant.
6
+
7
+ Currently responsible for managing database-related resources of the project.
Original file line number Diff line number Diff line change @@ -8,6 +8,10 @@ resource "aws_security_group" "this" {
8
8
protocol = " tcp"
9
9
cidr_blocks = [" 0.0.0.0/0" ]
10
10
}
11
+
12
+ tags = {
13
+ Name = " Backend DB Security Group" ,
14
+ }
11
15
}
12
16
13
17
resource "aws_db_subnet_group" "this" {
You can’t perform that action at this time.
0 commit comments