Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

creation of messaging service in prod #81

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/digger_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,15 +32,22 @@ jobs:
api-key: ${{ secrets.INFRACOST_API_KEY }}

- name: digger
uses: diggerhq/digger@feat/support-single-comment-summary
uses: diggerhq/digger@feat/aws-plan-storage-s3-enc
with:
setup-terraform: true
digger-spec: ${{ inputs.spec }}
digger-private-key: ${{ secrets.DIGGER_PRIVATE_KEY }}
setup-aws: true
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
disable-locking: true
setup-opentofu: true
opentofu-version: 1.6.0
upload-plan-destination: aws
upload-plan-destination-s3-bucket: test-s3-artefacts-kms
upload-plan-destination-s3-encryption-enabled: true
upload-plan-destination-s3-encryption-type: KMS
upload-plan-destination-s3-encryption-kms-key-id: 58aa230f-8059-411a-bd28-c620e2a86e1c
env:
GITHUB_CONTEXT: ${{ toJson(github) }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 2 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
resource "null_resource" "test25" {}



#variable "TEST" {
# default = "hello"
#}
Expand Down
Loading