Skip to content

Commit 587f1cd

Browse files
authored
chore: corrected errors in README example for airflow_connection module (#67)
1 parent b44bb6f commit 587f1cd

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

modules/airflow_connection/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ This optional module is used to create a Cloud Composer Connection.
44

55
```hcl
66
module "connection" {
7-
source = "terraform-google-modules/composer/google//modules/airflow_connection"
8-
project = "project-123"
9-
environment = "Composer-Prod-Env"
10-
location = "us-central1"
11-
id = "my-database"
12-
host = var.host
13-
login = var.user
14-
password = var.password
7+
source = "terraform-google-modules/composer/google//modules/airflow_connection"
8+
project_id = "project-123"
9+
composer_env_name = "Composer-Prod-Env"
10+
region = "us-central1"
11+
id = "my-database"
12+
host = var.host
13+
login = var.user
14+
password = var.password
1515
}
1616
```
1717

0 commit comments

Comments
 (0)