56 lines
1.8 KiB
HCL
56 lines
1.8 KiB
HCL
/**
|
|
* Copyright 2020 Google LLC
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
variable "grpc_config" {
|
|
description = "The path to the full text of the Service Config YAML file."
|
|
type = string
|
|
default = null
|
|
}
|
|
|
|
variable "iam_roles" {
|
|
description = "Authoritative for a given role. Updates the IAM policy to grant a role to a list of members."
|
|
type = list(string)
|
|
default = []
|
|
}
|
|
|
|
variable "iam_members" {
|
|
description = "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."
|
|
type = map(list(string))
|
|
default = {}
|
|
}
|
|
|
|
variable "openapi_config" {
|
|
description = "The path to the full text of the OpenAPI YAML configuration. Either this, or both of grpc_config and protoc_output_base64 must be specified."
|
|
type = string
|
|
default = null
|
|
}
|
|
|
|
variable "project_id" {
|
|
description = "The project ID that the service belongs to."
|
|
type = string
|
|
default = null
|
|
}
|
|
|
|
variable "protoc_output_base64" {
|
|
description = "The path to the full contents of the Service Descriptor File generated by protoc."
|
|
type = string
|
|
default = null
|
|
}
|
|
|
|
variable "service_name" {
|
|
description = "The name of the service. Usually of the form '$apiname.endpoints.$projectid.cloud.goog'."
|
|
type = string
|
|
} |