-
Notifications
You must be signed in to change notification settings - Fork 31
/
site_list.md
53 lines (37 loc) · 1007 Bytes
/
site_list.md
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "sigsci_site_list Resource - terraform-provider-sigsci"
subcategory: ""
description: |-
---
# sigsci_site_list (Resource)
## Example Usage
```terraform
resource "sigsci_site_list" "test" {
site_short_name = sigsci_site.my-site.short_name
name = "My new list"
type = "ip"
description = "Some IPs"
entries = [
"4.5.6.7",
"2.3.4.5",
"1.2.3.4",
]
}
```
<!-- schema generated by tfplugindocs -->
## Schema
### Required
- `entries` (Set of String) List entries
- `name` (String) Descriptive list name
- `site_short_name` (String) Site short name
- `type` (String) List types (string, ip, country, wildcard, signal)
### Optional
- `description` (String) Optional list description
### Read-Only
- `id` (String) The ID of this resource.
## Import
Import is supported using the following syntax:
```shell
terraform import sigsci_site_list.test site_short_name:id
```