gcloud.toml 1.2 KB

123456789101112131415161718192021222324252627282930
  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_POLLING_INTERVAL = "Time between DNS propagation check"
  23. GCE_PROPAGATION_TIMEOUT = "Maximum waiting time for DNS propagation"
  24. GCE_TTL = "The TTL of the TXT record used for the DNS challenge"
  25. [Links]
  26. API = "https://cloud.google.com/dns/api/v1/"
  27. GoClient = "https://github.com/googleapis/google-api-go-client"