diff --git a/terraform/provider.tf b/terraform/provider.tf index 1f5e80d..0562314 100644 --- a/terraform/provider.tf +++ b/terraform/provider.tf @@ -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" } \ No newline at end of file diff --git a/terraform/variables.tf b/terraform/variables.tf index 6565f7e..06ab585 100644 --- a/terraform/variables.tf +++ b/terraform/variables.tf @@ -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 } \ No newline at end of file