Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
ember-aws-ehipster
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Redmine
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Bertrand PINEL
ember-aws-ehipster
Commits
3d7522d3
Commit
3d7522d3
authored
6 years ago
by
Bertrand PINEL
Browse files
Options
Downloads
Patches
Plain Diff
Complete Terraform script after trying a full rebuild
parent
46d3e245
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
cloud/terraform/bucket.tf
+117
-0
117 additions, 0 deletions
cloud/terraform/bucket.tf
cloud/terraform/cloudfront.tf
+0
-123
0 additions, 123 deletions
cloud/terraform/cloudfront.tf
with
117 additions
and
123 deletions
cloud/terraform/bucket.tf
+
117
−
0
View file @
3d7522d3
...
@@ -25,3 +25,120 @@ resource "aws_s3_bucket" "staging" {
...
@@ -25,3 +25,120 @@ resource "aws_s3_bucket" "staging" {
error_document
=
"index.html"
error_document
=
"index.html"
}
}
}
}
locals
{
s3_origin_id
=
"S3Origin"
}
resource
"aws_cloudfront_distribution"
"s3_distribution_production"
{
origin
{
domain_name
=
"
${
element
(
split
(
"/
","${aws_s3_bucket.production.website_endpoint}"),2)}"
origin_id = "${local.s3_origin_id}"
custom_origin_config {
http_port = 80
https_port = 443
origin_protocol_policy = "http-only"
origin_ssl_protocols = ["SSLv3", "TLSv1.1", "TLSv1.2"]
}
}
enabled = true
http_version = "http2"
is_ipv6_enabled = true
comment = "Production ehipster ClondFront"
default_root_object = "index.html"
default_cache_behavior {
allowed_methods = ["DELETE", "GET", "HEAD", "OPTIONS", "PATCH", "POST", "PUT"]
compress = true
cached_methods = ["GET", "HEAD"]
target_origin_id = "${local.s3_origin_id}"
forwarded_values {
query_string = true
cookies {
forward = "none"
}
}
viewer_protocol_policy = "redirect-to-https"
min_ttl = 0
default_ttl = 3600
max_ttl = 86400
}
price_class = "PriceClass_All"
restrictions {
geo_restriction {
restriction_type = "none"
}
}
tags = {
Environment = "production"
}
viewer_certificate {
cloudfront_default_certificate = true
}
}
resource "aws_cloudfront_distribution" "s3_distribution_staging" {
origin {
domain_name = "${element(split("
/"
,"
$
{
aws_s3_bucket
.
staging
.
website_endpoint
}
"),2)}"
origin_id
=
"
${
local
.
s3_origin_id
}
"
custom_origin_config
{
http_port
=
80
https_port
=
443
origin_protocol_policy
=
"http-only"
origin_ssl_protocols
=
[
"SSLv3"
,
"TLSv1.1"
,
"TLSv1.2"
]
}
}
enabled
=
true
http_version
=
"http2"
is_ipv6_enabled
=
true
comment
=
"Staging ehipster ClondFront"
default_root_object
=
"index.html"
default_cache_behavior
{
allowed_methods
=
[
"DELETE"
,
"GET"
,
"HEAD"
,
"OPTIONS"
,
"PATCH"
,
"POST"
,
"PUT"
]
compress
=
true
cached_methods
=
[
"GET"
,
"HEAD"
]
target_origin_id
=
"
${
local
.
s3_origin_id
}
"
forwarded_values
{
query_string
=
true
cookies
{
forward
=
"none"
}
}
viewer_protocol_policy
=
"redirect-to-https"
min_ttl
=
0
default_ttl
=
3600
max_ttl
=
86400
}
price_class
=
"PriceClass_All"
restrictions
{
geo_restriction
{
restriction_type
=
"none"
}
}
tags
=
{
Environment
=
"staging"
}
viewer_certificate
{
cloudfront_default_certificate
=
true
}
}
This diff is collapsed.
Click to expand it.
cloud/terraform/cloudfront.tf
deleted
100644 → 0
+
0
−
123
View file @
46d3e245
locals
{
s3_origin_id
=
"S3Origin"
}
data
"aws_s3_bucket"
"production"
{
bucket
=
"
${
var
.
bucket_name_production
}
"
}
data
"aws_s3_bucket"
"staging"
{
bucket
=
"
${
var
.
bucket_name_staging
}
"
}
resource
"aws_cloudfront_distribution"
"s3_distribution_production"
{
origin
{
domain_name
=
"
${
element
(
split
(
"/
","${data.aws_s3_bucket.production.website_endpoint}"),2)}"
origin_id = "${local.s3_origin_id}"
custom_origin_config {
http_port = 80
https_port = 443
origin_protocol_policy = "http-only"
origin_ssl_protocols = ["SSLv3", "TLSv1.1", "TLSv1.2"]
}
}
enabled = true
http_version = "http2"
is_ipv6_enabled = true
comment = "Production ehipster ClondFront"
default_root_object = "index.html"
default_cache_behavior {
allowed_methods = ["DELETE", "GET", "HEAD", "OPTIONS", "PATCH", "POST", "PUT"]
compress = true
cached_methods = ["GET", "HEAD"]
target_origin_id = "${local.s3_origin_id}"
forwarded_values {
query_string = true
cookies {
forward = "none"
}
}
viewer_protocol_policy = "redirect-to-https"
min_ttl = 0
default_ttl = 3600
max_ttl = 86400
}
price_class = "PriceClass_All"
restrictions {
geo_restriction {
restriction_type = "none"
}
}
tags = {
Environment = "production"
}
viewer_certificate {
cloudfront_default_certificate = true
}
}
resource "aws_cloudfront_distribution" "s3_distribution_staging" {
origin {
domain_name = "${element(split("
/"
,"
$
{
data
.
aws_s3_bucket
.
staging
.
website_endpoint
}
"),2)}"
origin_id
=
"
${
local
.
s3_origin_id
}
"
custom_origin_config
{
http_port
=
80
https_port
=
443
origin_protocol_policy
=
"http-only"
origin_ssl_protocols
=
[
"SSLv3"
,
"TLSv1.1"
,
"TLSv1.2"
]
}
}
enabled
=
true
http_version
=
"http2"
is_ipv6_enabled
=
true
comment
=
"Staging ehipster ClondFront"
default_root_object
=
"index.html"
default_cache_behavior
{
allowed_methods
=
[
"DELETE"
,
"GET"
,
"HEAD"
,
"OPTIONS"
,
"PATCH"
,
"POST"
,
"PUT"
]
compress
=
true
cached_methods
=
[
"GET"
,
"HEAD"
]
target_origin_id
=
"
${
local
.
s3_origin_id
}
"
forwarded_values
{
query_string
=
true
cookies
{
forward
=
"none"
}
}
viewer_protocol_policy
=
"redirect-to-https"
min_ttl
=
0
default_ttl
=
3600
max_ttl
=
86400
}
price_class
=
"PriceClass_All"
restrictions
{
geo_restriction
{
restriction_type
=
"none"
}
}
tags
=
{
Environment
=
"staging"
}
viewer_certificate
{
cloudfront_default_certificate
=
true
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment