Skip to content

Commit

Permalink
Fix a type
Browse files Browse the repository at this point in the history
  • Loading branch information
amarouane-ABDELHAK committed May 21, 2024
1 parent ffc2879 commit ca40119
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion infrastructure/data.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ data "aws_subnets" "private_subnets_id" {
}

data "aws_s3_bucket" "airflow_bucket" {
bucket = var.state_backetname
bucket = var.state_bucketname
}

data "aws_subnets" "public_subnets_id" {
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ locals {
},
{
name = "AIRFLOW__LOGGING__REMOTE_BASE_LOG_FOLDER"
value = "s3://${var.state_backetname}/remote_base_log_folder/"
value = "s3://${var.state_bucketname}/remote_base_log_folder/"
},
{
name = "X_AIRFLOW_SQS_CELERY_BROKER_PREDEFINED_QUEUE_URL"
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/varaibles.tf
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ variable "public_subnets_tagname" {
}


variable "state_backetname" {
variable "state_bucketname" {
description = "Bucket name without prefixing it with 's3://'. This bucket will be used to hold dags,logs and terraform states"
}

Expand Down

0 comments on commit ca40119

Please sign in to comment.