test
Some checks failed
terraform validation / Terraform (push) Has been cancelled

This commit is contained in:
Hubert Cornet 2025-01-13 20:53:58 +01:00
parent f519adf51b
commit 4728938a88
2 changed files with 9 additions and 9 deletions

View File

@ -6,12 +6,8 @@ terraform {
# organization = "example"
# token = "EMVLdieKXA6X-ifx0tW0ELNQGde5XrJ3D8T-qcEY"
cloudflare_email = "thedjinhn@gmail.com"
cloudflare_token = "EMVLdieKXA6X-ifx0tW0ELNQGde5XrJ3D8T-qcEY"
cloudflare_zone = "tips-of-mine.com"
workspaces {
name = "prod"
}
# workspaces {
# name = "prod"
# }
}
}

View File

@ -9,6 +9,10 @@ terraform {
}
provider "cloudflare" {
email = "${var.cloudflare_email}"
token = "${var.cloudflare_token}"
#email = "${var.cloudflare_email}"
# token = "${var.cloudflare_token}"
email = "thedjinhn@gmail.com"
token = "EMVLdieKXA6X-ifx0tW0ELNQGde5XrJ3D8T-qcEY"
zone = "tips-of-mine.com"
}