-
Notifications
You must be signed in to change notification settings - Fork 366
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
All Languages - update Template S3 Terraform Backend - pages/public_c… #5431
Conversation
…loud/compute/use_object_storage_terraform_backend_state
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.
Top, thank you!
Thanks for the PR, I will update it to add the information for old terraform version |
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.
add compatibility with old version
The modification will only work for new version, not old version. Please add this change: Before terraform version 1.6.0: terraform {
backend "s3" {
bucket = "terraform-state-hp"
key = "terraform.tfstate"
region = "gra"
#or sbg or any activated high performance storage region
endpoint = "s3.gra.perf.cloud.ovh.net"
skip_credentials_validation = true
skip_region_validation = true
}
} After terraform version 1.6.0: terraform {
backend "s3" {
bucket = "terraform-state-hp"
key = "terraform.tfstate"
region = "gra"
# sbg or any activated high performance storage region
endpoints = {
s3 = "https://s3.gra.perf.cloud.ovh.net/"
}
skip_credentials_validation = true
skip_region_validation = true
skip_requesting_account_id = true
}
} |
FYI the information about the terraform version is in the hashicorp doc: |
@scraly thanks for the link to OVH's documentation. I've updated the version restriction to all files and also updated the "updated" date again. |
Thanks, it's good for me :-) The only thing to change is the date of the modification :) |
pages/public_cloud/compute/use_object_storage_terraform_backend_state/guide.de-de.md
Show resolved
Hide resolved
Thank you for your contribution @Mx7ca |
…loud/compute/use_object_storage_terraform_backend_state
This PR fixes #5430 in the documentation of all existing languages.