Questions tagged [google-cloud-dns]

Google Cloud DNS is a high performance, resilient, and global DNS service that provides a cost effective way to make your applications and services available to your users.

Google Cloud DNS is a high performance, resilient, and global DNS service that provides a cost effective way to make your applications and services available to your users.

This programmable, authoritative DNS service can be used to easily publish and manage DNS records using the same infrastructure relied upon by Google.

Official site

306 questions
1
vote
1 answer

GCloud VM Website doesn't work with HTTPS when connected with a domain name

I have a virtual machine (VM) running with Google Compute Engine. This website is hosting a Node.JS website using Socket.io. When I connect directly to the website using its IP, it works fine. I then used Google's built-in Cloud DNS to make a zone…
1
vote
0 answers

How to create a zone with specific IAM permissions in Cloud DNS

I'm getting an error trying to set DNS zone permissions. I'm following official instruction for a feature released in GA on Dec 5th 2022 "Cloud DNS per resource IAM permissions". I'm trying to resolve issue described in this post. Unfortunately I…
1
vote
2 answers

Waiting for Certificate provisioning when mapping custom domain to Cloud Run

Trying to map a custom domain to an app deployed on Cloud Run. Running into this issue: "Waiting for certificate provisioning. You must configure your DNS records for certificate issuance to begin." Referred to this issue: Google Cloud Run - Domain…
qinjas
  • 11
  • 1
1
vote
1 answer

GCP Private DNS Zone not taking effect on GKE pods

I have a private Kubernetes cluster. The nodes of the cluster reside on a VPC. On that VPC I attach a private DNS zone. If I add a node to the VPC the DNS records, defined at the private DNS zone, they would be resolved by using an utility like…
1
vote
2 answers

How to redirect traffic from port 80 to 8080 - Load balancer - Cloud DNS

I have a requirement similar to this post, Google cloud load balancer port 80, to VM instances serving port 9000 I like one of the answers (not the accepted), but how to do it ? or is there an alternate way ? " If your app is HTTP-based (looks like…
1
vote
2 answers

How to configure DNS record on Google Cloud

I have a domain with Google, and I want to configure DNS on Google Cloud to use "www.example.com", and not "sites.google.com/...."
Anthony
  • 11
  • 1
1
vote
1 answer

GCP DNS query logging not working - gcloud dns managed-zones update zonename --log-dns-queries

On https://cloud.google.com/dns/docs/monitoring documentation page there is a command to enable GCP DNS query logging that does not work: gcloud dns managed-zones update zonename --log-dns-queries When command from documentation is issued following…
1
vote
1 answer

Make ingresses/services publicly DNS resolvable on GKE

We have a GKE cluster set up on Google Cloud and we want new ingress routes to be automatically resolvable under the according subdomain. We have a subdomain (lets say app-dev.company.com) which already resolves to the public IP of our ingress…
1
vote
1 answer

Cannot map domain to cluster in GCP

I am just starting out with kubernetes. I have created a simple app which is working fine with the external IP address. It's a mongodb-express with mongo-db backend. I am trying to get a domain name mapped to it, instead of the IP…
Abhishek Rai
  • 2,159
  • 3
  • 18
  • 38
1
vote
1 answer

Terraform errors deploying google_dns_managed_zone with rsasha1

First things first I understand RSA SHA1 is not recommended but is required for this particular use case. Second, I am able to deploy the following without issue: resource "google_dns_managed_zone" "example-zone" { name =…
1
vote
1 answer

How long does it take for GCP cloudDNS A records to be globally lookupable?

I used Terraform to create a GCP CloudDNS A record for an MIG I've deployed. In the console, I can see the zone details for the hosted zone I had created, and when I click on this, I can see the DNS A record with the FQDN, TTL 300 and the IPV4…
volvox
  • 3,014
  • 16
  • 51
  • 80
1
vote
1 answer

How to log in with a Google Service account in the Google Cloud?

I created a service account and generated a json key. I want to execute a get request to get a project. I using https://cloud.google.com/dns/docs/reference/v1/projects/get public static Dns createDnsService() throws IOException,…
Igor
  • 47
  • 5
1
vote
1 answer

How to create a dns name in GCP and make it work for load balancer?

I created a load balancer in GCP and wrapped the ip address with some dns name. But when I hit the dns name, it does not work. I verified at console and could see, 'cloud dns' section of gcp, having. loadbalancergcp.example.com. A 300…
1
vote
1 answer

google-cloud-platform: External DNS configuration is not working

Basic Info: Region: us-west1 Zone: us-west1-a DNS internal IP address: 10.36.2.15 (Windows Server2016, created from marketplace image) VCP name: Default I have followed below link to configured external DNS in…
1
vote
1 answer

How to use one GCP load balancer for two subdomains?

I want to create a LAMP site that also has a separate bucket on a subdomain. Basically, mysite.com and downloads.mysite.com. And, I want to put them both on the same load balancer and SSL certificate. I know how to create the http(s) load balancer…