credentials.tf 325 B

12345678910111213
  1. # Cloudflare Credentials
  2. # ---
  3. # Credential Variables needed for Cloudflare
  4. # Cloudflare Config
  5. variable "cloudflare_email" {
  6. description = "The email address for your Cloudflare account"
  7. type = string
  8. }
  9. variable "cloudflare_api_key" {
  10. description = "The API key for your Cloudflare account"
  11. type = string
  12. }