Skip to content

Instantly share code, notes, and snippets.

@nickithewatt
Last active January 22, 2017 23:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nickithewatt/d8d3e93ea003c9b2af053c5880d2e012 to your computer and use it in GitHub Desktop.
Save nickithewatt/d8d3e93ea003c9b2af053c5880d2e012 to your computer and use it in GitHub Desktop.
variable fragment used within Let's Encrypt Terraform blog post
# Let's Encrypt Account Registration Config
# -- Production
# variable "demo_acme_server_url" { default = "https://acme.api.letsencrypt.org/directory"}
# variable "demo_acme_registration_email" { default = "your-email@your-company.com" }
# -- Staging
variable "demo_acme_server_url" { default = "https://acme-staging.api.letsencrypt.org/directory"}
variable "demo_acme_registration_email" { default = "your-email@example.com" }
# Domain against which certificate will be created
# i.e. letsencrypt-terraform.ocdemo.net
variable "demo_domain_name" { default = "ocdemo.net"}
variable "demo_domain_subdomain" { default = "letsencrypt-terraform"}
# Leave blank here, supply securely at runtime
variable "demo_acme_challenge_aws_access_key_id" { }
variable "demo_acme_challenge_aws_secret_access_key" { }
variable "demo_acme_challenge_aws_region" { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment