Skip to content

Commit

Permalink
Fix naming of variable
Browse files Browse the repository at this point in the history
  • Loading branch information
hellais committed Feb 2, 2024
1 parent aafbe67 commit 67f700a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tf/environments/production/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ terraform {

provider "aws" {
region = var.aws_region
access_key = var.aws_access_key
access_key = var.aws_access_key_id
secret_key = var.aws_secret_access_key
}

Expand Down
2 changes: 1 addition & 1 deletion tf/environments/production/variables.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
variable "datadog_api_key" {}
variable "aws_access_key" {}
variable "aws_access_key_id" {}
variable "aws_secret_access_key" {}

variable "aws_region" {
Expand Down

0 comments on commit 67f700a

Please sign in to comment.