diff options
author | clarkzjw <[email protected]> | 2022-12-11 21:01:52 -0800 |
---|---|---|
committer | clarkzjw <[email protected]> | 2022-12-11 21:01:52 -0800 |
commit | 02288734f6ca91c4a39df80435c0151f1a2dfa86 (patch) | |
tree | 2dabc5ec3c0698a0ec9036dbac6c0a0731c94c1c | |
parent | eb52fbed996d90ca43391336f0dbbb89f5743eef (diff) | |
download | jinwei.me-02288734f6ca91c4a39df80435c0151f1a2dfa86.tar.gz |
vcs: test terraform cloud integration
-rw-r--r-- | jinwei.me/infra/s3.tf | 7 |
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 | |||
56 | resource "aws_s3_object" "ping" { | ||
57 | bucket = aws_s3_bucket.static.id | ||
58 | key = "ping" | ||
59 | content = "pong" | ||
60 | content_type = "text/plain" | ||
61 | } | ||