Skip to content

All Languages - update Template S3 Terraform Backend - pages/public_c… #5431

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

Merged
merged 18 commits into from
Dec 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: 'Using OVHcloud Object Storage as Terraform Backend to store your Terraform state (EN)'
excerpt: 'Find out how to use an OVHcloud Object Storage as a Terraform Backend to store your Terraform state'
updated: 2023-07-31
updated: 2023-11-30
---

## Objective
Expand Down Expand Up @@ -77,16 +77,35 @@ $ aws s3 ls

Create a `backend.tf` file with the following content:

Before Terraform version 1.6.0:
```yaml
terraform {
backend "s3" {
bucket = "terraform-state-hp"
key = "terraform.tfstate"
region = "gra"
#or sbg or any activated high performance storage region
# sbg or any activated high performance storage region
endpoint = "s3.gra.perf.cloud.ovh.net"
skip_credentials_validation = true
skip_region_validation = true
skip_region_validation = true
}
}
```

After Terraform version 1.6.0:
```yaml
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
}
}
```
Expand Down Expand Up @@ -126,4 +145,4 @@ Now you can define your Terraform configuration files and providers and after ru

## Go further

Join our community of users on <https://community.ovh.com/en/>.
Join our community of users on <https://community.ovh.com/en/>.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: 'Using OVHcloud High Performance (S3) Object Storage as Terraform Backend to store your Terraform state'
excerpt: 'Find out how to use an OVHcloud High Performance (S3) Object Storage as a Terraform Backend to store your Terraform state'
updated: 2023-07-31
updated: 2023-11-30
---

## Objective
Expand Down Expand Up @@ -77,16 +77,35 @@ $ aws s3 ls

Create a `backend.tf` file with the following content:

Before Terraform version 1.6.0:
```yaml
terraform {
backend "s3" {
bucket = "terraform-state-hp"
key = "terraform.tfstate"
region = "gra"
#or sbg or any activated high performance storage region
# sbg or any activated high performance storage region
endpoint = "s3.gra.perf.cloud.ovh.net"
skip_credentials_validation = true
skip_region_validation = true
skip_region_validation = true
}
}
```

After Terraform version 1.6.0:
```yaml
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
}
}
```
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: 'Using OVHcloud High Performance (S3) Object Storage as Terraform Backend to store your Terraform state'
excerpt: 'Find out how to use an OVHcloud High Performance (S3) Object Storage as a Terraform Backend to store your Terraform state'
updated: 2023-07-31
updated: 2023-11-30
---

## Objective
Expand Down Expand Up @@ -77,16 +77,35 @@ $ aws s3 ls

Create a `backend.tf` file with the following content:

Before Terraform version 1.6.0:
```yaml
terraform {
backend "s3" {
bucket = "terraform-state-hp"
key = "terraform.tfstate"
region = "gra"
#or sbg or any activated high performance storage region
# sbg or any activated high performance storage region
endpoint = "s3.gra.perf.cloud.ovh.net"
skip_credentials_validation = true
skip_region_validation = true
skip_region_validation = true
}
}
```

After Terraform version 1.6.0:
```yaml
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
}
}
```
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: 'Using OVHcloud High Performance (S3) Object Storage as Terraform Backend to store your Terraform state'
excerpt: 'Find out how to use an OVHcloud High Performance (S3) Object Storage as a Terraform Backend to store your Terraform state'
updated: 2023-07-31
updated: 2023-11-30
---

## Objective
Expand Down Expand Up @@ -77,16 +77,35 @@ $ aws s3 ls

Create a `backend.tf` file with the following content:

Before Terraform version 1.6.0:
```yaml
terraform {
backend "s3" {
bucket = "terraform-state-hp"
key = "terraform.tfstate"
region = "gra"
#or sbg or any activated high performance storage region
# sbg or any activated high performance storage region
endpoint = "s3.gra.perf.cloud.ovh.net"
skip_credentials_validation = true
skip_region_validation = true
skip_region_validation = true
}
}
```

