Last updated on: 2023-10-18 04:01:19.

Declarative Onboarding Integration

Welcome to the F5 Declarative Onboarding Integration for Terraform.

Use this Terraform integration with Declarative Onboarding (DO) to automate network (L1-L3) onboarding for the F5 BIG-IP system, making it available and ready to accept application services configurations.

F5 BIG-IP Declarative Onboarding uses a declarative model to initially configure a BIG-IP device with all of the required settings to get up and running. This includes system settings such as licensing and provisioning, network settings such as VLANs and Self IPs, and clustering settings if you are using multiple BIG-IP system.

Prerequisites

To use DO Extensions with Terraform, ensure you meet the following requirements:

  • The F5 BIG-IP must be running version 13.1.0 or higher. Due to changes in TMOS v13.1.1.5, the Declarative Onboarding (DO) Extension is not compatible with this specific TMOS version. Versions before and after 13.1.1.5 are compatible.
  • Domain name resolution is used anywhere the declaration accepts a hostname. DO makes sure that any hostnames are resolvable and fails if they are not. The exception is deviceGroup.members, which do not require hostname resolution as they have been added to the trust.
  • You must have an existing BIG-IP device with a management IP address.
  • You must have an existing user account with the Administrator role. If you are using 13.1.x, the BIG-IP contains an admin user by default. If you are using 14.x, you must reset the admin password before installing Declarative Onboarding. See the DO documentation for instructions.
  • While Declarative Onboarding is supported on F5 vCMP systems, network stitching to vCMP Guests or Hosts is not supported.
  • If you are using an F5 BYOL license, you must have a valid F5 Networks License Registration Key to include in your declaration. If you do not have one, contact your F5 sales representative. If you do not use a valid F5 license key, your declaration will fail. This is NOT a requirement if you are using a BIG-IP with pay-as-you-go licensing.
  • If you are using a single NIC BIG-IP system, you must include port 8443 after the IP address of the BIG-IP in your POST and GET requests, for example, https://<BIG-IP>:8443/mgmt/shared/declarative-onboarding.

Limitations:

  • DO does NOT support DELETE operation: terraform destroy will cause an error.
  • If you POST a declaration that modifies the password for the admin account, even if the declaration returns an error, the password can be changed. Therefore you may need to update the admin password in the client you are using to send the declaration.
  • The first time you POST a Declarative Onboarding declaration, the system records the configuration that exists prior to processing the declaration. Declarative Onboarding is meant to initially configure a BIG-IP device. However, if you POST subsequent declarations to the same BIG-IP system, and leave out some of the properties you initially used, the system restores the original properties for those items.

Important

No matter what you send in a subsequent declaration, Declarative Onboarding will never unlicense a BIG-IP device, it will never delete a user, and it WILL never break the device trust once it has been established.

Example Usage

resource "bigip_do" "do-example" {
    do_json = "${file("example.json")}"
    timeout = 15
}

Argument Reference

  • do_json - (Required) Name of the Declarative DO JSON file.

  • timeout(minutes) - (Optional) timeout (in minutes) to keep polling DO endpoint until the BIG-IP is provisioned by DO. The default timeout is 20 minutes.

    Note

    Delete method is not supported by DO, so terraform destroy does not delete configuration in BIG-IP, but you can set the Terraform state to empty without causing an error.

  • example.json - Example of DO Declarative JSON.

    {
        "schemaVersion": "1.0.0",
        "class": "Device",
        "async": true,
        "label": "my BIG-IP declaration for declarative onboarding",
        "Common": {
            "class": "Tenant",
            "hostname": "bigip.example.com",
            "myLicense": {
                "class": "License",
                "licenseType": "regKey",
                "regKey": "xxxx"
            },
            "admin": {
                "class": "User",
                "userType": "regular",
                "password": "xxxx",
                "shell": "bash"
            },
            "myProvisioning": {
                "class": "Provision",
                "ltm": "nominal",
                "gtm": "minimum"
            },
            "external": {
                "class": "VLAN",
                "tag": 4093,
                "mtu": 1500,
                "interfaces": [
                    {
                        "name": "1.1",
                        "tagged": true
                    }
                ],
                "cmpHash": "dst-ip"
            },
            "external-self": {
                "class": "SelfIp",
                "address": "x.x.x.x",
                "vlan": "external",
                "allowService": "default",
                "trafficGroup": "traffic-group-local-only"
            }
    
        }
    }
    

DO Installation

Use the following terraform provisioner to download DO RPM from GitHub and install the RPM on BIG-IP.

resource "null_resource" "install_do" {

provisioner "local-exec" {

    command = "./install-do-rpm.sh x.x.x.x xxxx:xxxx"

    }

}

You MUST pass BIG-IP and its credentials as an argument to the install script. This script is available in the examples section of DO in the Terraform GitHub repo.

Note

DO tenants are BIG-IP administrative partitions used to group configurations and also resources shared by applications in other tenants.

What’s Next?