aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorclarkzjw <[email protected]>2022-12-11 21:01:52 -0800
committerclarkzjw <[email protected]>2022-12-11 21:01:52 -0800
commit02288734f6ca91c4a39df80435c0151f1a2dfa86 (patch)
tree2dabc5ec3c0698a0ec9036dbac6c0a0731c94c1c
parenteb52fbed996d90ca43391336f0dbbb89f5743eef (diff)
downloadjinwei.me-02288734f6ca91c4a39df80435c0151f1a2dfa86.tar.gz
vcs: test terraform cloud integration
-rw-r--r--jinwei.me/infra/s3.tf7
1 files changed, 7 insertions, 0 deletions
diff --git a/jinwei.me/infra/s3.tf b/jinwei.me/infra/s3.tf
index 6c39e4c..a47b7b1 100644
--- a/jinwei.me/infra/s3.tf
+++ b/jinwei.me/infra/s3.tf
@@ -52,3 +52,10 @@ resource "aws_s3_object" "check" {
52 content = "OK" 52 content = "OK"
53 content_type = "text/plain" 53 content_type = "text/plain"
54} 54}
55
56resource "aws_s3_object" "ping" {
57 bucket = aws_s3_bucket.static.id
58 key = "ping"
59 content = "pong"
60 content_type = "text/plain"
61}
Powered by cgit v1.2.3 (git 2.41.0)