try pulling secrets from gcloud for tf

This commit is contained in:
41666 2020-12-06 22:36:11 -05:00
parent 441b24045d
commit d8bda6fb43
3 changed files with 25 additions and 11 deletions

View file

@ -32,11 +32,6 @@ terraform {
}
}
variable "cloudflare_email" {
type = string
sensitive = true
}
variable "cloudflare_api_token" {
type = string
sensitive = true
@ -53,7 +48,6 @@ variable "cloudflare_zone_id" {
}
provider "cloudflare" {
email = var.cloudflare_email
api_token = var.cloudflare_api_token
account_id = var.cloudflare_account_id
}