FEATURES OPEN SOURCE ABOUT DOCS LOGIN REGISTER

cloudflare_record

Provides a Cloudflare record resource.

Example Usage

# Add a record to the domain
resource "cloudflare_record" "foobar" {
	domain = "${var.cloudflare_domain}"
	name = "terraform"
	value = "192.168.0.11"
	type = "A"
	ttl = 3600
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported:


See the source of this document at Terraform.io