@robinmordasiewicz/f5xc-terraform-mcp 3.12.2 → 3.12.3

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.
@@ -2,12 +2,12 @@
2
2
  page_title: "f5xc_certificate Data Source - terraform-provider-f5xc"
3
3
  subcategory: "Certificates"
4
4
  description: |-
5
- Manages a Certificate resource in F5 Distributed Cloud for TLS/SSL certificate management.
5
+ Manages a Certificate resource in F5 Distributed Cloud for certificate. configuration.
6
6
  ---
7
7
 
8
8
  # f5xc_certificate (Data Source)
9
9
 
10
- Manages a Certificate resource in F5 Distributed Cloud for TLS/SSL certificate management.
10
+ Manages a Certificate resource in F5 Distributed Cloud for certificate. configuration.
11
11
 
12
12
  ~> **Note** For more information about this data source, please refer to the [F5 XC API Documentation](https://docs.cloud.f5.com/docs/api/).
13
13
 
@@ -2,12 +2,12 @@
2
2
  page_title: "f5xc_log_receiver Data Source - terraform-provider-f5xc"
3
3
  subcategory: "Monitoring"
4
4
  description: |-
5
- Manages new Global Log Receiver object. in F5 Distributed Cloud.
5
+ Manages new Log Receiver object. in F5 Distributed Cloud.
6
6
  ---
7
7
 
8
8
  # f5xc_log_receiver (Data Source)
9
9
 
10
- Manages new Global Log Receiver object. in F5 Distributed Cloud.
10
+ Manages new Log Receiver object. in F5 Distributed Cloud.
11
11
 
12
12
  ~> **Note** For more information about this data source, please refer to the [F5 XC API Documentation](https://docs.cloud.f5.com/docs/api/).
13
13
 
@@ -0,0 +1,141 @@
1
+ ---
2
+ page_title: "f5xc_namespace Data Source - terraform-provider-f5xc"
3
+ subcategory: "Organization"
4
+ description: |-
5
+ Manages new namespace. Name of the object is name of the name space. in F5 Distributed Cloud.
6
+ ---
7
+
8
+ # f5xc_namespace (Data Source)
9
+
10
+ Manages new namespace. Name of the object is name of the name space. in F5 Distributed Cloud.
11
+
12
+ ~> **Note** For more information about this data source, please refer to the [F5 XC API Documentation](https://docs.cloud.f5.com/docs/api/).
13
+
14
+ ## Example Usage
15
+
16
+ ```terraform
17
+ # Namespace Data Source Example
18
+ # Retrieves information about an existing Namespace
19
+
20
+ # Look up an existing Namespace by name
21
+ data "f5xc_namespace" "example" {
22
+ name = "example-namespace"
23
+ namespace = "system"
24
+ }
25
+
26
+ # Example: Use the data source in another resource
27
+ # output "namespace_id" {
28
+ # value = data.f5xc_namespace.example.id
29
+ # }
30
+
31
+ # Example: Create resources in a namespace discovered via data source
32
+ # resource "f5xc_origin_pool" "example" {
33
+ # name = "example-pool"
34
+ # namespace = data.f5xc_namespace.example.name
35
+ # # ... other configuration
36
+ # }
37
+ ```
38
+
39
+ <!-- schema generated by tfplugindocs -->
40
+ ## Argument Reference
41
+
42
+ ### Metadata Argument Reference
43
+
44
+ <a id="name"></a>&#x2022; [`name`](#name) - Required String<br>Name of the Namespace
45
+
46
+ <a id="namespace"></a>&#x2022; [`namespace`](#namespace) - Required String<br>Namespace where the Namespace exists
47
+
48
+ ### Attributes Reference
49
+
50
+ In addition to all arguments above, the following attributes are exported:
51
+
52
+ <a id="annotations"></a>&#x2022; [`annotations`](#annotations) - Optional Map<br>Annotations applied to this resource
53
+
54
+ <a id="description"></a>&#x2022; [`description`](#description) - Optional String<br>Description of the Namespace
55
+
56
+ <a id="id"></a>&#x2022; [`id`](#id) - Optional String<br>Unique identifier for the resource
57
+
58
+ <a id="labels"></a>&#x2022; [`labels`](#labels) - Optional Map<br>Labels applied to this resource
59
+
60
+ ---
61
+
62
+ ## Common Types
63
+
64
+ The following type definitions are used throughout this resource. See the full definition here rather than repeated inline.
65
+
66
+ ### Object Reference {#common-object-reference}
67
+
68
+ Object references establish a direct reference from one configuration object to another in F5 Distributed Cloud. References use the format `tenant/namespace/name`.
69
+
70
+ | Field | Type | Description |
71
+ | ----- | ---- | ----------- |
72
+ | `name` | String | Name of the referenced object |
73
+ | `namespace` | String | Namespace containing the referenced object |
74
+ | `tenant` | String | Tenant of the referenced object (system-managed) |
75
+
76
+ ### Transformers {#common-transformers}
77
+
78
+ Transformers apply transformations to input values before matching. Multiple transformers can be applied in order.
79
+
80
+ | Value | Description |
81
+ | ----- | ----------- |
82
+ | `LOWER_CASE` | Convert to lowercase |
83
+ | `UPPER_CASE` | Convert to uppercase |
84
+ | `BASE64_DECODE` | Decode base64 content |
85
+ | `NORMALIZE_PATH` | Normalize URL path |
86
+ | `REMOVE_WHITESPACE` | Remove whitespace characters |
87
+ | `URL_DECODE` | Decode URL-encoded characters |
88
+ | `TRIM_LEFT` | Trim leading whitespace |
89
+ | `TRIM_RIGHT` | Trim trailing whitespace |
90
+ | `TRIM` | Trim both leading and trailing whitespace |
91
+
92
+ ### HTTP Methods {#common-http-methods}
93
+
94
+ HTTP methods used for request matching.
95
+
96
+ | Value | Description |
97
+ | ----- | ----------- |
98
+ | `ANY` | Match any HTTP method |
99
+ | `GET` | HTTP GET request |
100
+ | `HEAD` | HTTP HEAD request |
101
+ | `POST` | HTTP POST request |
102
+ | `PUT` | HTTP PUT request |
103
+ | `DELETE` | HTTP DELETE request |
104
+ | `CONNECT` | HTTP CONNECT request |
105
+ | `OPTIONS` | HTTP OPTIONS request |
106
+ | `TRACE` | HTTP TRACE request |
107
+ | `PATCH` | HTTP PATCH request |
108
+ | `COPY` | HTTP COPY request (WebDAV) |
109
+
110
+ ### TLS Fingerprints {#common-tls-fingerprints}
111
+
112
+ TLS fingerprint categories for malicious client detection.
113
+
114
+ | Value | Description |
115
+ | ----- | ----------- |
116
+ | `TLS_FINGERPRINT_NONE` | No fingerprint matching |
117
+ | `ANY_MALICIOUS_FINGERPRINT` | Match any known malicious fingerprint |
118
+ | `ADWARE` | Adware-associated fingerprints |
119
+ | `DRIDEX` | Dridex malware fingerprints |
120
+ | `GOOTKIT` | Gootkit malware fingerprints |
121
+ | `RANSOMWARE` | Ransomware-associated fingerprints |
122
+ | `TRICKBOT` | Trickbot malware fingerprints |
123
+
124
+ ### IP Threat Categories {#common-ip-threat-categories}
125
+
126
+ IP address threat categories for security filtering.
127
+
128
+ | Value | Description |
129
+ | ----- | ----------- |
130
+ | `SPAM_SOURCES` | Known spam sources |
131
+ | `WINDOWS_EXPLOITS` | Windows exploit sources |
132
+ | `WEB_ATTACKS` | Web attack sources |
133
+ | `BOTNETS` | Known botnet IPs |
134
+ | `SCANNERS` | Network scanner IPs |
135
+ | `REPUTATION` | Poor reputation IPs |
136
+ | `PHISHING` | Phishing-related IPs |
137
+ | `PROXY` | Anonymous proxy IPs |
138
+ | `MOBILE_THREATS` | Mobile threat sources |
139
+ | `TOR_PROXY` | Tor exit nodes |
140
+ | `DENIAL_OF_SERVICE` | DoS attack sources |
141
+ | `NETWORK` | Known bad network ranges |
@@ -2,12 +2,12 @@
2
2
  page_title: "f5xc_network_policy Data Source - terraform-provider-f5xc"
3
3
  subcategory: "Security"
4
4
  description: |-
5
- Manages new network policy with configured parameters in specified namespace. in F5 Distributed Cloud.
5
+ Manages network policy rule with configured parameters in specified namespace. in F5 Distributed Cloud.
6
6
  ---
7
7
 
8
8
  # f5xc_network_policy (Data Source)
9
9
 
10
- Manages new network policy with configured parameters in specified namespace. in F5 Distributed Cloud.
10
+ Manages network policy rule with configured parameters in specified namespace. in F5 Distributed Cloud.
11
11
 
12
12
  ~> **Note** For more information about this data source, please refer to the [F5 XC API Documentation](https://docs.cloud.f5.com/docs/api/).
13
13
 
@@ -2,12 +2,12 @@
2
2
  page_title: "f5xc_site Data Source - terraform-provider-f5xc"
3
3
  subcategory: "Uncategorized"
4
4
  description: |-
5
- Manages a Site resource in F5 Distributed Cloud for aws tgw site specification. configuration.
5
+ Manages a Site resource in F5 Distributed Cloud for aws vpc site specification. configuration.
6
6
  ---
7
7
 
8
8
  # f5xc_site (Data Source)
9
9
 
10
- Manages a Site resource in F5 Distributed Cloud for aws tgw site specification. configuration.
10
+ Manages a Site resource in F5 Distributed Cloud for aws vpc site specification. configuration.
11
11
 
12
12
  ~> **Note** For more information about this data source, please refer to the [F5 XC API Documentation](https://docs.cloud.f5.com/docs/api/).
13
13
 
@@ -2,12 +2,12 @@
2
2
  page_title: "f5xc_workload Data Source - terraform-provider-f5xc"
3
3
  subcategory: "Kubernetes"
4
4
  description: |-
5
- Manages a Workload resource in F5 Distributed Cloud for workload. configuration.
5
+ Manages workload_flavor. in F5 Distributed Cloud.
6
6
  ---
7
7
 
8
8
  # f5xc_workload (Data Source)
9
9
 
10
- Manages a Workload resource in F5 Distributed Cloud for workload. configuration.
10
+ Manages workload_flavor. in F5 Distributed Cloud.
11
11
 
12
12
  ~> **Note** For more information about this data source, please refer to the [F5 XC API Documentation](https://docs.cloud.f5.com/docs/api/).
13
13
 
@@ -2,12 +2,12 @@
2
2
  page_title: "f5xc_certificate Resource - terraform-provider-f5xc"
3
3
  subcategory: "Certificates"
4
4
  description: |-
5
- Manages a Certificate resource in F5 Distributed Cloud for TLS/SSL certificate management.
5
+ Manages a Certificate resource in F5 Distributed Cloud for certificate. configuration.
6
6
  ---
7
7
 
8
8
  # f5xc_certificate (Resource)
9
9
 
10
- Manages a Certificate resource in F5 Distributed Cloud for TLS/SSL certificate management.
10
+ Manages a Certificate resource in F5 Distributed Cloud for certificate. configuration.
11
11
 
12
12
  ~> **Note** For more information about this resource, please refer to the [F5 XC API Documentation](https://docs.cloud.f5.com/docs/api/).
13
13
 
@@ -15,7 +15,7 @@ Manages a Certificate resource in F5 Distributed Cloud for TLS/SSL certificate m
15
15
 
16
16
  ```terraform
17
17
  # Certificate Resource Example
18
- # Manages a Certificate resource in F5 Distributed Cloud for TLS/SSL certificate management.
18
+ # Manages a Certificate resource in F5 Distributed Cloud for certificate. configuration.
19
19
 
20
20
  # Basic Certificate configuration
21
21
  resource "f5xc_certificate" "example" {
@@ -60,10 +60,20 @@ resource "f5xc_certificate" "example" {
60
60
 
61
61
  ### Spec Argument Reference
62
62
 
63
- <a id="certificate-url"></a>&#x2022; [`certificate_url`](#certificate-url) - Optional String<br>Certificate chain is the list of intermediate certificates in PEM format including the PEM headers
63
+ <a id="certificate-chain"></a>&#x2022; [`certificate_chain`](#certificate-chain) - Optional Block<br>Type establishes a direct reference from one object(the referrer) to another(the referred). Such a reference is in form of tenant/namespace/name<br>See [Certificate Chain](#certificate-chain) below for details.
64
+
65
+ <a id="certificate-url"></a>&#x2022; [`certificate_url`](#certificate-url) - Optional String<br>Certificate. Certificate or certificate chain in PEM format including the PEM headers
66
+
67
+ -> **One of the following:**
68
+ &#x2022; <a id="custom-hash-algorithms"></a>[`custom_hash_algorithms`](#custom-hash-algorithms) - Optional Block<br>Specifies the hash algorithms to be used<br>See [Custom Hash Algorithms](#custom-hash-algorithms) below for details.
69
+ <br><br>&#x2022; <a id="disable-ocsp-stapling"></a>[`disable_ocsp_stapling`](#disable-ocsp-stapling) - Optional Block<br>Enable this option
70
+
71
+ <a id="private-key"></a>&#x2022; [`private_key`](#private-key) - Optional Block<br>SecretType is used in an object to indicate a sensitive/confidential field<br>See [Private Key](#private-key) below for details.
64
72
 
65
73
  <a id="timeouts"></a>&#x2022; [`timeouts`](#timeouts) - Optional Block<br>See [Timeouts](#timeouts) below for details.
66
74
 
75
+ <a id="use-system-defaults"></a>&#x2022; [`use_system_defaults`](#use-system-defaults) - Optional Block<br>Enable this option
76
+
67
77
  ### Attributes Reference
68
78
 
69
79
  In addition to all arguments above, the following attributes are exported:
@@ -72,6 +82,48 @@ In addition to all arguments above, the following attributes are exported:
72
82
 
73
83
  ---
74
84
 
85
+ #### Certificate Chain
86
+
87
+ A [`certificate_chain`](#certificate-chain) block supports the following:
88
+
89
+ <a id="certificate-chain-name"></a>&#x2022; [`name`](#certificate-chain-name) - Optional String<br>When a configuration object(e.g. Virtual_host) refers to another(e.g route) then name will hold the referred object's(e.g. Route's) name
90
+
91
+ <a id="certificate-chain-namespace"></a>&#x2022; [`namespace`](#certificate-chain-namespace) - Optional String<br>When a configuration object(e.g. Virtual_host) refers to another(e.g route) then namespace will hold the referred object's(e.g. Route's) namespace
92
+
93
+ <a id="certificate-chain-tenant"></a>&#x2022; [`tenant`](#certificate-chain-tenant) - Optional String<br>When a configuration object(e.g. Virtual_host) refers to another(e.g route) then tenant will hold the referred object's(e.g. Route's) tenant
94
+
95
+ #### Custom Hash Algorithms
96
+
97
+ A [`custom_hash_algorithms`](#custom-hash-algorithms) block supports the following:
98
+
99
+ <a id="custom-hash-algorithms-hash-algorithms"></a>&#x2022; [`hash_algorithms`](#custom-hash-algorithms-hash-algorithms) - Optional List Defaults to `INVALID_HASH_ALGORITHM`<br>Possible values are `INVALID_HASH_ALGORITHM`, `SHA256`, `SHA1`<br>[Enum: INVALID_HASH_ALGORITHM|SHA256|SHA1] Ordered list of hash algorithms to be used
100
+
101
+ #### Private Key
102
+
103
+ A [`private_key`](#private-key) block supports the following:
104
+
105
+ <a id="private-key-blindfold-secret-info"></a>&#x2022; [`blindfold_secret_info`](#private-key-blindfold-secret-info) - Optional Block<br>BlindfoldSecretInfoType specifies information about the Secret managed by F5XC Secret Management<br>See [Blindfold Secret Info](#private-key-blindfold-secret-info) below.
106
+
107
+ <a id="private-key-clear-secret-info"></a>&#x2022; [`clear_secret_info`](#private-key-clear-secret-info) - Optional Block<br>ClearSecretInfoType specifies information about the Secret that is not encrypted<br>See [Clear Secret Info](#private-key-clear-secret-info) below.
108
+
109
+ #### Private Key Blindfold Secret Info
110
+
111
+ A [`blindfold_secret_info`](#private-key-blindfold-secret-info) block (within [`private_key`](#private-key)) supports the following:
112
+
113
+ <a id="provider-2cb137"></a>&#x2022; [`decryption_provider`](#provider-2cb137) - Optional String<br>Name of the Secret Management Access object that contains information about the backend Secret Management service
114
+
115
+ <a id="location-208dea"></a>&#x2022; [`location`](#location-208dea) - Optional String<br>Location is the uri_ref. It could be in URL format for string:/// Or it could be a path if the store provider is an HTTP/HTTPS location
116
+
117
+ <a id="provider-1e06e0"></a>&#x2022; [`store_provider`](#provider-1e06e0) - Optional String<br>Name of the Secret Management Access object that contains information about the store to GET encrypted bytes This field needs to be provided only if the URL scheme is not string:///
118
+
119
+ #### Private Key Clear Secret Info
120
+
121
+ A [`clear_secret_info`](#private-key-clear-secret-info) block (within [`private_key`](#private-key)) supports the following:
122
+
123
+ <a id="ref-e799a7"></a>&#x2022; [`provider_ref`](#ref-e799a7) - Optional String<br>Name of the Secret Management Access object that contains information about the store to GET encrypted bytes This field needs to be provided only if the URL scheme is not string:///
124
+
125
+ <a id="private-key-clear-secret-info-url"></a>&#x2022; [`url`](#private-key-clear-secret-info-url) - Optional String<br>URL of the secret. Currently supported URL schemes is string:///. For string:/// scheme, Secret needs to be encoded Base64 format. When asked for this secret, caller will GET Secret bytes after Base64 decoding
126
+
75
127
  #### Timeouts
76
128
 
77
129
  A [`timeouts`](#timeouts) block supports the following: