Add build and deploy actions. #1

Open
max wants to merge 19 commits from feat/actions into main
2 changed files with 3 additions and 17 deletions
Showing only changes of commit e46795fd57 - Show all commits

View File

@@ -34,6 +34,9 @@ jobs:
terraform init
- name: Terraform Plan
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
run: |
cd terraform
terraform plan -out=tfplan -no-color

View File

@@ -1,17 +0,0 @@
variable "aws_region" {
type = string
description = "The AWS region things are created in."
sensitive = true
}
variable "aws_access" {
type = string
description = "The access key to generate the Gitea instance."
sensitive = true
}
variable "aws_secret" {
type = string
description = "The access secret to generate the Gitea instance."
sensitive = true
}