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
Installs/Uninstalls/Upgrades an app (v2) from our app catalog
6
+
---
7
+
8
+
# sumologic_app
9
+
Provides a Sumologic_App.
10
+
11
+
## Example Usage
12
+
```hcl
13
+
14
+
resource "sumologic_app" "example_app" {
15
+
uuid = "ceb7fac5-1127-4a04-a5b8-2e49190be3d5"
16
+
version = "1.0.1"
17
+
parameters = {
18
+
"k1": "v1",
19
+
"k2": "v2"
20
+
}
21
+
}
22
+
```
23
+
24
+
## Argument reference
25
+
26
+
The following arguments are supported:
27
+
28
+
-`uuid` - UUID of the app to install/uninstall/upgrade.
29
+
-`version` - Version of the app to install. You can either specify a specific version of the app or use latest to install the latest version of the app.
30
+
-`parameters` - (Optional) Map of additional parameters for the app installation.
0 commit comments