Skip to content
Start here

Managed Transforms

resource cloudflare_managed_transforms

required Expand Collapse
zone_id: String

The unique ID of the zone.

managed_request_headers: List[Attributes]

The list of Managed Request Transforms.

id: String

The human-readable identifier of the Managed Transform.

enabled: Bool

Whether the Managed Transform is enabled.

has_conflict: Bool

Whether the Managed Transform conflicts with the currently-enabled Managed Transforms.

conflicts_with: List[String]

The Managed Transforms that this Managed Transform conflicts with.

managed_response_headers: List[Attributes]

The list of Managed Response Transforms.

id: String

The human-readable identifier of the Managed Transform.

enabled: Bool

Whether the Managed Transform is enabled.

has_conflict: Bool

Whether the Managed Transform conflicts with the currently-enabled Managed Transforms.

conflicts_with: List[String]

The Managed Transforms that this Managed Transform conflicts with.

computed Expand Collapse
id: String

The unique ID of the zone.

cloudflare_managed_transforms

resource "cloudflare_managed_transforms" "example_managed_transforms" {
  zone_id = "9f1839b6152d298aca64c4e906b6d074"
  managed_request_headers = [{
    id = "add_bot_protection_headers"
    enabled = true
  }]
  managed_response_headers = [{
    id = "add_security_headers"
    enabled = true
  }]
}

data cloudflare_managed_transforms

required Expand Collapse
zone_id: String

The unique ID of the zone.

computed Expand Collapse
id: String

The unique ID of the zone.

managed_request_headers: List[Attributes]

The list of Managed Request Transforms.

id: String

The human-readable identifier of the Managed Transform.

enabled: Bool

Whether the Managed Transform is enabled.

has_conflict: Bool

Whether the Managed Transform conflicts with the currently-enabled Managed Transforms.

conflicts_with: List[String]

The Managed Transforms that this Managed Transform conflicts with.

managed_response_headers: List[Attributes]

The list of Managed Response Transforms.

id: String

The human-readable identifier of the Managed Transform.

enabled: Bool

Whether the Managed Transform is enabled.

has_conflict: Bool

Whether the Managed Transform conflicts with the currently-enabled Managed Transforms.

conflicts_with: List[String]

The Managed Transforms that this Managed Transform conflicts with.

cloudflare_managed_transforms

data "cloudflare_managed_transforms" "example_managed_transforms" {
  zone_id = "9f1839b6152d298aca64c4e906b6d074"
}