aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorclarkzjw <[email protected]>2022-12-13 11:42:42 -0800
committerclarkzjw <[email protected]>2022-12-13 11:42:42 -0800
commit087bdf1a6a815de673d97c83ecb000ae80c1dae1 (patch)
treef15ef1e15153f5140812d20d714af164f99e0c36 /jinwei.me/infra/variables.tf
parent4a1d681d233e89e11fe02919de5eb6f9b0c020e9 (diff)
downloadjinwei.me-087bdf1a6a815de673d97c83ecb000ae80c1dae1.tar.gz
config: mount hetzner storagebox via samba
Diffstat (limited to 'jinwei.me/infra/variables.tf')
-rw-r--r--jinwei.me/infra/variables.tf18
1 files changed, 18 insertions, 0 deletions
diff --git a/jinwei.me/infra/variables.tf b/jinwei.me/infra/variables.tf
index 87283cc..04c1331 100644
--- a/jinwei.me/infra/variables.tf
+++ b/jinwei.me/infra/variables.tf
@@ -70,3 +70,21 @@ variable "cloudflare_account_id" {
70 type = string 70 type = string
71 sensitive = true 71 sensitive = true
72} 72}
73
74variable "hetzner_username" {
75 description = "Hetzner username"
76 type = string
77 sensitive = true
78}
79
80variable "hetzner_password" {
81 description = "Hetzner password"
82 type = string
83 sensitive = true
84}
85
86variable "hetzner_storagebox" {
87 description = "Hetzner storagebox url"
88 type = string
89 sensitive = true
90}
Powered by cgit v1.2.3 (git 2.41.0)