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
@@ -66,7 +66,7 @@ Before you run the Terraform script, perform the following actions on a server m
66
66
67
67
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:
68
68
```bash
69
-
$ terraform --version
69
+
terraform --version
70
70
```
71
71
1. Install the latest version of [curl](https://curl.haxx.se/download.html). To check the installed curl version, run the following command:
72
72
```bash
@@ -86,11 +86,11 @@ Before you run the Terraform script, perform the following actions on a server m
86
86
87
87
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:
92
92
```bash
93
-
$ terraform init
93
+
terraform init
94
94
```
95
95
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).
96
96
:::note
@@ -115,7 +115,7 @@ Before you run the Terraform script, perform the following actions on a server m
115
115
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*.
116
116
* Run fields.sh using this command:
117
117
```bash
118
-
$ sh fields.sh
118
+
sh fields.sh
119
119
```
120
120
121
121
:::important
@@ -548,17 +548,17 @@ Before you run these commands, make sure you have configured your AWS profiles o
548
548
:::
549
549
550
550
```terminal
551
-
$ terraform validate
552
-
$ terraform plan
553
-
$ terraform apply
551
+
terraform validate
552
+
terraform plan
553
+
terraform apply
554
554
```
555
555
556
556
## Uninstalling the Solution
557
557
558
558
To uninstall the AWS Observability solution deployed using Terraform, navigate to the directory **sumologic-solution-templates/aws-observability-terraform** and execute the command:
559
559
560
560
```terminal
561
-
$ terraform destroy
561
+
terraform destroy
562
562
```
563
563
564
564
This will destroy all [resources](resources.md) and configuration previously set up.
0 commit comments