# F5 Network

## Example Usage

***

{% tabs %}
{% tab title="Terraform" %}
{% code title="f5-webtop-integration.tf" %}

```tf
resource "apono_integration" "f5-webtop-integration" {
  name                     = "F5 Network"
  type                     = "f5-webtop"
  connector_id             = "apono-connector-id"
  connected_resource_types = ["f5-webtop-policy"]
  metadata = {
    hostname = "<F5 Hostname>"
    access_profile_id = "<Access Profile Id>"
    resource_assign_id = "<Resource Assign Id>"
    webtop = "<Webtop>"
    webtop_sections = "<Webtop Sections (Optional)>"
  }
  kubernetes_secret = {
    name      = "name_template_value"
    namespace = "namespace_template_value"
  }
}
```

{% endcode %}
{% endtab %}

{% tab title="Terraform V2" %}
{% code title="f5-webtop-integration.tf" %}

```tf
resource "apono_resource_integration" "f5-webtop-integration" {
  name                     = "F5 Network"
  type                     = "f5-webtop"
  connector_id             = "apono-connector-id"
  connected_resource_types = ["f5-webtop-policy"]
  integration_config = {
    hostname = "<F5 Hostname>"
    access_profile_id = "<Access Profile Id>"
    resource_assign_id = "<Resource Assign Id>"
    webtop = "<Webtop>"
    webtop_sections = "<Webtop Sections (Optional)>"
  }
  secret_store_config = {
    kubernetes = {
      name      = "name_template_value"
      namespace = "namespace_template_value"
    }
}
```

{% endcode %}
{% endtab %}

{% tab title="Public API" %}
{% code title="f5-webtop-integration.json" %}

```json
{
    "f5-webtop-integration": {
        "name": "F5 Network",
        "type": "f5-webtop",
        "connector_id": "apono-connector-id",
        "connected_resource_types": [
            "f5-webtop-policy"
        ],
        "integration_config": {
            "hostname": "<F5 Hostname>",
            "access_profile_id": "<Access Profile Id>",
            "resource_assign_id": "<Resource Assign Id>",
            "webtop": "<Webtop>",
            "webtop_sections": "<Webtop Sections (Optional)>",
        },
	"secret_store_config": {
    	    "name": "name_template_value",
    	    "namespace": "namespace_template_value"
  	    }
    }
}
```

{% endcode %}
{% endtab %}
{% endtabs %}

## Schema

***

* `type` f5-webtop
* `connected_resource_types` List of resource types to sync.

<details>

<summary>Available resource types you can use</summary>

* f5-webtop-policy

</details>

### Integration Config

***

* `hostname` (Required | String) F5 Hostname
* `access_profile_id` (Required | String) Access Profile Id
* `resource_assign_id` (Required | String) Resource Assign Id
* `webtop` (Required | String) Webtop
* `webtop_sections` (Optional | String) Webtop Sections (Optional)
