Skip to content

Commit 2486789

Browse files
authored
rebrand banner in docs (#2404)
* rebrand banner in docs * fix the rebrand
1 parent 72fd0c5 commit 2486789

File tree

5 files changed

+66
-6
lines changed

5 files changed

+66
-6
lines changed
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
---
2+
title: "State Management"
3+
---
4+
5+
In this tutorial, you will set up state management and connect it to your local terraform or opentofu.
6+
7+
If you prefer a visual walkthrough you can follow along the following loom tutorial:
8+
9+
<iframe width="640" height="414" src="https://www.loom.com/embed/0f303822db4147b1a0f89eeaa8df18ae" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
10+
11+
----
12+
13+
<Steps>
14+
<Step title="Create first unit">
15+
Create your first unit from the UI. give it a name and hit create
16+
</Step>
17+
<Step title="Configure cloud block">
18+
Configure your terraform cloud block locally by pasting it into the terraform code
19+
</Step>
20+
<Step title="Authenticate with Opentofu">
21+
Using the cli you can run the following command to authenticate:
22+
23+
```
24+
tofu login otaco.app
25+
```
26+
27+
Or if using terraform
28+
29+
```
30+
terraform login otaco.app
31+
```
32+
33+
You will have to confirm and will then be redirected to a token generation page. This page
34+
will allow you to generate a token and you can copy paste it back into the cli. You should see a message saying
35+
36+
```
37+
Success! Logged in to Terraform Enterprise (otaco.app)
38+
```
39+
</Step>
40+
<Step title="try to run plan and apply">
41+
Using terraform or opentofu run `init`, `plan` and `apply` commands. It should all succeed to be created
42+
If this is the case then well done! You have successfully created your first unit
43+
</Step>
44+
</Steps>
45+
46+
47+
## Next steps
48+
49+
Try to setup PR automation so that you can collaborate on your opentofu as a team. You can follow the guides for
50+
[terraform](/ce/getting-started/with-terraform), [opentofu](/ce/getting-started/with-opentofu) or [terragrunt](/ce/getting-started/with-terragrunt) respectively.

docs/ce/getting-started/with-opentofu.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ In this tutorial, you will set up Digger to automate OpenTofu pull requests usin
1414
<Steps>
1515
<Step title="Create your Digger account">
1616

17-
Head to [ui.digger.dev](https://ui.digger.dev) and sign up using your preferred method.
17+
Head to [otaco.app](https://otaco.app) and sign up using your preferred method.
1818

1919
You should see an empty dashboard after you sign up.
2020
</Step>

docs/ce/getting-started/with-terraform.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ In this tutorial, you will set up Digger to automate terraform pull requests usi
1414
<Steps>
1515
<Step title="Create your Digger account">
1616

17-
Head to [ui.digger.dev](https://ui.digger.dev) and sign up using your preferred method.
17+
Head to [otaco.app](https://otaco.app) and sign up using your preferred method.
1818

1919
Post sign up, your dashboard should look like this:
2020

docs/ce/getting-started/with-terragrunt.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ In this tutorial, you will set up Digger to automate Terragrunt pull requests us
1414
<Steps>
1515
<Step title="Create your Digger account">
1616

17-
Head to [ui.digger.dev](https://ui.digger.dev) and sign up using your preferred method.
17+
Head to [otaco.app](https://otaco.app) and sign up using your preferred method.
1818

1919
You should see an empty dashboard after you sign up.
2020
</Step>

docs/docs.json

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
"$schema": "https://mintlify.com/docs.json",
33
"theme": "mint",
44
"name": "Digger",
5+
"banner": {
6+
"content": "🚀 We have rebranded to opentaco [see here](https://opentaco.dev) for details.",
7+
"dismissible": true
8+
},
59
"colors": {
610
"primary": "#8101E4",
711
"light": "#AF48FF",
@@ -25,9 +29,15 @@
2529
{
2630
"group": "Getting Started",
2731
"pages": [
28-
"ce/getting-started/with-terraform",
29-
"ce/getting-started/with-opentofu",
30-
"ce/getting-started/with-terragrunt"
32+
"ce/getting-started/state-management",
33+
{
34+
"group": "PR Automation",
35+
"pages": [
36+
"ce/getting-started/with-terraform",
37+
"ce/getting-started/with-opentofu",
38+
"ce/getting-started/with-terragrunt"
39+
]
40+
}
3141
]
3242
},
3343
{

0 commit comments

Comments
 (0)