-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add documentation for origin allow list data source
- Loading branch information
Efrat Shoham
committed
Nov 19, 2024
1 parent
36a9dfa
commit 4d0c694
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "qwilt_cdn_origin_allow_list Data Source - qwilt" | ||
subcategory: "" | ||
description: |- | ||
Retrieves the device ip's to be added to origin allow iist. | ||
--- | ||
|
||
# qwilt_cdn_origin_allow_list (Data Source) | ||
|
||
Retrieves the device ip's to be added to origin allow iist. | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
data "qwilt_cdn_origin_allow_list" "origin_allow_list" { | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Read-Only | ||
|
||
- `create_time_millis` (Number) The time this instance of the IP address list was generated. | ||
- `ip_data` (Attributes Map) A dictionary structure where each key is a network name, and the value is an object comprised of two arrays; one for the IPv4 addresses and one for the IPv6 addresses in the network that the Qwilt CDN may use to request content from your origin. (see [below for nested schema](#nestedatt--ip_data)) | ||
- `md5` (String) A unique identifier for this instance of the IP address list. | ||
|
||
<a id="nestedatt--ip_data"></a> | ||
### Nested Schema for `ip_data` | ||
|
||
Read-Only: | ||
|
||
- `ipv4` (List of String) The IPv4 addresses in the network that Qwilt CDN may use to request content from your origin. | ||
- `ipv6` (List of String) The IPv6 addresses in the network that Qwilt CDN may use to request content from your origin. |