-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathmain.tf
121 lines (101 loc) · 2.57 KB
/
main.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
###
# Providers
#
provider "aws" {
access_key = "${var.aws_access_key}"
secret_key = "${var.aws_secret_key}"
region = "${var.region}"
}
provider "aws" {
alias = "us-east-1"
access_key = "${var.aws_access_key}"
secret_key = "${var.aws_secret_key}"
region = "us-east-1"
}
###
# Modules
#
module "basic_auth" {
source = "../../module"
basic_auth_credentials = "${var.basic_auth_credentials}"
# All Lambda@Edge functions must be put on us-east-1.
providers = {
aws = "aws.us-east-1"
}
}
###
# S3
#
resource "aws_s3_bucket" "test" {
bucket = "${var.s3_bucket_name}"
acl = "private"
policy = <<EOF
{
"Id": "PolicyForCloudFrontPrivateContent",
"Statement": [
{
"Action": "s3:GetObject",
"Effect": "Allow",
"Principal": {
"AWS": "${aws_cloudfront_origin_access_identity.test.iam_arn}"
},
"Resource": "arn:aws:s3:::${var.s3_bucket_name}/*",
"Sid": "Grant a CloudFront Origin Identity access to support private content"
}
],
"Version": "2012-10-17"
}
EOF
}
resource "aws_s3_bucket_object" "test" {
bucket = "${aws_s3_bucket.test.id}"
key = "index.html"
source = "index.html"
content_type = "text/html"
etag = "${md5(file("index.html"))}"
}
###
# CloudFront
#
resource "aws_cloudfront_origin_access_identity" "test" {}
resource "aws_cloudfront_distribution" "test" {
origin {
domain_name = "${aws_s3_bucket.test.bucket_regional_domain_name}"
origin_id = "S3-${aws_s3_bucket.test.id}"
s3_origin_config {
origin_access_identity = "${aws_cloudfront_origin_access_identity.test.cloudfront_access_identity_path}"
}
}
enabled = true
is_ipv6_enabled = true
comment = "aws-lambda-edge-basic-auth-terraform minimal example"
default_root_object = "index.html"
default_cache_behavior {
allowed_methods = ["GET", "HEAD"]
cached_methods = ["GET", "HEAD"]
target_origin_id = "S3-${aws_s3_bucket.test.id}"
viewer_protocol_policy = "redirect-to-https"
min_ttl = 0
default_ttl = 3600
max_ttl = 86400
forwarded_values {
query_string = true
cookies {
forward = "all"
}
}
lambda_function_association {
event_type = "viewer-request"
lambda_arn = "${module.basic_auth.lambda_arn}"
include_body = false
}
}
viewer_certificate {
cloudfront_default_certificate = true
}
restrictions {
geo_restriction {
restriction_type = "none"
}
}
}