mirror of
https://github.com/dat515-2025/Group-8.git
synced 2026-03-22 15:12:08 +01:00
refactor(structure): move to 7project dir
This commit is contained in:
30
7project/tofu/modules/cloudflare/variables.tf
Normal file
30
7project/tofu/modules/cloudflare/variables.tf
Normal file
@@ -0,0 +1,30 @@
|
||||
variable "cloudflare_api_token" {
|
||||
type = string
|
||||
description = "Cloudflare API token"
|
||||
sensitive = true
|
||||
nullable = false
|
||||
}
|
||||
|
||||
variable "cloudflare_tunnel_name" {
|
||||
type = string
|
||||
description = "Cloudflare Tunnel Name"
|
||||
default = "tofu-tunnel"
|
||||
nullable = false
|
||||
}
|
||||
variable "cloudflare_email" {
|
||||
type = string
|
||||
description = "Cloudflare Email"
|
||||
nullable = false
|
||||
}
|
||||
|
||||
variable "cloudflare_domain" {
|
||||
type = string
|
||||
description = "Cloudflare Domain"
|
||||
nullable = false
|
||||
}
|
||||
|
||||
variable "cloudflare_account_id" {
|
||||
type = string
|
||||
description = "Cloudflare Account ID"
|
||||
nullable = false
|
||||
}
|
||||
Reference in New Issue
Block a user