@robinmordasiewicz/f5xc-terraform-mcp 2.6.4 → 2.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/docs/data-sources/app_firewall.md +2 -0
- package/dist/docs/data-sources/cdn_loadbalancer.md +2 -0
- package/dist/docs/data-sources/dns_zone.md +2 -2
- package/dist/docs/data-sources/http_loadbalancer.md +2 -0
- package/dist/docs/resources/api_credential.md +2 -2
- package/dist/docs/resources/app_firewall.md +2 -0
- package/dist/docs/resources/cdn_loadbalancer.md +2 -0
- package/dist/docs/resources/cloud_connect.md +2 -2
- package/dist/docs/resources/dns_zone.md +30 -602
- package/dist/docs/resources/http_loadbalancer.md +2 -0
- package/dist/index.js +151 -2
- package/dist/index.js.map +1 -1
- package/dist/schemas/index.d.ts +14 -0
- package/dist/schemas/index.d.ts.map +1 -1
- package/dist/schemas/index.js +10 -0
- package/dist/schemas/index.js.map +1 -1
- package/dist/services/documentation.d.ts +23 -1
- package/dist/services/documentation.d.ts.map +1 -1
- package/dist/services/documentation.js +148 -6
- package/dist/services/documentation.js.map +1 -1
- package/dist/subscription-tiers.json +1165 -0
- package/dist/types.d.ts +34 -0
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js.map +1 -1
- package/package.json +1 -1
|
@@ -41,6 +41,8 @@ data "f5xc_app_firewall" "example" {
|
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
<!-- schema generated by tfplugindocs -->
|
|
44
|
+
~> **Note:** Some features of this resource (`advanced_detection_settings`, `ai_bot_defense`) require an F5 Distributed Cloud **Advanced** subscription. [Compare subscription tiers](https://www.f5.com/products/get-f5/compare).
|
|
45
|
+
|
|
44
46
|
## Argument Reference
|
|
45
47
|
|
|
46
48
|
### Metadata Argument Reference
|
|
@@ -30,6 +30,8 @@ data "f5xc_cdn_loadbalancer" "example" {
|
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
<!-- schema generated by tfplugindocs -->
|
|
33
|
+
~> **Note:** Some features of this resource (`advanced_caching`, `edge_compute`) require an F5 Distributed Cloud **Advanced** subscription. [Compare subscription tiers](https://www.f5.com/products/get-f5/compare).
|
|
34
|
+
|
|
33
35
|
## Argument Reference
|
|
34
36
|
|
|
35
37
|
### Metadata Argument Reference
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
page_title: "f5xc_dns_zone Data Source - terraform-provider-f5xc"
|
|
3
3
|
subcategory: "DNS"
|
|
4
4
|
description: |-
|
|
5
|
-
Manages DNS Zone
|
|
5
|
+
Manages a DNS Zone resource in F5 Distributed Cloud.
|
|
6
6
|
---
|
|
7
7
|
|
|
8
8
|
# f5xc_dns_zone (Data Source)
|
|
9
9
|
|
|
10
|
-
Manages DNS Zone
|
|
10
|
+
Manages a DNS Zone resource in F5 Distributed Cloud.
|
|
11
11
|
|
|
12
12
|
~> **Note** Please refer to [DNS Zone API docs](https://docs.cloud.f5.com/docs-v2/api/dns-zone) to learn more.
|
|
13
13
|
|
|
@@ -39,6 +39,8 @@ data "f5xc_http_loadbalancer" "example" {
|
|
|
39
39
|
```
|
|
40
40
|
|
|
41
41
|
<!-- schema generated by tfplugindocs -->
|
|
42
|
+
~> **Note:** Some features of this resource (`api_discovery`, `bot_defense`, `malicious_user_detection`, `sensitive_data_policy`) require an F5 Distributed Cloud **Advanced** subscription. [Compare subscription tiers](https://www.f5.com/products/get-f5/compare).
|
|
43
|
+
|
|
42
44
|
## Argument Reference
|
|
43
45
|
|
|
44
46
|
### Metadata Argument Reference
|
|
@@ -49,8 +49,6 @@ resource "f5xc_api_credential" "example" {
|
|
|
49
49
|
|
|
50
50
|
<a id="name"></a>• [`name`](#name) - Required String<br>Name of the API Credential. Must be unique within the namespace
|
|
51
51
|
|
|
52
|
-
<a id="namespace"></a>• [`namespace`](#namespace) - Required String<br>Namespace where the API Credential will be created
|
|
53
|
-
|
|
54
52
|
<a id="annotations"></a>• [`annotations`](#annotations) - Optional Map<br>Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata
|
|
55
53
|
|
|
56
54
|
<a id="description"></a>• [`description`](#description) - Optional String<br>Human readable description for the object
|
|
@@ -59,6 +57,8 @@ resource "f5xc_api_credential" "example" {
|
|
|
59
57
|
|
|
60
58
|
<a id="labels"></a>• [`labels`](#labels) - Optional Map<br>Labels is a user defined key value map that can be attached to resources for organization and filtering
|
|
61
59
|
|
|
60
|
+
<a id="namespace"></a>• [`namespace`](#namespace) - Optional String<br>Namespace for the API Credential. For this resource type, namespace should be empty or omitted
|
|
61
|
+
|
|
62
62
|
### Spec Argument Reference
|
|
63
63
|
|
|
64
64
|
<a id="password"></a>• [`password`](#password) - Optional String<br>Password. Password is used for generating an API certificate P12 bundle user can use to protect access to it. this password will not be saved/persisted anywhere in the system. Applicable for credential type API_CERTIFICATE Users have to use this password when they use the certificate, e.g. in curl or while adding to key chain
|
|
@@ -58,6 +58,8 @@ resource "f5xc_app_firewall" "example" {
|
|
|
58
58
|
```
|
|
59
59
|
|
|
60
60
|
<!-- schema generated by tfplugindocs -->
|
|
61
|
+
~> **Note:** Some features of this resource (`advanced_detection_settings`, `ai_bot_defense`) require an F5 Distributed Cloud **Advanced** subscription. [Compare subscription tiers](https://www.f5.com/products/get-f5/compare).
|
|
62
|
+
|
|
61
63
|
## Argument Reference
|
|
62
64
|
|
|
63
65
|
### Metadata Argument Reference
|
|
@@ -59,6 +59,8 @@ resource "f5xc_cdn_loadbalancer" "example" {
|
|
|
59
59
|
```
|
|
60
60
|
|
|
61
61
|
<!-- schema generated by tfplugindocs -->
|
|
62
|
+
~> **Note:** Some features of this resource (`advanced_caching`, `edge_compute`) require an F5 Distributed Cloud **Advanced** subscription. [Compare subscription tiers](https://www.f5.com/products/get-f5/compare).
|
|
63
|
+
|
|
62
64
|
## Argument Reference
|
|
63
65
|
|
|
64
66
|
### Metadata Argument Reference
|
|
@@ -54,6 +54,8 @@ resource "f5xc_cloud_connect" "example" {
|
|
|
54
54
|
|
|
55
55
|
<a id="name"></a>• [`name`](#name) - Required String<br>Name of the Cloud Connect. Must be unique within the namespace
|
|
56
56
|
|
|
57
|
+
<a id="namespace"></a>• [`namespace`](#namespace) - Required String<br>Namespace where the Cloud Connect will be created
|
|
58
|
+
|
|
57
59
|
<a id="annotations"></a>• [`annotations`](#annotations) - Optional Map<br>Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata
|
|
58
60
|
|
|
59
61
|
<a id="description"></a>• [`description`](#description) - Optional String<br>Human readable description for the object
|
|
@@ -62,8 +64,6 @@ resource "f5xc_cloud_connect" "example" {
|
|
|
62
64
|
|
|
63
65
|
<a id="labels"></a>• [`labels`](#labels) - Optional Map<br>Labels is a user defined key value map that can be attached to resources for organization and filtering
|
|
64
66
|
|
|
65
|
-
<a id="namespace"></a>• [`namespace`](#namespace) - Optional String<br>Namespace for the Cloud Connect. For this resource type, namespace should be empty or omitted
|
|
66
|
-
|
|
67
67
|
### Spec Argument Reference
|
|
68
68
|
|
|
69
69
|
-> **One of the following:**
|