From 7eaa118d3113ce4e507c04a03b85bd6cac25f03e Mon Sep 17 00:00:00 2001 From: Tommy Parnell Date: Wed, 22 Jun 2022 18:21:22 -0400 Subject: [PATCH] fix strings --- provider.tf | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/provider.tf b/provider.tf index 6dad875..9624f04 100644 --- a/provider.tf +++ b/provider.tf @@ -1,28 +1,28 @@ terraform { required_providers { + digitalocean = { + source = "digitalocean/digitalocean" + version = "~> 2.0" + } cloudflare = { source = "cloudflare/cloudflare" version = "~> 3.0" - digitalocean = { - source = "digitalocean/digitalocean" - version = "~> 2.0" - } } } } variable "do_token" { - type = "string" + type = string } variable "cloudflare_email" { - type = "string" + type = string } variable "cloudflare_api_key" { - type = "string" + type = string } variable "cloudflare_zone" { - type = "string" + type = string }