After Terraform version 1.6.0:
```yaml
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
}
}
```
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: 'Using OVHcloud Object Storage as Terraform Backend to store your Terraform state'
excerpt: 'Find out how to use an OVHcloud Object Storage as a Terraform Backend to store your Terraform state'
updated: 2023-07-31
updated: 2023-11-30
---

## Objective
Expand Down Expand Up @@ -77,16 +77,35 @@ $ aws s3 ls

Create a `backend.tf` file with the following content:

Before Terraform version 1.6.0:
```yaml
terraform {
backend "s3" {
bucket = "terraform-state-hp"
key = "terraform.tfstate"
region = "gra"
#or sbg or any activated high performance storage region
# sbg or any activated high performance storage region
endpoint = "s3.gra.perf.cloud.ovh.net"
skip_credentials_validation = true
skip_region_validation = true
skip_region_validation = true
}
}
```

After Terraform version 1.6.0:
```yaml
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
}
}
```
Expand Down Expand Up @@ -126,4 +145,4 @@ Now you can define your Terraform configuration files and providers and after ru

## Go further

Join our community of users on <https://community.ovh.com/en/>.
Join our community of users on <https://community.ovh.com/en/>.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: 'Using OVHcloud High Performance (S3) Object Storage as Terraform Backend to store your Terraform state'
excerpt: 'Find out how to use an OVHcloud High Performance (S3) Object Storage as a Terraform Backend to store your Terraform state'
updated: 2023-07-31
updated: 2023-11-30
---

## Objective
Expand Down Expand Up @@ -77,16 +77,35 @@ $ aws s3 ls

Create a `backend.tf` file with the following content:

Before Terraform version 1.6.0:
```yaml
terraform {
backend "s3" {
bucket = "terraform-state-hp"
key = "terraform.tfstate"
region = "gra"
#or sbg or any activated high performance storage region
# sbg or any activated high performance storage region
endpoint = "s3.gra.perf.cloud.ovh.net"
skip_credentials_validation = true
skip_region_validation = true
skip_region_validation = true
}
}
```

After Terraform version 1.6.0:
```yaml
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
}
}
```
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: 'Using OVHcloud High Performance (S3) Object Storage as Terraform Backend to store your Terraform state'
excerpt: 'Find out how to use an OVHcloud High Performance (S3) Object Storage as a Terraform Backend to store your Terraform state'
updated: 2023-07-31
updated: 2023-11-30
---

## Objective
Expand Down Expand Up @@ -77,16 +77,35 @@ $ aws s3 ls

Create a `backend.tf` file with the following content:

Before Terraform version 1.6.0:
```yaml
terraform {
backend "s3" {
bucket = "terraform-state-hp"
key = "terraform.tfstate"
region = "gra"
#or sbg or any activated high performance storage region
# sbg or any activated high performance storage region
endpoint = "s3.gra.perf.cloud.ovh.net"
skip_credentials_validation = true
skip_region_validation = true
skip_region_validation = true
}
}
```

After Terraform version 1.6.0:
```yaml
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
}
}
```
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: 'Using OVHcloud High Performance (S3) Object Storage as Terraform Backend to store your Terraform state'
excerpt: 'Find out how to use an OVHcloud High Performance (S3) Object Storage as a Terraform Backend to store your Terraform state'
updated: 2023-07-31
updated: 2023-11-30
---

## Objective
Expand Down Expand Up @@ -77,16 +77,35 @@ $ aws s3 ls

Create a `backend.tf` file with the following content:

Before Terraform version 1.6.0:
```yaml
terraform {
backend "s3" {
bucket = "terraform-state-hp"
key = "terraform.tfstate"
region = "gra"
#or sbg or any activated high performance storage region
# sbg or any activated high performance storage region
endpoint = "s3.gra.perf.cloud.ovh.net"
skip_credentials_validation = true
skip_region_validation = true
skip_region_validation = true
}
}
```

After Terraform version 1.6.0:
```yaml
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
}
}
```
Expand Down
Loading