Skip to content

Commit 405a66c

Browse files
author
dpf
committed
Run terraform fmt
1 parent 5d9cbde commit 405a66c

File tree

3 files changed

+37
-37
lines changed

3 files changed

+37
-37
lines changed

examples/basic-local-with-requirements/main.tf

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -12,26 +12,26 @@ provider "aws" {
1212
}
1313

1414
module "airflow" {
15-
source = "datarootsio/ecs-airflow/aws"
15+
source = "datarootsio/ecs-airflow/aws"
1616

17-
resource_prefix = "my-awesome-company"
18-
resource_suffix = "env"
17+
resource_prefix = "my-awesome-company"
18+
resource_suffix = "env"
1919

20-
vpc_id = "vpc-123456"
21-
public_subnet_ids = ["subnet-456789", "subnet-098765"]
20+
vpc_id = "vpc-123456"
21+
public_subnet_ids = ["subnet-456789", "subnet-098765"]
2222

23-
use_https = false
23+
use_https = false
2424

25-
airflow_executor = "Local"
26-
airflow_py_requirements_path = "./requirements.txt"
27-
airflow_variables = {
28-
AIRFLOW__WEBSERVER__NAVBAR_COLOR : "#e27d60"
29-
}
25+
airflow_executor = "Local"
26+
airflow_py_requirements_path = "./requirements.txt"
27+
airflow_variables = {
28+
AIRFLOW__WEBSERVER__NAVBAR_COLOR : "#e27d60"
29+
}
3030

31-
rds_username = "airflow"
32-
rds_password = "super-secret-pass"
33-
rds_availability_zone = "eu-west-1a"
34-
rds_deletion_protection = false
31+
rds_username = "airflow"
32+
rds_password = "super-secret-pass"
33+
rds_availability_zone = "eu-west-1a"
34+
rds_deletion_protection = false
3535
}
3636

3737
output "airflow_alb_dns" {

examples/basic-sequential-rbac/main.tf

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,22 @@ provider "aws" {
1212
}
1313

1414
module "airflow" {
15-
source = "datarootsio/ecs-airflow/aws"
15+
source = "datarootsio/ecs-airflow/aws"
1616

17-
resource_prefix = "my-awesome-company"
18-
resource_suffix = "env"
17+
resource_prefix = "my-awesome-company"
18+
resource_suffix = "env"
1919

20-
vpc_id = "vpc-123456"
21-
public_subnet_ids = ["subnet-456789", "subnet-098765"]
20+
vpc_id = "vpc-123456"
21+
public_subnet_ids = ["subnet-456789", "subnet-098765"]
2222

23-
airflow_executor = "Sequential"
24-
airflow_py_requirements_path = "./requirements.txt"
25-
airflow_authentication = "rbac"
26-
airflow_variables = {
27-
AIRFLOW__WEBSERVER__NAVBAR_COLOR : "#e27d60"
28-
}
23+
airflow_executor = "Sequential"
24+
airflow_py_requirements_path = "./requirements.txt"
25+
airflow_authentication = "rbac"
26+
airflow_variables = {
27+
AIRFLOW__WEBSERVER__NAVBAR_COLOR : "#e27d60"
28+
}
2929

30-
use_https = false
30+
use_https = false
3131
}
3232

3333
output "airflow_alb_dns" {

examples/basic-sequential/main.tf

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,20 +12,20 @@ provider "aws" {
1212
}
1313

1414
module "airflow" {
15-
source = "datarootsio/ecs-airflow/aws"
15+
source = "datarootsio/ecs-airflow/aws"
1616

17-
resource_prefix = "my-awesome-company"
18-
resource_suffix = "env"
17+
resource_prefix = "my-awesome-company"
18+
resource_suffix = "env"
1919

20-
vpc_id = "vpc-123456"
21-
public_subnet_ids = ["subnet-456789", "subnet-098765"]
20+
vpc_id = "vpc-123456"
21+
public_subnet_ids = ["subnet-456789", "subnet-098765"]
2222

23-
airflow_executor = "Sequential"
24-
airflow_variables = {
25-
AIRFLOW__WEBSERVER__NAVBAR_COLOR : "#e27d60"
26-
}
23+
airflow_executor = "Sequential"
24+
airflow_variables = {
25+
AIRFLOW__WEBSERVER__NAVBAR_COLOR : "#e27d60"
26+
}
2727

28-
use_https = false
28+
use_https = false
2929
}
3030

3131
output "airflow_alb_dns" {

0 commit comments

Comments
 (0)