{"id":18706974,"url":"https://github.com/terraform-google-modules/terraform-google-composer","last_synced_at":"2025-11-09T08:30:31.927Z","repository":{"id":37708077,"uuid":"250371707","full_name":"terraform-google-modules/terraform-google-composer","owner":"terraform-google-modules","description":"Manages Cloud Composer v1 and v2 along with option to manage networking","archived":false,"fork":false,"pushed_at":"2025-02-11T20:51:12.000Z","size":317,"stargazers_count":53,"open_issues_count":7,"forks_count":72,"subscribers_count":18,"default_branch":"main","last_synced_at":"2025-02-11T21:32:59.186Z","etag":null,"topics":["cft-terraform","data-analytics","operations"],"latest_commit_sha":null,"homepage":"https://registry.terraform.io/modules/terraform-google-modules/composer/google","language":"HCL","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/terraform-google-modules.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-03-26T21:06:01.000Z","updated_at":"2025-02-11T20:50:43.000Z","dependencies_parsed_at":"2023-12-13T22:29:51.564Z","dependency_job_id":"2cd0dd40-06b0-4eb9-9405-716104fe0551","html_url":"https://github.com/terraform-google-modules/terraform-google-composer","commit_stats":null,"previous_names":[],"tags_count":19,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/terraform-google-modules%2Fterraform-google-composer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/terraform-google-modules%2Fterraform-google-composer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/terraform-google-modules%2Fterraform-google-composer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/terraform-google-modules%2Fterraform-google-composer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/terraform-google-modules","download_url":"https://codeload.github.com/terraform-google-modules/terraform-google-composer/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239571542,"owners_count":19661164,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cft-terraform","data-analytics","operations"],"created_at":"2024-11-07T12:16:04.759Z","updated_at":"2025-11-09T08:30:31.883Z","avatar_url":"https://github.com/terraform-google-modules.png","language":"HCL","funding_links":[],"categories":[],"sub_categories":[],"readme":"# terraform-google-composer\n\nThis module makes it easy to create a Cloud Composer Environment. As the module develops, this README should be updated.\n\nThe resources/services/activations/deletions that this module will create/trigger are:\n\n- Create a GCP Composer Environment\n\n## Compatibility\n\nThis module is meant for use with Terraform 1.3+ and tested using Terraform 1.3+. If you find incompatibilities using Terraform \u003e=1.3, please open an issue.\n\n## Version\n\nCurrent version is 4.0. Upgrade guides:\n\n- [3.X -\u003e 4.0.](/docs/upgrading_to_v4.0.md)\n- [4.X -\u003e 5.0.](/docs/upgrading_to_v5.0.md)\n\n## Usage\nCloud Composer currently has two versions: V2 has greater flexibility in the Airflow core services\n(scheduler, webserver, worker) and has a more practical and scalable infrastructure. Therefore, we recommend prioritizing the\nuse of [V2](/modules/create_environment_v2/) for new environments.\n\nYou can find an overview of the product [here](https://cloud.google.com/composer/docs/composer-2/composer-overview)\nand the [list of major differences](https://cloud.google.com/composer/docs/concepts/versioning/composer-versioning-overview). Plans for Cloud Composer V1 end of support is documented [here](https://cloud.google.com/composer/docs/composer-versioning-overview#version-support-for-composer-1).\n\nSimple usage is as follows:\n\n```hcl\nmodule \"composer\" {\n  source  = \"terraform-google-modules/composer/google\"\n  version = \"~\u003e 6.1\"\n\n  project_id        = \"\u003cPROJECT ID\u003e\"\n  region            = \"us-central1\"\n  composer_env_name = \"composer-env-test\"\n  network           = \"test-network\"\n  subnetwork        = \"composer-subnet\"\n  enable_private_endpoint = false\n}\n```\n\nFunctional examples are included in the\n[examples](./examples/) directory.\n\n\u003c!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK --\u003e\n## Inputs\n\n| Name | Description | Type | Default | Required |\n|------|-------------|------|---------|:--------:|\n| composer\\_env\\_name | Name of Cloud Composer Environment | `string` | n/a | yes |\n| enable\\_private\\_endpoint | Configure public access to the cluster endpoint. | `bool` | `false` | no |\n| network | Network where Cloud Composer is created. | `string` | n/a | yes |\n| project\\_id | Project ID where Cloud Composer Environment is created. | `string` | n/a | yes |\n| region | Region where the Cloud Composer Environment is created. | `string` | n/a | yes |\n| subnetwork | Subetwork where Cloud Composer is created. | `string` | n/a | yes |\n| zone | Zone where the Cloud Composer Environment is created. | `string` | n/a | yes |\n\n## Outputs\n\n| Name | Description |\n|------|-------------|\n| airflow\\_uri | URI of the Apache Airflow Web UI hosted within the Cloud Composer Environment. |\n| composer\\_env\\_id | ID of Cloud Composer Environment. |\n| composer\\_env\\_name | The name of the Cloud Composer Environment. |\n| gcs\\_bucket | Google Cloud Storage bucket which hosts DAGs for the Cloud Composer Environment. |\n| gke\\_cluster | Google Kubernetes Engine cluster used to run the Cloud Composer Environment. |\n\n\u003c!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --\u003e\n\n## Requirements\n\nThese sections describe requirements for using this module.\n\n### Software\n\nThe following dependencies must be available:\n\n- [Terraform][terraform] v1.3+\n- [Terraform Provider for GCP][terraform-provider-gcp] plugin v5.3+\n\n### Service Account\n\nA service account with the following roles must be used to provision\nthe resources of this module:\n\n- Project Editor: `roles/editor`\n- Network Admin: `roles/compute.networkAdmin`\n- Instance Admin: `roles/compute.instanceAdmin.v1`\n- Service Account User: `roles/iam.serviceAccountUser`\n- Composer Worker: `roles/composer.worker`\n\nThe [Project Factory module][project-factory-module] and the\n[IAM module][iam-module] may be used in combination to provision a\nservice account with the necessary roles applied.\n\n### APIs\n\nA project with the following APIs enabled must be used to host the\nresources of this module:\n\n- Cloud Composer API: `composer.googleapis.com`\n\nThe [Project Factory module][project-factory-module] can be used to\nprovision a project with the necessary APIs enabled.\n\n## Contributing\n\nRefer to the [contribution guidelines](./CONTRIBUTING.md) for\ninformation on contributing to this module.\n\n[iam-module]: https://registry.terraform.io/modules/terraform-google-modules/iam/google\n[project-factory-module]: https://registry.terraform.io/modules/terraform-google-modules/project-factory/google\n[terraform-provider-gcp]: https://www.terraform.io/docs/providers/google/index.html\n[terraform]: https://www.terraform.io/downloads.html\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fterraform-google-modules%2Fterraform-google-composer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fterraform-google-modules%2Fterraform-google-composer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fterraform-google-modules%2Fterraform-google-composer/lists"}