aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorclarkzjw <[email protected]>2022-12-10 21:23:20 -0800
committerclarkzjw <[email protected]>2022-12-10 21:23:20 -0800
commite2327197c423e23628701dca328fbd05693e7a61 (patch)
tree00b71ed51ef293786c711dc58877fe4ba1ef7ea2 /jinwei.me/infra/variables.tf
parente24fcdb3c72c83dd20521bac8b2c29847ed67865 (diff)
downloadjinwei.me-e2327197c423e23628701dca328fbd05693e7a61.tar.gz
infra: add s3 acl
Diffstat (limited to 'jinwei.me/infra/variables.tf')
-rw-r--r--jinwei.me/infra/variables.tf13
1 files changed, 9 insertions, 4 deletions
diff --git a/jinwei.me/infra/variables.tf b/jinwei.me/infra/variables.tf
index 575b118..9145176 100644
--- a/jinwei.me/infra/variables.tf
+++ b/jinwei.me/infra/variables.tf
@@ -51,7 +51,12 @@ variable "ec2_instance_type" {
51 default = "t2.micro" 51 default = "t2.micro"
52} 52}
53 53
54#variable "ec2_key_name" { 54variable "site_domain" {
55# description = "Name of key pair to log into the EC2 instance. The key pair must already exist." 55 type = string
56# type = string 56 default = "jinwei.me"
57#} 57}
58
59variable "s3_cdn_name" {
60 type = string
61 default = "static"
62}
Powered by cgit v1.2.3 (git 2.41.0)