mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
19 lines
No EOL
336 B
HCL
19 lines
No EOL
336 B
HCL
variable "cloudflare_account_email" {
|
|
type = string
|
|
sensitive = false
|
|
}
|
|
|
|
variable "cloudflare_account_id" {
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
variable "cloudflare_api_key" {
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
provider "cloudflare" {
|
|
email = var.cloudflare_account_email
|
|
api_key = var.cloudflare_api_key
|
|
} |