dnscontrol/docs/_providers/gcloud.md

56 lines
2 KiB
Markdown
Raw Normal View History

2017-01-12 04:02:45 +08:00
---
name: "Google cloud DNS"
layout: default
jsId: GCLOUD
---
# Google cloud DNS Provider
## Configuration
2017-03-13 02:21:08 +08:00
For Google cloud authentication, DNSControl requires a JSON 'Service Account Key' for your project. Copy the full JSON object into your `creds.json` like so:
2017-01-12 04:02:45 +08:00
{% highlight json %}
{
2017-03-13 02:21:08 +08:00
"gcloud":{
"type": "service_account",
"project_id": "mydnsproject",
"private_key_id": "a05483aa208364c56716b384efff33c0574d365b",
"private_key": "-----BEGIN PRIVATE KEY-----\nMIIEvAIBADL2dhlY7YZbx7tpsfksOX\nih0DbxhiQ==\n-----END PRIVATE KEY-----\n",
"client_email": "dnscontrolacct@mydnsproject.iam.gserviceaccount.com",
"client_id": "107996619231234567750",
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"token_uri": "https://accounts.google.com/o/oauth2/token",
"auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
"client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/x509/dnscontrolsdfsdfsdf%40craigdnstest.iam.gserviceaccount.com"
}
2017-01-12 04:02:45 +08:00
}
{% endhighlight %}
See [the Activation section](#activation) for some tips on obtaining these credentials.
## Metadata
2017-03-13 02:21:08 +08:00
This provider does not recognize any special metadata fields unique to google cloud dns.
2017-01-12 04:02:45 +08:00
## Usage
Use this provider like any other DNS Provider:
{% highlight js %}
var REG_NAMECOM = NewRegistrar("name.com","NAMEDOTCOM");
var GCLOUD = NewDnsProvider("gcloud", GCLOUD);
D("example.tld", REG_NAMECOM, DnsProvider(GCLOUD),
A("test","1.2.3.4")
);
{%endhighlight%}
## Activation
2017-03-13 02:21:08 +08:00
1. Go to your app-engine console and select the appropriate project.
2. Go to "API Manager > Credentials", and create a new "Service Account Key"
2017-01-12 04:02:45 +08:00
2017-03-13 02:21:08 +08:00
<img src="{{ site.github.url }}/assets/gcloud-json.png" alt="New Service Account" style="width: 900px;"/>
2017-01-12 04:02:45 +08:00
2017-03-13 02:21:08 +08:00
3. Choose an existing user, or create a new one. The user requires "App Engine Admin" rights.
4. Download the JSON key and copy it into your `creds.json` under the name of your gcloud provider.