cloud-foundation-fabric/modules/endpoints/README.md

44 lines
2.5 KiB
Markdown
Raw Normal View History

2020-06-23 09:22:54 -07:00
# Google Cloud Endpoints
2020-06-23 09:12:10 -07:00
2020-06-24 01:31:10 -07:00
This module allows simple management of ['Google Cloud Endpoints'](https://cloud.google.com/endpoints/) services. It supports creating ['OpenAPI'](https://cloud.google.com/endpoints/docs/openapi) or ['gRPC'](https://cloud.google.com/endpoints/docs/grpc/about-grpc) endpoints.
2020-06-23 09:12:10 -07:00
## Examples
### OpenAPI
```hcl
module "endpoint" {
source = "../../modules/endpoint"
2020-06-23 09:22:54 -07:00
project_id = "my-project"
service_name = "my-project"
openapi_config = "echo-api.endpoints.YOUR-PROJECT-ID.cloud.goog"
2020-06-23 09:12:10 -07:00
iam_roles = ["servicemanagement.serviceController"]
iam_members = {
"servicemanagement.serviceController" = ["serviceAccount:PROJECT_NUMBER-compute@developer.gserviceaccount.com"]
}
}
```
2020-06-24 06:52:30 -07:00
[Here](https://github.com/GoogleCloudPlatform/python-docs-samples/blob/master/endpoints/getting-started/openapi.yaml) you can find an example of an openapi.yaml file. Once created the endpoint, remember to activate the service at project level.
2020-06-23 09:22:54 -07:00
2020-06-23 09:12:10 -07:00
<!-- BEGIN TFDOC -->
## Variables
| name | description | type | required | default |
|---|---|:---: |:---:|:---:|
2020-06-24 06:52:30 -07:00
| grpc_config | The configuration for a gRPC enpoint. Either this, openapi_config must be specified. | <code title="object&#40;&#123;&#10;yaml_path &#61; string&#10;protoc_output_path &#61; string&#10;&#125;&#41;">object({...})</code> | ✓ | |
| openapi_config | The configuration for an OpenAPI endopoint. Either this, grpc_config must be specified. | <code title="object&#40;&#123;&#10;yaml_path &#61; string&#10;&#125;&#41;">object({...})</code> | ✓ | |
2020-06-23 09:12:10 -07:00
| service_name | The name of the service. Usually of the form '$apiname.endpoints.$projectid.cloud.goog'. | <code title="">string</code> | ✓ | |
| *iam_members* | Authoritative for a given role. Updates the IAM policy to grant a role to a list of members. Other roles within the IAM policy for the instance are preserved. | <code title="map&#40;list&#40;string&#41;&#41;">map(list(string))</code> | | <code title="">{}</code> |
| *iam_roles* | Authoritative for a given role. Updates the IAM policy to grant a role to a list of members. | <code title="list&#40;string&#41;">list(string)</code> | | <code title="">[]</code> |
| *project_id* | The project ID that the service belongs to. | <code title="">string</code> | | <code title="">null</code> |
## Outputs
| name | description | sensitive |
|---|---|:---:|
| endpoints | A list of Endpoint objects. | |
2020-06-24 06:52:30 -07:00
| endpoints_service | The Endpoint service resource. | |
2020-06-23 09:12:10 -07:00
| service_name | The name of the service.. | |
<!-- END TFDOC -->