credentials.tf 344 B

123456789101112131415
  1. # Declare Variables for Credentials
  2. variable "cloudflare_email" {
  3. description = "The email address for your Cloudflare account"
  4. type = string
  5. }
  6. variable "cloudflare_api_key" {
  7. description = "The API key for your Cloudflare account"
  8. type = string
  9. }
  10. variable "civo_token" {
  11. description = "Civo API Token"
  12. type = string
  13. }