terraform/website/source/docs/providers/cloudflare/index.html.markdown

1.1 KiB

layout page_title sidebar_current description
cloudflare Provider: Cloudflare docs-cloudflare-index The Cloudflare provider is used to interact with the DNS resources supported by Cloudflare. The provider needs to be configured with the proper credentials before it can be used.

Cloudflare Provider

The Cloudflare provider is used to interact with the DNS resources supported by Cloudflare. The provider needs to be configured with the proper credentials before it can be used.

Use the navigation to the left to read about the available resources.

Example Usage

# Configure the Cloudflare provider
provider "cloudflare" {
  email = "${var.cloudflare_email}"
  token = "${var.cloudflare_token}"
}

# Create a record
resource "cloudflare_record" "www" {
  # ...
}

Argument Reference

The following arguments are supported:

  • email - (Required) The email associated with the account. This can also be specified with the CLOUDFLARE_EMAIL shell environment variable.
  • token - (Required) The Cloudflare API token. This can also be specified with the CLOUDFLARE_TOKEN shell environment variable.