Skip to content

Latest commit

 

History

History
53 lines (37 loc) · 1007 Bytes

site_list.md

File metadata and controls

53 lines (37 loc) · 1007 Bytes
page_title subcategory description
sigsci_site_list Resource - terraform-provider-sigsci

sigsci_site_list (Resource)

Example Usage

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

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:

terraform import sigsci_site_list.test site_short_name:id