# Google Cloud Container Registry Module This module simplifies the creation of GCS buckets used by Google Container Registry. ## Example ```hcl module "container_registry" { source = "./fabric/modules/container-registry" project_id = "myproject" location = "EU" iam = { "roles/storage.admin" = ["group:cicd@example.com"] } } # tftest modules=1 resources=2 ``` ## Variables | name | description | type | required | default | |---|---|:---:|:---:|:---:| | [project_id](variables.tf#L29) | Registry project id. | string | ✓ | | | [iam](variables.tf#L17) | IAM bindings for topic in {ROLE => [MEMBERS]} format. | map(list(string)) | | {} | | [location](variables.tf#L23) | Registry location. Can be US, EU, ASIA or empty. | string | | "" | ## Outputs | name | description | sensitive | |---|---|:---:| | [bucket_id](outputs.tf#L17) | ID of the GCS bucket created. | |