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

56 lines
2.7 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-11-05 23:18:57 -08: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 = "./fabric/modules/endpoints"
2020-06-23 09:22:54 -07:00
project_id = "my-project"
2020-06-24 09:12:10 -07:00
service_name = "YOUR-API.endpoints.YOUR-PROJECT-ID.cloud.goog"
2022-11-16 14:03:29 -08:00
openapi_config = { "yaml_path" = "configs/endpoints/openapi.yaml" }
iam = {
"servicemanagement.serviceController" = [
"serviceAccount:123456890-compute@developer.gserviceaccount.com"
]
2020-06-23 09:12:10 -07:00
}
}
2023-04-14 08:19:53 -07:00
# tftest modules=1 resources=2 files=openapi inventory=simple.yaml
```
```yaml
# tftest-file id=openapi path=configs/endpoints/openapi.yaml
swagger: "2.0"
info:
description: "A simple Google Cloud Endpoints API example."
title: "Endpoints Example"
version: "1.0.0"
host: "echo-api.endpoints.YOUR-PROJECT-ID.cloud.goog"
2020-06-23 09:12:10 -07:00
```
2020-11-05 23:18:57 -08: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:12:10 -07:00
<!-- BEGIN TFDOC -->
2020-06-23 09:12:10 -07:00
## Variables
| name | description | type | required | default |
|---|---|:---:|:---:|:---:|
2022-01-22 04:34:35 -08:00
| [openapi_config](variables.tf#L32) | The configuration for an OpenAPI endopoint. Either this or grpc_config must be specified. | <code title="object&#40;&#123;&#10; yaml_path &#61; string&#10;&#125;&#41;">object&#40;&#123;&#8230;&#125;&#41;</code> | ✓ | |
| [service_name](variables.tf#L45) | The name of the service. Usually of the form '$apiname.endpoints.$projectid.cloud.goog'. | <code>string</code> | ✓ | |
2023-05-13 20:51:46 -07:00
| [grpc_config](variables.tf#L17) | The configuration for a gRPC endpoint. Either this or 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&#40;&#123;&#8230;&#125;&#41;</code> | | <code>null</code> |
2022-01-22 04:34:35 -08:00
| [iam](variables.tf#L26) | IAM bindings for topic in {ROLE => [MEMBERS]} format. | <code>map&#40;list&#40;string&#41;&#41;</code> | | <code>&#123;&#125;</code> |
| [project_id](variables.tf#L39) | The project ID that the service belongs to. | <code>string</code> | | <code>null</code> |
2020-06-23 09:12:10 -07:00
## Outputs
| name | description | sensitive |
|---|---|:---:|
2022-01-22 04:34:35 -08:00
| [endpoints](outputs.tf#L17) | A list of Endpoint objects. | |
| [endpoints_service](outputs.tf#L22) | The Endpoint service resource. | |
| [service_name](outputs.tf#L27) | The name of the service.. | |
2020-06-23 09:12:10 -07:00
<!-- END TFDOC -->