Add build and deploy actions. #1

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

View File

@@ -9,7 +9,5 @@ terraform {
# Access AWS through the IaC roles.
provider "aws" {
region = var.aws_region
access_key = var.aws_access
secret_key = var.aws_secret
region = "us-east-1"
}

View File

@@ -1,14 +1,17 @@
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
}