Skip to content
Start here

Addresses

resource cloudflare_email_routing_address

required Expand Collapse
account_id: String

Identifier.

email: String

The contact email address of the user.

computed Expand Collapse
id: String

Destination address identifier.

created: Time

The date and time the destination address has been created.

modified: Time

The date and time the destination address was last modified.

Deprecatedtag: String

Destination address tag. (Deprecated, replaced by destination address identifier)

verified: Time

The date and time the destination address has been verified. Null means not verified yet.

cloudflare_email_routing_address

resource "cloudflare_email_routing_address" "example_email_routing_address" {
  account_id = "023e105f4ecef8ad9ca31a8372d0c353"
  email = "user@example.com"
}

data cloudflare_email_routing_address

required Expand Collapse
account_id: String

Identifier.

optional Expand Collapse
destination_address_identifier?: String

Destination address identifier.

filter?: Attributes
direction?: String

Sorts results in an ascending or descending order.

verified?: Bool

Filter by verified destination addresses.

computed Expand Collapse
id: String

Destination address identifier.

created: Time

The date and time the destination address has been created.

email: String

The contact email address of the user.

modified: Time

The date and time the destination address was last modified.

Deprecatedtag: String

Destination address tag. (Deprecated, replaced by destination address identifier)

verified: Time

The date and time the destination address has been verified. Null means not verified yet.

cloudflare_email_routing_address

data "cloudflare_email_routing_address" "example_email_routing_address" {
  account_id = "023e105f4ecef8ad9ca31a8372d0c353"
  destination_address_identifier = "ea95132c15732412d22c1476fa83f27a"
}

data cloudflare_email_routing_addresses

required Expand Collapse
account_id: String

Identifier.

optional Expand Collapse
direction?: String

Sorts results in an ascending or descending order.

verified?: Bool

Filter by verified destination addresses.

max_items?: Int64

Max items to fetch, default: 1000

computed Expand Collapse
result: List[Attributes]

The items returned by the data source

id: String

Destination address identifier.

created: Time

The date and time the destination address has been created.

email: String

The contact email address of the user.

modified: Time

The date and time the destination address was last modified.

Deprecatedtag: String

Destination address tag. (Deprecated, replaced by destination address identifier)

verified: Time

The date and time the destination address has been verified. Null means not verified yet.

cloudflare_email_routing_addresses

data "cloudflare_email_routing_addresses" "example_email_routing_addresses" {
  account_id = "023e105f4ecef8ad9ca31a8372d0c353"
}