New in version 2.6.
The below requirements are needed on the host that executes this module.
Parameter | Choices/Defaults | Comments | |
---|---|---|---|
add_analytics
bool |
|
Collects statistics of the BIG-IP that the application is deployed to.
This parameter is only relevant when specifying a
service_environment which is a BIG-IP; not an SSG. |
|
description |
Description of the application.
|
||
inbound_virtual |
Settings to configure the virtual which will receive the inbound connection.
|
||
netmask
required |
Specifies the netmask to associate with the given
destination .This parameter is required when creating a new application.
|
||
port |
Default: 8080
|
The port that the virtual listens for connections on.
When creating a new application, if this parameter is not specified, the default value of
8080 will be used. |
|
address
required |
Specifies destination IP address information to which the virtual server sends traffic.
This parameter is required when creating a new application.
|
||
name
required |
Name of the new application.
|
||
password
required |
The password for the user account used to connect to the BIG-IP. You can omit this option if the environment variable
F5_PASSWORD is set.aliases: pass, pwd |
||
provider
(added in 2.5) |
A dict object containing connection details.
|
||
ssh_keyfile |
Specifies the SSH keyfile to use to authenticate the connection to the remote device. This argument is only used for cli transports. If the value is not specified in the task, the value of environment variable
ANSIBLE_NET_SSH_KEYFILE will be used instead. |
||
timeout |
Default: 10
|
Specifies the timeout in seconds for communicating with the network device for either connecting or sending commands. If the timeout is exceeded before the operation is completed, the module will error.
|
|
server
required |
The BIG-IP host. You can omit this option if the environment variable
F5_SERVER is set. |
||
user
required |
The username to connect to the BIG-IP with. This user must have administrative privileges on the device. You can omit this option if the environment variable
F5_USER is set. |
||
server_port |
Default: 443
|
The BIG-IP server port. You can omit this option if the environment variable
F5_SERVER_PORT is set. |
|
password
required |
The password for the user account used to connect to the BIG-IP. You can omit this option if the environment variable
F5_PASSWORD is set.aliases: pass, pwd |
||
validate_certs
bool |
|
If
no , SSL certificates will not be validated. Use this only on personally controlled sites using self-signed certificates. You can omit this option if the environment variable F5_VALIDATE_CERTS is set. |
|
transport
required |
|
Configures the transport connection to use when connecting to the remote device.
|
|
server
required |
The BIG-IP host. You can omit this option if the environment variable
F5_SERVER is set. |
||
server_port
(added in 2.2) |
Default: 443
|
The BIG-IP server port. You can omit this option if the environment variable
F5_SERVER_PORT is set. |
|
servers |
A list of servers that the application is hosted on.
If you are familiar with other BIG-IP setting, you might also refer to this list as the list of pool members.
When creating a new application, at least one server is required.
|
||
port |
Default: 8000
|
The port of the server.
When creating a new application and specifying a server, if this parameter is not provided, the default of
8000 will be used. |
|
address
required |
The IP address of the server.
|
||
service_environment |
Specifies the name of service environment that the application will be deployed to.
When creating a new application, this parameter is required.
The service environment type will be discovered by this module automatically. Therefore, it is crucial that you maintain unique names for items in the different service environment types.
SSGs are not supported for this type of application.
|
||
state |
|
The state of the resource on the system.
When
present , guarantees that the resource exists with the provided attributes.When
absent , removes the resource from the system. |
|
user
required |
The username to connect to the BIG-IP with. This user must have administrative privileges on the device. You can omit this option if the environment variable
F5_USER is set. |
||
validate_certs
bool (added in 2.0) |
|
If
no , SSL certificates will not be validated. Use this only on personally controlled sites using self-signed certificates. You can omit this option if the environment variable F5_VALIDATE_CERTS is set. |
|
wait
bool |
|
If the module should wait for the application to be created, deleted or updated.
|
Note
pip install f5-sdk
.- name: Load balance a TCP-based application with a FastL4 profile
bigiq_application_fastl4_tcp:
name: my-app
description: My description
service_environment: my-bigip-device
servers:
- address: 1.2.3.4
port: 8080
- address: 5.6.7.8
port: 8080
load_balancer:
name: foo
destination: 2.2.2.2
netmask: 255.255.255.255
port: 443
provider:
password: secret
server: lb.mydomain.com
user: admin
state: present
delegate_to: localhost
Common return values are documented here, the following are the fields unique to this module:
Key | Returned | Description | |
---|---|---|---|
description
string
|
changed |
The new description of the application of the resource.
Sample:
My application
|
|
inbound_virtual_destination
string
|
changed |
The destination of the virtual that was created.
Sample:
6.7.8.9
|
|
inbound_virtual_netmask
string
|
changed |
The network mask of the provided inbound destination.
Sample:
255.255.255.0
|
|
inbound_virtual_port
int
|
changed |
The port the inbound virtual address listens on.
Sample:
80
|
|
servers
complex
|
changed |
List of servers, and their ports, that make up the application.
Sample:
hash/dictionary of values
|
|
port
int
|
changed |
The port that the server listens on.
Sample:
8080
|
|
address
string
|
changed |
The IP address of the server.
Sample:
2.3.4.5
|
|
service_environment
string
|
changed |
The environment which the service was deployed to.
Sample:
my-ssg1
|
This module is flagged as preview which means that it is not guaranteed to have a backwards compatible interface.
Hint
If you notice any issues in this documentation you can edit this document to improve it.