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 2e82cbc commit c307144Copy full SHA for c307144
.github/workflows/main.yml
@@ -4,6 +4,7 @@ on:
4
push:
5
branches:
6
- main
7
+ workflow_dispatch:
8
9
jobs:
10
terraform_apply:
.github/workflows/terraform-destroy.yml
@@ -5,6 +5,5 @@ on:
terraform_destroy:
- if: github.ref == 'refs/heads/main'
uses: soat-tech-challenge/github-workflows/.github/workflows/terraform-destroy.yml@main
secrets: inherit
main.tf
@@ -14,6 +14,8 @@ resource "aws_db_instance" "this" {
14
identifier = "soat-tc-rds-db"
15
engine = "postgres"
16
17
+ db_name = "backend-db"
18
+
19
allocated_storage = 20
20
storage_type = "gp2"
21
engine_version = "15.3"
0 commit comments