gcloud.toml 1.3 KB

12345678910111213141516171819202122232425262728293031
  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" GCE_SERVICE_ACCOUNT_FILE="/path/to/svc/account/file.json" lego \
  8. --email="abc@email.com" \
  9. --domains="example.com" \
  10. --dns="gcloud" \
  11. --path="${HOME}/.lego" \
  12. run
  13. '''
  14. [Configuration]
  15. [Configuration.Credentials]
  16. GCE_PROJECT = "Project name (by default, the project name is auto-detected by using the metadata service)"
  17. 'Application Default Credentials' = "[Documentation](https://cloud.google.com/docs/authentication/production#providing_credentials_to_your_application)"
  18. GCE_SERVICE_ACCOUNT_FILE = "Account file path"
  19. GCE_SERVICE_ACCOUNT = "Account"
  20. [Configuration.Additional]
  21. GCE_ALLOW_PRIVATE_ZONE = "Allows requested domain to be in private DNS zone, works only with a private ACME server (by default: false)"
  22. GCE_ZONE_ID = "Allows to skip the automatic detection of the zone"
  23. GCE_POLLING_INTERVAL = "Time between DNS propagation check"
  24. GCE_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation"
  25. GCE_TTL = "The TTL of the TXT record used for the DNS challenge"
  26. [Links]
  27. API = "https://cloud.google.com/dns/api/v1/"
  28. GoClient = "https://github.com/googleapis/google-api-go-client"