aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorclarkzjw <[email protected]>2023-01-11 19:57:27 -0800
committerGitHub <[email protected]>2023-01-11 19:57:27 -0800
commitd0954f71aebc56619f39b73e3db21795bea47c56 (patch)
tree40702950cbd22c8071fb6ea1424731a664fda54b /jinwei.me/infra/dockerhub.tf
parent460aa7d6e1679c30c9600dcad89e3cffb8d4c92e (diff)
parent1863462e23f8d7099bb26c3a11d5ed9a2cce54cd (diff)
downloadjinwei.me-d0954f71aebc56619f39b73e3db21795bea47c56.tar.gz
Merge pull request #5 from clarkzjw/datadog
infra: add datadog
Diffstat (limited to 'jinwei.me/infra/dockerhub.tf')
-rw-r--r--jinwei.me/infra/dockerhub.tf6
1 files changed, 6 insertions, 0 deletions
diff --git a/jinwei.me/infra/dockerhub.tf b/jinwei.me/infra/dockerhub.tf
index 00a3bf2..f4c6bf5 100644
--- a/jinwei.me/infra/dockerhub.tf
+++ b/jinwei.me/infra/dockerhub.tf
@@ -9,3 +9,9 @@ resource "aws_ssm_parameter" "dockerhub_token" {
9 type = "SecureString" 9 type = "SecureString"
10 value = var.dockerhub_token 10 value = var.dockerhub_token
11} 11}
12
13resource "aws_ssm_parameter" "datadog_api_key" {
14 name = "/${local.name}/datadog/api_key"
15 type = "SecureString"
16 value = var.datadog_api_key
17}
Powered by cgit v1.2.3 (git 2.41.0)