feat: runner infrastructure is built

This commit is contained in:
2025-02-13 15:50:39 -05:00
parent a1844458b0
commit 829df54ae9
9 changed files with 150 additions and 0 deletions

11
terraform/providers.tf Normal file
View File

@@ -0,0 +1,11 @@
terraform {
# The backend is stored in an S3 bucket.
backend "s3" {}
}
# Access AWS through the IaC roles.
provider "aws" {
region = var.aws_region
access_key = var.aws_access
secret_key = var.aws_secret
}