@robinmordasiewicz/f5xc-terraform-mcp 3.11.1 → 3.11.2
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/bgp.md +2 -2
- package/dist/docs/data-sources/certificate.md +2 -2
- package/dist/docs/data-sources/discovery.md +2 -2
- package/dist/docs/data-sources/log_receiver.md +2 -2
- package/dist/docs/data-sources/namespace.md +141 -0
- package/dist/docs/data-sources/site.md +2 -2
- package/dist/docs/data-sources/workload.md +2 -2
- package/dist/docs/index.md +241 -117
- package/dist/docs/resources/bgp.md +4 -238
- package/dist/docs/resources/certificate.md +56 -4
- package/dist/docs/resources/discovery.md +8 -259
- package/dist/docs/resources/log_receiver.md +825 -44
- package/dist/docs/resources/namespace.md +170 -0
- package/dist/docs/resources/site.md +911 -200
- package/dist/docs/resources/workload.md +9 -2951
- package/dist/metadata/resource-metadata.json +371 -177
- package/dist/metadata/validation-patterns.json +1 -1
- package/package.json +1 -1
- package/dist/docs/data-sources/index.md +0 -25
- package/dist/docs/functions/index.md +0 -39
- package/dist/docs/guides/index.md +0 -22
- package/dist/docs/resources/index.md +0 -27
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@robinmordasiewicz/f5xc-terraform-mcp",
|
|
3
|
-
"version": "3.11.
|
|
3
|
+
"version": "3.11.2",
|
|
4
4
|
"description": "MCP server for F5 Distributed Cloud Terraform provider - documentation, 270+ OpenAPI specs, subscription info, and addon activation workflows for AI assistants",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
# Data Sources
|
|
2
|
-
|
|
3
|
-
Data sources allow you to query existing F5 Distributed Cloud resources.
|
|
4
|
-
|
|
5
|
-
## Available Data Sources
|
|
6
|
-
|
|
7
|
-
For a complete list of available data sources, see the [Terraform Registry documentation](https://registry.terraform.io/providers/robinmordasiewicz/f5xc/latest/docs/data-sources).
|
|
8
|
-
|
|
9
|
-
### Core Data Sources
|
|
10
|
-
|
|
11
|
-
- `f5xc_namespace` - Query namespace details
|
|
12
|
-
- `f5xc_addon_service` - Query addon service information
|
|
13
|
-
- `f5xc_addon_service_activation_status` - Check addon activation status
|
|
14
|
-
- And more...
|
|
15
|
-
|
|
16
|
-
## Data Source Documentation
|
|
17
|
-
|
|
18
|
-
Each data source is automatically generated from F5's official OpenAPI specifications and includes:
|
|
19
|
-
|
|
20
|
-
- **Schema** - All available attributes
|
|
21
|
-
- **Examples** - Working Terraform configurations
|
|
22
|
-
|
|
23
|
-
## Finding Data Sources
|
|
24
|
-
|
|
25
|
-
Visit the [Terraform Registry](https://registry.terraform.io/providers/robinmordasiewicz/f5xc/latest/docs/data-sources) to search and browse all available data sources.
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
# Provider Functions
|
|
2
|
-
|
|
3
|
-
Provider-defined functions offer utility capabilities beyond resource management.
|
|
4
|
-
|
|
5
|
-
!!! info "Terraform 1.8+ Required"
|
|
6
|
-
Provider functions require Terraform 1.8.0 or later.
|
|
7
|
-
|
|
8
|
-
## Available Functions
|
|
9
|
-
|
|
10
|
-
### Secret Management
|
|
11
|
-
|
|
12
|
-
- **`provider::f5xc::blindfold`** - Encrypt base64-encoded plaintext using F5XC Secret Management
|
|
13
|
-
- **`provider::f5xc::blindfold_file`** - Read and encrypt file contents using F5XC Secret Management
|
|
14
|
-
|
|
15
|
-
## Usage Example
|
|
16
|
-
|
|
17
|
-
```hcl
|
|
18
|
-
terraform {
|
|
19
|
-
required_version = ">= 1.8.0"
|
|
20
|
-
required_providers {
|
|
21
|
-
f5xc = {
|
|
22
|
-
source = "robinmordasiewicz/f5xc"
|
|
23
|
-
version = "~> 3.0"
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
locals {
|
|
29
|
-
encrypted = provider::f5xc::blindfold(
|
|
30
|
-
base64encode("my-secret-value"),
|
|
31
|
-
"secret-policy-name",
|
|
32
|
-
"namespace"
|
|
33
|
-
)
|
|
34
|
-
}
|
|
35
|
-
```
|
|
36
|
-
|
|
37
|
-
## Function Documentation
|
|
38
|
-
|
|
39
|
-
For complete function documentation, see the [Terraform Registry](https://registry.terraform.io/providers/robinmordasiewicz/f5xc/latest/docs/functions).
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
# Guides
|
|
2
|
-
|
|
3
|
-
Step-by-step tutorials for common F5 Distributed Cloud scenarios.
|
|
4
|
-
|
|
5
|
-
## Available Guides
|
|
6
|
-
|
|
7
|
-
### Security & Load Balancing
|
|
8
|
-
|
|
9
|
-
- **[HTTP Load Balancer with Security Features](http-loadbalancer.md)** - Deploy a production-ready HTTP Load Balancer with WAF, bot defense, and rate limiting
|
|
10
|
-
|
|
11
|
-
## Coming Soon
|
|
12
|
-
|
|
13
|
-
Additional guides are being developed. Check back soon for:
|
|
14
|
-
|
|
15
|
-
- Origin pool configuration patterns
|
|
16
|
-
- Multi-cloud deployment strategies
|
|
17
|
-
- Service mesh integration
|
|
18
|
-
- Advanced security configurations
|
|
19
|
-
|
|
20
|
-
## Contributing
|
|
21
|
-
|
|
22
|
-
Have a guide idea? [Open an issue](https://github.com/robinmordasiewicz/terraform-provider-f5xc/issues) or [submit a PR](https://github.com/robinmordasiewicz/terraform-provider-f5xc/pulls)!
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
# Resources
|
|
2
|
-
|
|
3
|
-
Resources allow you to create and manage F5 Distributed Cloud infrastructure.
|
|
4
|
-
|
|
5
|
-
## Available Resources
|
|
6
|
-
|
|
7
|
-
For a complete list of available resources, see the [Terraform Registry documentation](https://registry.terraform.io/providers/robinmordasiewicz/f5xc/latest/docs).
|
|
8
|
-
|
|
9
|
-
### Core Resources
|
|
10
|
-
|
|
11
|
-
- `f5xc_namespace` - Manage namespaces
|
|
12
|
-
- `f5xc_http_loadbalancer` - HTTP/HTTPS load balancers
|
|
13
|
-
- `f5xc_origin_pool` - Backend origin pools
|
|
14
|
-
- `f5xc_app_firewall` - Web Application Firewall policies
|
|
15
|
-
- And many more...
|
|
16
|
-
|
|
17
|
-
## Resource Documentation
|
|
18
|
-
|
|
19
|
-
Each resource is automatically generated from F5's official OpenAPI specifications and includes:
|
|
20
|
-
|
|
21
|
-
- **Schema** - All available attributes and their types
|
|
22
|
-
- **Import** - How to import existing resources
|
|
23
|
-
- **Examples** - Working Terraform configurations
|
|
24
|
-
|
|
25
|
-
## Finding Resources
|
|
26
|
-
|
|
27
|
-
Visit the [Terraform Registry](https://registry.terraform.io/providers/robinmordasiewicz/f5xc/latest/docs) to search and browse all available resources.
|