Skip to content

Commit

Permalink
Move variables to variable.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
MantisClone committed Oct 17, 2023
1 parent c580198 commit 0a40316
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 0 additions & 5 deletions bankless-community/cloudflare/pages.tf
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
variable "alchemy_api_key" { sensitive = true }
variable "blocknative_api_key" { sensitive = true }
variable "infura_project_id" { sensitive = true }
variable "walletconnect_project_id" { sensitive = true }

resource "cloudflare_pages_project" "deployment_configs" {
account_id = local.cloudflare_account_id
name = local.cloudflare_account_name
Expand Down
4 changes: 4 additions & 0 deletions bankless-community/cloudflare/variables.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
variable "cloudflare_api_token" {
sensitive = true
}
variable "alchemy_api_key" { sensitive = true }
variable "blocknative_api_key" { sensitive = true }
variable "infura_project_id" { sensitive = true }
variable "walletconnect_project_id" { sensitive = true }

0 comments on commit 0a40316

Please sign in to comment.