Skip to content

Commit

Permalink
ci: Update provider content format in Terraform files (#11)
Browse files Browse the repository at this point in the history
Changed provider content format in Terraform files to use <<-EOF instead of <<EOF
for consistency and future configurability.
  • Loading branch information
Excoriate authored Apr 26, 2024
1 parent 1c19c06 commit 87206a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ locals {
providers = {
cloudflare = {
enabled = get_env("TG_PROVIDER_CLOUDFLARE_ENABLED", true)
content = <<EOF
content = <<-EOF
provider "cloudflare" {
email = "${get_env("CLOUDFLARE_EMAIL", "atorres.ruiz@hotmail.com")}"
api_key = "${get_env("CLOUDFLARE_API_KEY", "0f2d823b38e5155df231b9cc5bedab1c8f3b8")}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ locals {
providers = {
random = {
enabled = get_env("TG_PROVIDER_RANDOM_ENABLED", true)
content = <<EOF
content = <<-EOF
provider "random" {
# The random provider does not require authentication, but this block is included
# for consistency and to allow future configuration if necessary.
Expand Down

0 comments on commit 87206a9

Please sign in to comment.