Organizations
cloudflare_organization
resource "cloudflare_organization" "example_organization" {
name = "name"
parent = {
id = "a7b9c3d2e8f4g1h5i6j0k9l2m3n7o4p8"
}
profile = {
business_address = "business_address"
business_email = "business_email"
business_name = "business_name"
business_phone = "business_phone"
external_metadata = "external_metadata"
}
}
data cloudflare_organizations
optional
page_token?: String
An opaque token returned from the last list response that when provided will retrieve the next page.
Parameters used to filter the retrieved list must remain in subsequent requests with a page token.
cloudflare_organizations
data "cloudflare_organizations" "example_organizations" {
id = ["a7b9c3d2e8f4g1h5i6j0k9l2m3n7o4p8"]
containing = {
account = "account"
organization = "organization"
user = "user"
}
name = {
contains = "contains"
ends_with = "endsWith"
starts_with = "startsWith"
}
page_size = 0
page_token = "page_token"
parent = {
id = "a7b9c3d2e8f4g1h5i6j0k9l2m3n7o4p8"
}
}
OrganizationsOrganization Accounts
data cloudflare_organization_accounts
optional
direction?: String
Sort direction for the order_by field. Valid values: asc, desc.
Defaults to asc when order_by is specified.
order_by?: String
Field to order results by. Currently supported values: account_name.
When not specified, results are ordered by internal account ID.
OrganizationsOrganization Profile
resource cloudflare_organization_profile
cloudflare_organization_profile
resource "cloudflare_organization_profile" "example_organization_profile" {
organization_id = "a7b9c3d2e8f4g1h5i6j0k9l2m3n7o4p8"
business_address = "business_address"
business_email = "business_email"
business_name = "business_name"
business_phone = "business_phone"
external_metadata = "external_metadata"
}
data cloudflare_organization_profile
cloudflare_organization_profile
data "cloudflare_organization_profile" "example_organization_profile" {
organization_id = "a7b9c3d2e8f4g1h5i6j0k9l2m3n7o4p8"
}