aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorclarkzjw <[email protected]>2023-01-01 21:26:47 -0800
committerclarkzjw <[email protected]>2023-01-01 21:26:47 -0800
commit999e9e97d314e1702fa455abd9526042ef90b09d (patch)
tree895b5bec1507fa87cf0d3145ee00a9c488b96dce /jinwei.me/infra/variables.tf
parent1da9d7731b8cda1f433bb5b33a3922716844b1bb (diff)
downloadjinwei.me-999e9e97d314e1702fa455abd9526042ef90b09d.tar.gz
infra: add docker username and token into aws ssm
Diffstat (limited to 'jinwei.me/infra/variables.tf')
-rw-r--r--jinwei.me/infra/variables.tf12
1 files changed, 12 insertions, 0 deletions
diff --git a/jinwei.me/infra/variables.tf b/jinwei.me/infra/variables.tf
index 04c1331..f364ef4 100644
--- a/jinwei.me/infra/variables.tf
+++ b/jinwei.me/infra/variables.tf
@@ -88,3 +88,15 @@ variable "hetzner_storagebox" {
88 type = string 88 type = string
89 sensitive = true 89 sensitive = true
90} 90}
91
92variable "dockerhub_username" {
93 description = "dockerhub username"
94 type = string
95 sensitive = true
96}
97
98variable "dockerhub_token" {
99 description = "dockerhub token"
100 type = string
101 sensitive = true
102}
Powered by cgit v1.2.3 (git 2.41.0)