F5 Network
Integration that allows users to request access to a F5 Webtop
Example Usage
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"
}
}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"
}
}{
"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"
}
}
}Schema
typef5-webtopconnected_resource_typesList of resource types to sync.
Integration Config
hostname(Required | String) F5 Hostnameaccess_profile_id(Required | String) Access Profile Idresource_assign_id(Required | String) Resource Assign Idwebtop(Required | String) Webtopwebtop_sections(Optional | String) Webtop Sections (Optional)
Last updated
Was this helpful?
