Skip to content

Commit

Permalink
more test workflaow
Browse files Browse the repository at this point in the history
  • Loading branch information
jarrod-lowe committed Aug 3, 2024
1 parent 6c0e5c5 commit 43ffd05
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/environment-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,6 @@ jobs:
uses: dflook/terraform-plan@d9df4f6c2484e709ba7ffaa16c98a6906f4760cd
with:
path: terraform/environment/github

variables: |
aws_account=${{ secrets.AWS_ACCOUNT }}
aws_region=${{ secrets.AWS_REGION }}
3 changes: 2 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
"config:recommended",
":dependencyDashboard"
]
}
14 changes: 14 additions & 0 deletions terraform/environment/github/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,17 @@ data "aws_region" "current" {}
output "aws_region" {
value = data.aws_region.current.id
}

variable "aws_account" {
type = string
sensitive = true
}

variable "aws_region" {
type = string
sensitive = true
}

provider "aws" {

}

0 comments on commit 43ffd05

Please sign in to comment.