Skip to content

Commit 93aba85

Browse files
authored
fix: broken links to Terraform documentation (#313)
Co-authored-by: Christian Lechner <[email protected]>
1 parent ba5935f commit 93aba85

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

released/dsag/betriebstag2024/exercises/EXERCISE2/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ After the application you will find a new file called `terraform.tfstate` in you
231231
<img width="200px" src="assets/ex2_5.png" alt="terraform state in the file system">
232232

233233
> [!IMPORTANT]
234-
> In real life you would not store this file locally but use a [remote backend](https://developer.hashicorp.com/terraform/language/settings/backends/configuration) that is capable of storing the state in a secure and consistent way. For the purpose of this exercise we will use the local backend.
234+
> In real life you would not store this file locally but use a [remote backend](https://developer.hashicorp.com/terraform/language/backend) that is capable of storing the state in a secure and consistent way. For the purpose of this exercise we will use the local backend.
235235

236236
> [!NOTE]
237237
> In case you are getting an error that the subdomain already exists, you need change the project name in the `variables.tf` file.
@@ -251,6 +251,6 @@ Here you find additional information on the used Terraform features and function
251251

252252
## Summary
253253

254-
You've now successfully created a subaccount.
254+
You've now successfully created a subaccount.
255255
256256
Continue to - [Exercise 3 - Assignment of subaccount emergency administrators](../EXERCISE3/README.md).

released/terraform-be/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Terraform Remote Backend Configuration
22

3-
In Terraform, a *backend* determines where the state data files are stored. This state data is crucial for tracking the resources managed by Terraform. There are different configuration options to define these backends. They are described in the [Terraform documentation](https://developer.hashicorp.com/terraform/language/settings/backends/configuration).
3+
In Terraform, a *backend* determines where the state data files are stored. This state data is crucial for tracking the resources managed by Terraform. There are different configuration options to define these backends. They are described in the [Terraform documentation](https://developer.hashicorp.com/terraform/language/backend).
44

55
The default configuration is the [local backend](https://developer.hashicorp.com/terraform/language/settings/backends/local) namely the local file system. However, this is not recommended for productive usage due to the lack of options to collaborate and securely store the state. Hence, it is common to use a remote backend.
66

@@ -18,4 +18,4 @@ As mentioned the default backend stores state as a local file on disk. It is sui
1818

1919
### Kubernetes Backend
2020

21-
The [Kubernetes backend](https://developer.hashicorp.com/terraform/language/settings/backends/kubernetes) stores state in a Kubernetes secret and supports state locking using a Lease resource. It allows for secure and collaborative state management in Kubernetes environments. You find a sample technical setup in the directory [k8sasbackend](./k8sasbackend/README.md)
21+
The [Kubernetes backend](https://developer.hashicorp.com/terraform/language/settings/backends/kubernetes) stores state in a Kubernetes secret and supports state locking using a Lease resource. It allows for secure and collaborative state management in Kubernetes environments. You find a sample technical setup in the directory [k8sasbackend](./k8sasbackend/README.md)

0 commit comments

Comments
 (0)