Skip to content

exoscale_security_group (Resource)

Manage Exoscale Security Groups.

Corresponding data source: exoscale_security_group.

Example Usage

resource "exoscale_security_group" "my_security_group" {
  name = "my-security-group"
}

Next step is to attach exoscale_security_group_rule(s) to the group.

Please refer to the examples directory for complete configuration examples.

Schema

Required

  • name (String) ❗ The name of the Security Group.

Optional

  • description (String) ❗ A free-form text describing the the Security Group.
  • external_sources (Set of String) A list of external network sources, in CIDR notation.
  • timeouts (Block, Optional) (see below for nested schema)

Read-Only

  • id (String) The ID of the Security Group.

Nested Schema for timeouts

Optional:

  • create (String) A string that can be parsed as a duration consisting of numbers and unit suffixes, such as “30s” or “2h45m”. Valid time units are “s” (seconds), “m” (minutes), “h” (hours).
  • delete (String) A string that can be parsed as a duration consisting of numbers and unit suffixes, such as “30s” or “2h45m”. Valid time units are “s” (seconds), “m” (minutes), “h” (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
  • read (String) A string that can be parsed as a duration consisting of numbers and unit suffixes, such as “30s” or “2h45m”. Valid time units are “s” (seconds), “m” (minutes), “h” (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
  • update (String) A string that can be parsed as a duration consisting of numbers and unit suffixes, such as “30s” or “2h45m”. Valid time units are “s” (seconds), “m” (minutes), “h” (hours).

-> The symbol ❗ in an attribute indicates that modifying it, will force the creation of a new resource.

Import

An existing security group may be imported by <ID>:

terraform import \
  exoscale_security_group.my_security_group \
  f81d4fae-7dec-11d0-a765-00a0c91e6bf6
Last updated on