For the complete documentation index, see llms.txt. This page is also available as Markdown.

OpenVPN

OpenVPN is a leading global private networking and cybersecurity company that allows organizations to truly safeguard their assets in a dynamic, cost effective, and scalable way.

Example Usage


openvpn-integration.tf
resource "apono_integration" "openvpn-integration" {
  name                     = "OpenVPN"
  type                     = "openvpn"
  connector_id             = "apono-connector-id"
  connected_resource_types = ["openvpn-tunnel"]
  metadata = {
  }
}
openvpn-integration.tf
resource "apono_resource_integration" "openvpn-integration" {
  name                     = "OpenVPN"
  type                     = "openvpn"
  connector_id             = "apono-connector-id"
  connected_resource_types = ["openvpn-tunnel"]
  integration_config = {
  }
}
openvpn-integration.json
{
    "openvpn-integration": {
        "name": "OpenVPN",
        "type": "openvpn",
        "connector_id": "apono-connector-id",
        "connected_resource_types": [
            "openvpn-tunnel"
        ],
        "integration_config": {
        }
    }
}

Schema


  • type openvpn

  • connected_resource_types List of resource types to sync.

Available resource types you can use
  • openvpn-tunnel

Integration Config


Last updated

Was this helpful?