From 0198ad0f9d416cf091d51a2d2c883e5b403b5cb1 Mon Sep 17 00:00:00 2001 From: Michele Russo Date: Thu, 5 Dec 2024 16:55:45 +0100 Subject: [PATCH] `make docs` --- docs/resources/content_scanning.md | 35 ++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 docs/resources/content_scanning.md diff --git a/docs/resources/content_scanning.md b/docs/resources/content_scanning.md new file mode 100644 index 0000000000..8968fd8e4c --- /dev/null +++ b/docs/resources/content_scanning.md @@ -0,0 +1,35 @@ +--- +page_title: "cloudflare_content_scanning Resource - Cloudflare" +subcategory: "" +description: |- + Provides a Content Scanning resource to be used for managing the status of the Content Scanning feature within a specific zone. +--- + +# cloudflare_content_scanning (Resource) + +Provides a Content Scanning resource to be used for managing the status of the Content Scanning feature within a specific zone. + +## Example Usage + +```terraform +# Enable Content Scanning +resource "cloudflare_content_scanning" "example" { + zone_id = "399c6f4950c01a5a141b99ff7fbcbd8b" + enabled = true +} +``` + +## Schema + +### Required + +- `enabled` (Boolean) State of the Content Scanning feature +- `zone_id` (String) The zone identifier to target for the resource. + +## Import + +Import is supported using the following syntax: + +```shell +terraform import cloudflare_content_scanning.example +```