-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
terraform: disable cloudfront root object for crates.io on staging
There is a concern that setting the default root object to index.html for the crates.io webapp causes Fastboot to break: rust-lang/crates.io#1937 (comment) This adds a temporary feature flag to remove the default root object just from staging, without affecting production. After testing is done the feature flag will have to be removed, either disabling or enabling the root object both on staging and production.
- Loading branch information
1 parent
a20506e
commit e5223b4
Showing
3 changed files
with
8 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,3 +36,7 @@ variable "logs_bucket" { | |
type = string | ||
default = null | ||
} | ||
|
||
variable "temp_flag_root_object" { | ||
type = bool | ||
} |