cloud-foundation-fabric/modules/container-registry/README.md

34 lines
997 B
Markdown
Raw Normal View History

2020-05-25 22:18:33 -07:00
# Google Cloud Container Registry Module
This module simplifies the creation of GCS buckets used by Google Container Registry.
## Example
```hcl
module "container_registry" {
source = "./modules/container-registry"
2020-05-25 22:18:33 -07:00
project_id = "myproject"
location = "EU"
iam = {
2020-05-25 22:18:33 -07:00
"roles/storage.admin" = ["group:cicd@example.com"]
}
}
# tftest:modules=1:resources=2
2020-05-25 22:18:33 -07:00
```
<!-- BEGIN TFDOC -->
## Variables
| name | description | type | required | default |
|---|---|:---: |:---:|:---:|
| project_id | Registry project id. | <code title="">string</code> | ✓ | |
| *iam* | IAM bindings for topic in {ROLE => [MEMBERS]} format. | <code title="map&#40;list&#40;string&#41;&#41;">map(list(string))</code> | | <code title="">{}</code> |
| *location* | Registry location. Can be US, EU, ASIA or empty | <code title="">string</code> | | <code title=""></code> |
2020-05-25 22:18:33 -07:00
## Outputs
| name | description | sensitive |
|---|---|:---:|
| bucket_id | ID of the GCS bucket created | |
<!-- END TFDOC -->