-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow for s3 backend path style #53
Changes from 3 commits
249d8d2
f4a5750
6ce1ff6
149b08d
95eab83
954726c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
# Custom | ||
.envrc | ||
.env | ||
.venv | ||
tmp/ | ||
|
||
.DS_Store | ||
|
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
|
@@ -60,6 +60,7 @@ terraform { | |||
bucket = "<bucket>" | ||||
key = "<key>" | ||||
dynamodb_table = "<dynamodb_table>" | ||||
use_path_style = "<use_path_style>" | ||||
|
||||
access_key = "test" | ||||
secret_key = "test" | ||||
|
@@ -220,6 +221,7 @@ def generate_s3_backend_config() -> str: | |||
"key": "terraform.tfstate", | ||||
"dynamodb_table": "tf-test-state", | ||||
"region": get_region(), | ||||
"use_path_style": "true", | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm not sure everyone would be happy if we pin this option here or force them to add it explicitly with false when they don't need it. Line 136 in 07643c4
(Sidenote: users use tflocal in combination with real s3 backends too, so we must not break those setups either.) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Agreed, I will work on that! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I set the default to false and I am reusing the |
||||
"endpoints": { | ||||
"s3": get_service_endpoint("s3"), | ||||
"iam": get_service_endpoint("iam"), | ||||
|
@@ -247,6 +249,9 @@ def generate_s3_backend_config() -> str: | |||
get_or_create_bucket(configs["bucket"]) | ||||
get_or_create_ddb_table(configs["dynamodb_table"], region=configs["region"]) | ||||
result = TF_S3_BACKEND_CONFIG | ||||
if is_tf_legacy: | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nice backward compatibility proofing. I believe we should introduce the same logic for the override file too if we address this here. Fancy to add it somewhere here? Line 136 in 07643c4
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I looked at that, and if I understand properly, you are suggesting to change the configuration of the aws provider from It can be quite the complex problem to define which version of a provider will be used as all modules are looked at by terraform before deciding on the providers version. Let me know if I am missing something 🤔 |
||||
result = result.replace("use_path_style", "force_path_style") | ||||
configs["force_path_style"] = configs.pop("use_path_style") | ||||
for key, value in configs.items(): | ||||
if isinstance(value, bool): | ||||
value = str(value).lower() | ||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This must be added dynamically, see my other comment below why.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To keep transparency and a similar style, I left it here, but changed the default to false.