You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/observability/aws/deploy-use-aws-observability/deploy-with-terraform.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,7 +71,7 @@ Before you run the Terraform script, perform the following actions on a server m
71
71
72
72
1. Install [Terraform](https://www.terraform.io/) version [1.6.0](https://releases.hashicorp.com/terraform/) or later. To check the installed Terraform version, run the following command:
73
73
```bash
74
-
$ terraform --version
74
+
terraform --version
75
75
```
76
76
1. Install the latest version of [curl](https://curl.haxx.se/download.html). To check the installed curl version, run the following command:
77
77
```bash
@@ -91,11 +91,11 @@ Before you run the Terraform script, perform the following actions on a server m
91
91
92
92
1. Clone the repository https://github.com/SumoLogic/sumologic-solution-templates:
1. Initialize the Terraform working directory by navigating to the directory [sumologic-solution-templates/aws-observability-terraform](https://github.com/SumoLogic/sumologic-solution-templates/tree/master/aws-observability-terraform) and running:
97
97
```bash
98
-
$ terraform init
98
+
terraform init
99
99
```
100
100
This will install the required Terraform providers, including [Null](https://www.terraform.io/docs/providers/null/index.html), [Sumo Logic Terraform Provider](https://www.terraform.io/docs/providers/sumologic/index.html), [AWS Provider](https://registry.terraform.io/providers/hashicorp/aws/latest/docs), [Time Provider](https://registry.terraform.io/providers/hashicorp/time/latest/docs), [Random Provider](https://registry.terraform.io/providers/hashicorp/random/latest/docs).
101
101
:::note
@@ -120,7 +120,7 @@ Before you run the Terraform script, perform the following actions on a server m
120
120
Provide your Sumo Logic deployment for the SUMOLOGIC_ENV variable. For example: au, ca, de, eu, jp, us2, fed, kr, or us1. For more information on Sumo Logic deployments, see *Sumo Logic Endpoints and Firewall Security*.
121
121
* Run fields.sh using this command:
122
122
```bash
123
-
$ sh fields.sh
123
+
sh fields.sh
124
124
```
125
125
126
126
:::important
@@ -560,17 +560,17 @@ Before you run these commands, make sure you have configured your AWS profiles o
560
560
:::
561
561
562
562
```terminal
563
-
$ terraform validate
564
-
$ terraform plan
565
-
$ terraform apply
563
+
terraform validate
564
+
terraform plan
565
+
terraform apply
566
566
```
567
567
568
568
## Uninstalling the Solution
569
569
570
570
To uninstall the AWS Observability solution deployed using Terraform, navigate to the directory **sumologic-solution-templates/aws-observability-terraform** and execute the command:
571
571
572
572
```terminal
573
-
$ terraform destroy
573
+
terraform destroy
574
574
```
575
575
576
576
This will destroy all [resources](resources.md) and configuration previously set up.
0 commit comments