gcloud.toml 1.3 KB

12345678910111213141516171819202122232425262728
  1. Name = "Google Cloud"
  2. Description = ''''''
  3. URL = "https://cloud.google.com"
  4. Code = "gcloud"
  5. Since = "v0.3.0"
  6. Example = '''
  7. GCE_PROJECT="gc-project-id" \
  8. GCE_SERVICE_ACCOUNT_FILE="/path/to/svc/account/file.json" \
  9. lego --email you@email.com --dns gcloud -d '*.example.com' -d example.com run
  10. '''
  11. [Configuration]
  12. [Configuration.Credentials]
  13. GCE_PROJECT = "Project name (by default, the project name is auto-detected by using the metadata service)"
  14. 'Application Default Credentials' = "[Documentation](https://cloud.google.com/docs/authentication/production#providing_credentials_to_your_application)"
  15. GCE_SERVICE_ACCOUNT_FILE = "Account file path"
  16. GCE_SERVICE_ACCOUNT = "Account"
  17. [Configuration.Additional]
  18. GCE_ALLOW_PRIVATE_ZONE = "Allows requested domain to be in private DNS zone, works only with a private ACME server (by default: false)"
  19. GCE_ZONE_ID = "Allows to skip the automatic detection of the zone"
  20. GCE_POLLING_INTERVAL = "Time between DNS propagation check in seconds (Default: 5)"
  21. GCE_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation in seconds (Default: 180)"
  22. GCE_TTL = "The TTL of the TXT record used for the DNS challenge in seconds (Default: 120)"
  23. [Links]
  24. API = "https://cloud.google.com/dns/api/v1/"
  25. GoClient = "https://github.com/googleapis/google-api-go-client"