Skip to content

Commit

Permalink
Fix variable invocation to var.var_name instead of var_name.
Browse files Browse the repository at this point in the history
  • Loading branch information
MantisClone committed Oct 24, 2023
1 parent 0a40316 commit 988bc58
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bankless-community/cloudflare/pages.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ resource "cloudflare_pages_project" "deployment_configs" {
ENVIRONMENT = "preview"
}
secrets = {
NEXT_PUBLIC_ALCHEMY_API_KEY = alchemy_api_key
NEXT_PUBLIC_BLOCKNATIVE_API_KEY = blocknative_api_key
NEXT_PUBLIC_INFURA_PROJECT_ID = infura_project_id
NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID = walletconnect_project_id
NEXT_PUBLIC_ALCHEMY_API_KEY = var.alchemy_api_key
NEXT_PUBLIC_BLOCKNATIVE_API_KEY = var.blocknative_api_key
NEXT_PUBLIC_INFURA_PROJECT_ID = var.infura_project_id
NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID = var.walletconnect_project_id
}
always_use_latest_compatibility_date = true
}
Expand Down

0 comments on commit 988bc58

Please sign in to comment.