terraform-provider-stackitp.../docs/data-sources/security_group_rule.md
Ruben Hönle 53a3697850
feat(iaas): support for v2 API (#1070)
relates to STACKITTPR-313
2025-12-17 15:40:46 +01:00

2.7 KiB

page_title subcategory description
stackit_security_group_rule Data Source - stackit Security group datasource schema. Must have a region specified in the provider configuration.

stackit_security_group_rule (Data Source)

Security group datasource schema. Must have a region specified in the provider configuration.

Example Usage

data "stackit_security_group_rule" "example" {
  project_id             = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
  security_group_id      = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
  security_group_rule_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
}

Schema

Required

  • project_id (String) STACKIT project ID to which the security group rule is associated.
  • security_group_id (String) The security group ID.
  • security_group_rule_id (String) The security group rule ID.

Optional

  • region (String) The resource region. If not defined, the provider region is used.

Read-Only

  • description (String) The description of the security group rule.
  • direction (String) The direction of the traffic which the rule should match. Some of the possible values are: Possible values are: ingress, egress.
  • ether_type (String) The ethertype which the rule should match.
  • icmp_parameters (Attributes) ICMP Parameters. (see below for nested schema)
  • id (String) Terraform's internal datasource ID. It is structured as "project_id,region,security_group_id,security_group_rule_id".
  • ip_range (String) The remote IP range which the rule should match.
  • port_range (Attributes) The range of ports. (see below for nested schema)
  • protocol (Attributes) The internet protocol which the rule should match. (see below for nested schema)
  • remote_security_group_id (String) The remote security group which the rule should match.

Nested Schema for icmp_parameters

Read-Only:

  • code (Number) ICMP code. Can be set if the protocol is ICMP.
  • type (Number) ICMP type. Can be set if the protocol is ICMP.

Nested Schema for port_range

Read-Only:

  • max (Number) The maximum port number. Should be greater or equal to the minimum.
  • min (Number) The minimum port number. Should be less or equal to the minimum.

Nested Schema for protocol

Read-Only:

  • name (String) The protocol name which the rule should match.
  • number (Number) The protocol number which the rule should match.