style(external): format

This commit is contained in:
Khue Doan 2021-12-25 02:50:18 +07:00
parent 3cfd670424
commit dd2bdff255
2 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@ variable "cloudflare_email" {
}
variable "cloudflare_api_key" {
type = string
type = string
sensitive = true
}
@ -16,6 +16,6 @@ variable "b2_application_key_id" {
}
variable "b2_application_key" {
type = string
type = string
sensitive = true
}

View File

@ -34,13 +34,13 @@ terraform {
}
provider "cloudflare" {
email = var.cloudflare_email
email = var.cloudflare_email
api_key = var.cloudflare_api_key
}
provider "b2" {
application_key_id = var.b2_application_key_id
application_key = var.b2_application_key
application_key = var.b2_application_key
}
provider "kubernetes" {