This module creates a DNS record on the .cloud.goog domain using Cloud Endpoints.
This module creates a DNS record on the .cloud.goog
domain using Cloud Endpoints.
The endpoint service is bound to any given IP address and gives you a known DNS record in the form of: NAME.endpoints.PROJECT.cloud.goog
Some example use cases include:
This module is meant for use with Terraform 0.13. If you haven’t
upgraded and need a Terraform
0.12.x-compatible version of this module, the last released version
intended for Terraform 0.12.x is v2.0.1.
module "cloud-ep-dns" {
source = "terraform-google-modules/endpoints-dns/google"
project = "${data.google_client_config.current.project}"
name = "myservice"
external_ip = "${google_compute_instance.default.network_interface.0.access_config.0.assigned_nat_ip}"
}