Skip to content

Commit

Permalink
make docs
Browse files Browse the repository at this point in the history
mrusso19 committed Dec 5, 2024
1 parent 4fbc90f commit 0198ad0
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions docs/resources/content_scanning.md
Original file line number Diff line number Diff line change
@@ -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 generated by tfplugindocs -->
## 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 <zone_id>
```

0 comments on commit 0198ad0

Please sign in to comment.