f5bigip.As3
Explore with Pulumi AI
Import
As3 resources can be imported using the partition name, e.g., ( use comma separated partition names if there are multiple partitions in as3 deployments )
$ pulumi import f5bigip:index/as3:As3 bigip_as3.test Sample_http_01
$ pulumi import f5bigip:index/as3:As3 bigip_as3.test Sample_http_01,Sample_non_http_01
Import examples ( single and multiple partitions )
$ pulumi import f5bigip:index/as3:As3 test Sample_http_01
bigip_as3.test: Importing from ID “Sample_http_01”…
bigip_as3.test: Import prepared!
Prepared bigip_as3 for import
bigip_as3.test: Refreshing state… [id=Sample_http_01]
Import successful!
The resources that were imported are shown above. These resources are now in
your Terraform state and will henceforth be managed by Terraform.
$ terraform show
bigip_as3.test:
resource “bigip_as3” “test” {
as3_json = jsonencode(
{
action = "deploy"
class = "AS3"
declaration = {
Sample_http_01 = {
A1 = {
class = "Application"
jsessionid = {
class = "Persist"
cookieMethod = "hash"
cookieName = "JSESSIONID"
persistenceMethod = "cookie"
}
service = {
class = "Service_HTTP"
persistenceMethods = [
{
use = "jsessionid"
},
]
pool = "web_pool"
virtualAddresses = [
"10.0.2.10",
]
}
web_pool = {
class = "Pool"
members = [
{
serverAddresses = [
"192.0.2.10",
"192.0.2.11",
]
servicePort = 80
},
]
monitors = [
"http",
]
}
}
class = "Tenant"
}
class = "ADC"
id = "UDP_DNS_Sample"
label = "UDP_DNS_Sample"
remark = "Sample of a UDP DNS Load Balancer Service"
schemaVersion = "3.0.0"
}
persist = true
}
)
id = "Sample_http_01"
tenant_filter = "Sample_http_01"
tenant_list = "Sample_http_01"
}
$ pulumi import f5bigip:index/as3:As3 test Sample_http_01,Sample_non_http_01
bigip_as3.test: Importing from ID “Sample_http_01,Sample_non_http_01”…
bigip_as3.test: Import prepared!
Prepared bigip_as3 for import
bigip_as3.test: Refreshing state… [id=Sample_http_01,Sample_non_http_01]
Import successful!
The resources that were imported are shown above. These resources are now in
your Terraform state and will henceforth be managed by Terraform.
$ terraform show
bigip_as3.test:
resource “bigip_as3” “test” {
as3_json = jsonencode(
{
action = "deploy"
class = "AS3"
declaration = {
Sample_http_01 = {
A1 = {
class = "Application"
jsessionid = {
class = "Persist"
cookieMethod = "hash"
cookieName = "JSESSIONID"
persistenceMethod = "cookie"
}
service = {
class = "Service_HTTP"
persistenceMethods = [
{
use = "jsessionid"
},
]
pool = "web_pool"
virtualAddresses = [
"10.0.2.10",
]
}
web_pool = {
class = "Pool"
members = [
{
serverAddresses = [
"192.0.2.10",
"192.0.2.11",
]
servicePort = 80
},
]
monitors = [
"http",
]
}
}
class = "Tenant"
}
Sample_non_http_01 = {
DNS_Service = {
Pool1 = {
class = "Pool"
members = [
{
serverAddresses = [
"10.1.10.100",
]
servicePort = 53
},
{
serverAddresses = [
"10.1.10.101",
]
servicePort = 53
},
]
monitors = [
"icmp",
]
}
class = "Application"
service = {
class = "Service_UDP"
pool = "Pool1"
virtualAddresses = [
"10.1.20.121",
]
virtualPort = 53
}
}
class = "Tenant"
}
class = "ADC"
id = "UDP_DNS_Sample"
label = "UDP_DNS_Sample"
remark = "Sample of a UDP DNS Load Balancer Service"
schemaVersion = "3.0.0"
}
persist = true
}
)
id = "Sample_http_01,Sample_non_http_01"
tenant_filter = "Sample_http_01,Sample_non_http_01"
tenant_list = "Sample_http_01,Sample_non_http_01"
}
AS3 documentation
- https://clouddocs.f5.com/products/extensions/f5-appsvcs-extension/latest/userguide/composing-a-declaration.html
Create As3 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new As3(name: string, args?: As3Args, opts?: CustomResourceOptions);
@overload
def As3(resource_name: str,
args: Optional[As3Args] = None,
opts: Optional[ResourceOptions] = None)
@overload
def As3(resource_name: str,
opts: Optional[ResourceOptions] = None,
application_list: Optional[str] = None,
as3_json: Optional[str] = None,
ignore_metadata: Optional[bool] = None,
task_id: Optional[str] = None,
tenant_filter: Optional[str] = None,
tenant_list: Optional[str] = None,
tenant_name: Optional[str] = None)
func NewAs3(ctx *Context, name string, args *As3Args, opts ...ResourceOption) (*As3, error)
public As3(string name, As3Args? args = null, CustomResourceOptions? opts = null)
type: f5bigip:As3
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args As3Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args As3Args
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args As3Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args As3Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args As3Args
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var as3Resource = new F5BigIP.As3("as3Resource", new()
{
ApplicationList = "string",
As3Json = "string",
IgnoreMetadata = false,
TaskId = "string",
TenantFilter = "string",
TenantList = "string",
TenantName = "string",
});
example, err := f5bigip.NewAs3(ctx, "as3Resource", &f5bigip.As3Args{
ApplicationList: pulumi.String("string"),
As3Json: pulumi.String("string"),
IgnoreMetadata: pulumi.Bool(false),
TaskId: pulumi.String("string"),
TenantFilter: pulumi.String("string"),
TenantList: pulumi.String("string"),
TenantName: pulumi.String("string"),
})
var as3Resource = new As3("as3Resource", As3Args.builder()
.applicationList("string")
.as3Json("string")
.ignoreMetadata(false)
.taskId("string")
.tenantFilter("string")
.tenantList("string")
.tenantName("string")
.build());
as3_resource = f5bigip.As3("as3Resource",
application_list="string",
as3_json="string",
ignore_metadata=False,
task_id="string",
tenant_filter="string",
tenant_list="string",
tenant_name="string")
const as3Resource = new f5bigip.As3("as3Resource", {
applicationList: "string",
as3Json: "string",
ignoreMetadata: false,
taskId: "string",
tenantFilter: "string",
tenantList: "string",
tenantName: "string",
});
type: f5bigip:As3
properties:
applicationList: string
as3Json: string
ignoreMetadata: false
taskId: string
tenantFilter: string
tenantList: string
tenantName: string
As3 Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The As3 resource accepts the following input properties:
- Application
List string - List of applications currently deployed on the Big-Ip
- As3Json string
- Path/Filename of Declarative AS3 JSON which is a json file used with builtin
file
function - Ignore
Metadata bool - Set True if you want to ignore metadata changes during update. By default it is set to false
as3_example1.json
- Example AS3 Declarative JSON file with single tenant
{ "class": "AS3", "action": "deploy", "persist": true, "declaration": { "class": "ADC", "schemaVersion": "3.0.0", "id": "example-declaration-01", "label": "Sample 1", "remark": "Simple HTTP application with round robin pool", "Sample_01": { "class": "Tenant", "defaultRouteDomain": 0, "Application_1": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.0.2.10" ], "pool": "web_pool" }, "web_pool": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.1.100", "192.0.1.110" ] } ] } } } } }
as3_example2.json
- Example AS3 Declarative JSON file with multiple tenants
{ "class": "AS3", "action": "deploy", "persist": true, "declaration": { "class": "ADC", "schemaVersion": "3.0.0", "id": "example-declaration-01", "label": "Sample 1", "remark": "Simple HTTP application with round robin pool", "Sample_02": { "class": "Tenant", "defaultRouteDomain": 0, "Application_2": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.2.2.10" ], "pool": "web_pool2" }, "web_pool2": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.2.1.100", "192.2.1.110" ] } ] } } }, "Sample_03": { "class": "Tenant", "defaultRouteDomain": 0, "Application_3": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.1.2.10" ], "pool": "web_pool3" }, "web_pool3": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.3.1.100", "192.3.1.110" ] } ] } } } } }
perApplication_example
- Per Application Example - JSON file with multiple Applications (and no Tenant Details)
{ "Application1": { "class": "Application", "service": { "class": "Service_HTTP", "virtualAddresses": [ "192.0.2.1" ], "pool": "pool" }, "pool": { "class": "Pool", "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.2.10", "192.0.2.20" ] } ] } }, "Application2": { "class": "Application", "service": { "class": "Service_HTTP", "virtualAddresses": [ "192.0.3.2" ], "pool": "pool" }, "pool": { "class": "Pool", "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.3.30", "192.0.3.40" ] } ] } } }
- Task
Id string - ID of AS3 post declaration async task
- Tenant
Filter string - If there are multiple tenants on a BIG-IP, this attribute helps the user to set a particular tenant to which he want to reflect the changes. Other tenants will neither be created nor be modified.
- Tenant
List string - List of tenants currently deployed on the Big-Ip
- Tenant
Name string - Name of Tenant. This name is used only in the case of Per-Application Deployment. If it is not provided, then a random name would be generated.
- Application
List string - List of applications currently deployed on the Big-Ip
- As3Json string
- Path/Filename of Declarative AS3 JSON which is a json file used with builtin
file
function - Ignore
Metadata bool - Set True if you want to ignore metadata changes during update. By default it is set to false
as3_example1.json
- Example AS3 Declarative JSON file with single tenant
{ "class": "AS3", "action": "deploy", "persist": true, "declaration": { "class": "ADC", "schemaVersion": "3.0.0", "id": "example-declaration-01", "label": "Sample 1", "remark": "Simple HTTP application with round robin pool", "Sample_01": { "class": "Tenant", "defaultRouteDomain": 0, "Application_1": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.0.2.10" ], "pool": "web_pool" }, "web_pool": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.1.100", "192.0.1.110" ] } ] } } } } }
as3_example2.json
- Example AS3 Declarative JSON file with multiple tenants
{ "class": "AS3", "action": "deploy", "persist": true, "declaration": { "class": "ADC", "schemaVersion": "3.0.0", "id": "example-declaration-01", "label": "Sample 1", "remark": "Simple HTTP application with round robin pool", "Sample_02": { "class": "Tenant", "defaultRouteDomain": 0, "Application_2": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.2.2.10" ], "pool": "web_pool2" }, "web_pool2": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.2.1.100", "192.2.1.110" ] } ] } } }, "Sample_03": { "class": "Tenant", "defaultRouteDomain": 0, "Application_3": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.1.2.10" ], "pool": "web_pool3" }, "web_pool3": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.3.1.100", "192.3.1.110" ] } ] } } } } }
perApplication_example
- Per Application Example - JSON file with multiple Applications (and no Tenant Details)
{ "Application1": { "class": "Application", "service": { "class": "Service_HTTP", "virtualAddresses": [ "192.0.2.1" ], "pool": "pool" }, "pool": { "class": "Pool", "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.2.10", "192.0.2.20" ] } ] } }, "Application2": { "class": "Application", "service": { "class": "Service_HTTP", "virtualAddresses": [ "192.0.3.2" ], "pool": "pool" }, "pool": { "class": "Pool", "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.3.30", "192.0.3.40" ] } ] } } }
- Task
Id string - ID of AS3 post declaration async task
- Tenant
Filter string - If there are multiple tenants on a BIG-IP, this attribute helps the user to set a particular tenant to which he want to reflect the changes. Other tenants will neither be created nor be modified.
- Tenant
List string - List of tenants currently deployed on the Big-Ip
- Tenant
Name string - Name of Tenant. This name is used only in the case of Per-Application Deployment. If it is not provided, then a random name would be generated.
- application
List String - List of applications currently deployed on the Big-Ip
- as3Json String
- Path/Filename of Declarative AS3 JSON which is a json file used with builtin
file
function - ignore
Metadata Boolean - Set True if you want to ignore metadata changes during update. By default it is set to false
as3_example1.json
- Example AS3 Declarative JSON file with single tenant
{ "class": "AS3", "action": "deploy", "persist": true, "declaration": { "class": "ADC", "schemaVersion": "3.0.0", "id": "example-declaration-01", "label": "Sample 1", "remark": "Simple HTTP application with round robin pool", "Sample_01": { "class": "Tenant", "defaultRouteDomain": 0, "Application_1": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.0.2.10" ], "pool": "web_pool" }, "web_pool": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.1.100", "192.0.1.110" ] } ] } } } } }
as3_example2.json
- Example AS3 Declarative JSON file with multiple tenants
{ "class": "AS3", "action": "deploy", "persist": true, "declaration": { "class": "ADC", "schemaVersion": "3.0.0", "id": "example-declaration-01", "label": "Sample 1", "remark": "Simple HTTP application with round robin pool", "Sample_02": { "class": "Tenant", "defaultRouteDomain": 0, "Application_2": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.2.2.10" ], "pool": "web_pool2" }, "web_pool2": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.2.1.100", "192.2.1.110" ] } ] } } }, "Sample_03": { "class": "Tenant", "defaultRouteDomain": 0, "Application_3": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.1.2.10" ], "pool": "web_pool3" }, "web_pool3": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.3.1.100", "192.3.1.110" ] } ] } } } } }
perApplication_example
- Per Application Example - JSON file with multiple Applications (and no Tenant Details)
{ "Application1": { "class": "Application", "service": { "class": "Service_HTTP", "virtualAddresses": [ "192.0.2.1" ], "pool": "pool" }, "pool": { "class": "Pool", "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.2.10", "192.0.2.20" ] } ] } }, "Application2": { "class": "Application", "service": { "class": "Service_HTTP", "virtualAddresses": [ "192.0.3.2" ], "pool": "pool" }, "pool": { "class": "Pool", "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.3.30", "192.0.3.40" ] } ] } } }
- task
Id String - ID of AS3 post declaration async task
- tenant
Filter String - If there are multiple tenants on a BIG-IP, this attribute helps the user to set a particular tenant to which he want to reflect the changes. Other tenants will neither be created nor be modified.
- tenant
List String - List of tenants currently deployed on the Big-Ip
- tenant
Name String - Name of Tenant. This name is used only in the case of Per-Application Deployment. If it is not provided, then a random name would be generated.
- application
List string - List of applications currently deployed on the Big-Ip
- as3Json string
- Path/Filename of Declarative AS3 JSON which is a json file used with builtin
file
function - ignore
Metadata boolean - Set True if you want to ignore metadata changes during update. By default it is set to false
as3_example1.json
- Example AS3 Declarative JSON file with single tenant
{ "class": "AS3", "action": "deploy", "persist": true, "declaration": { "class": "ADC", "schemaVersion": "3.0.0", "id": "example-declaration-01", "label": "Sample 1", "remark": "Simple HTTP application with round robin pool", "Sample_01": { "class": "Tenant", "defaultRouteDomain": 0, "Application_1": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.0.2.10" ], "pool": "web_pool" }, "web_pool": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.1.100", "192.0.1.110" ] } ] } } } } }
as3_example2.json
- Example AS3 Declarative JSON file with multiple tenants
{ "class": "AS3", "action": "deploy", "persist": true, "declaration": { "class": "ADC", "schemaVersion": "3.0.0", "id": "example-declaration-01", "label": "Sample 1", "remark": "Simple HTTP application with round robin pool", "Sample_02": { "class": "Tenant", "defaultRouteDomain": 0, "Application_2": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.2.2.10" ], "pool": "web_pool2" }, "web_pool2": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.2.1.100", "192.2.1.110" ] } ] } } }, "Sample_03": { "class": "Tenant", "defaultRouteDomain": 0, "Application_3": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.1.2.10" ], "pool": "web_pool3" }, "web_pool3": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.3.1.100", "192.3.1.110" ] } ] } } } } }
perApplication_example
- Per Application Example - JSON file with multiple Applications (and no Tenant Details)
{ "Application1": { "class": "Application", "service": { "class": "Service_HTTP", "virtualAddresses": [ "192.0.2.1" ], "pool": "pool" }, "pool": { "class": "Pool", "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.2.10", "192.0.2.20" ] } ] } }, "Application2": { "class": "Application", "service": { "class": "Service_HTTP", "virtualAddresses": [ "192.0.3.2" ], "pool": "pool" }, "pool": { "class": "Pool", "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.3.30", "192.0.3.40" ] } ] } } }
- task
Id string - ID of AS3 post declaration async task
- tenant
Filter string - If there are multiple tenants on a BIG-IP, this attribute helps the user to set a particular tenant to which he want to reflect the changes. Other tenants will neither be created nor be modified.
- tenant
List string - List of tenants currently deployed on the Big-Ip
- tenant
Name string - Name of Tenant. This name is used only in the case of Per-Application Deployment. If it is not provided, then a random name would be generated.
- application_
list str - List of applications currently deployed on the Big-Ip
- as3_
json str - Path/Filename of Declarative AS3 JSON which is a json file used with builtin
file
function - ignore_
metadata bool - Set True if you want to ignore metadata changes during update. By default it is set to false
as3_example1.json
- Example AS3 Declarative JSON file with single tenant
{ "class": "AS3", "action": "deploy", "persist": true, "declaration": { "class": "ADC", "schemaVersion": "3.0.0", "id": "example-declaration-01", "label": "Sample 1", "remark": "Simple HTTP application with round robin pool", "Sample_01": { "class": "Tenant", "defaultRouteDomain": 0, "Application_1": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.0.2.10" ], "pool": "web_pool" }, "web_pool": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.1.100", "192.0.1.110" ] } ] } } } } }
as3_example2.json
- Example AS3 Declarative JSON file with multiple tenants
{ "class": "AS3", "action": "deploy", "persist": true, "declaration": { "class": "ADC", "schemaVersion": "3.0.0", "id": "example-declaration-01", "label": "Sample 1", "remark": "Simple HTTP application with round robin pool", "Sample_02": { "class": "Tenant", "defaultRouteDomain": 0, "Application_2": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.2.2.10" ], "pool": "web_pool2" }, "web_pool2": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.2.1.100", "192.2.1.110" ] } ] } } }, "Sample_03": { "class": "Tenant", "defaultRouteDomain": 0, "Application_3": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.1.2.10" ], "pool": "web_pool3" }, "web_pool3": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.3.1.100", "192.3.1.110" ] } ] } } } } }
perApplication_example
- Per Application Example - JSON file with multiple Applications (and no Tenant Details)
{ "Application1": { "class": "Application", "service": { "class": "Service_HTTP", "virtualAddresses": [ "192.0.2.1" ], "pool": "pool" }, "pool": { "class": "Pool", "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.2.10", "192.0.2.20" ] } ] } }, "Application2": { "class": "Application", "service": { "class": "Service_HTTP", "virtualAddresses": [ "192.0.3.2" ], "pool": "pool" }, "pool": { "class": "Pool", "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.3.30", "192.0.3.40" ] } ] } } }
- task_
id str - ID of AS3 post declaration async task
- tenant_
filter str - If there are multiple tenants on a BIG-IP, this attribute helps the user to set a particular tenant to which he want to reflect the changes. Other tenants will neither be created nor be modified.
- tenant_
list str - List of tenants currently deployed on the Big-Ip
- tenant_
name str - Name of Tenant. This name is used only in the case of Per-Application Deployment. If it is not provided, then a random name would be generated.
- application
List String - List of applications currently deployed on the Big-Ip
- as3Json String
- Path/Filename of Declarative AS3 JSON which is a json file used with builtin
file
function - ignore
Metadata Boolean - Set True if you want to ignore metadata changes during update. By default it is set to false
as3_example1.json
- Example AS3 Declarative JSON file with single tenant
{ "class": "AS3", "action": "deploy", "persist": true, "declaration": { "class": "ADC", "schemaVersion": "3.0.0", "id": "example-declaration-01", "label": "Sample 1", "remark": "Simple HTTP application with round robin pool", "Sample_01": { "class": "Tenant", "defaultRouteDomain": 0, "Application_1": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.0.2.10" ], "pool": "web_pool" }, "web_pool": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.1.100", "192.0.1.110" ] } ] } } } } }
as3_example2.json
- Example AS3 Declarative JSON file with multiple tenants
{ "class": "AS3", "action": "deploy", "persist": true, "declaration": { "class": "ADC", "schemaVersion": "3.0.0", "id": "example-declaration-01", "label": "Sample 1", "remark": "Simple HTTP application with round robin pool", "Sample_02": { "class": "Tenant", "defaultRouteDomain": 0, "Application_2": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.2.2.10" ], "pool": "web_pool2" }, "web_pool2": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.2.1.100", "192.2.1.110" ] } ] } } }, "Sample_03": { "class": "Tenant", "defaultRouteDomain": 0, "Application_3": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.1.2.10" ], "pool": "web_pool3" }, "web_pool3": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.3.1.100", "192.3.1.110" ] } ] } } } } }
perApplication_example
- Per Application Example - JSON file with multiple Applications (and no Tenant Details)
{ "Application1": { "class": "Application", "service": { "class": "Service_HTTP", "virtualAddresses": [ "192.0.2.1" ], "pool": "pool" }, "pool": { "class": "Pool", "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.2.10", "192.0.2.20" ] } ] } }, "Application2": { "class": "Application", "service": { "class": "Service_HTTP", "virtualAddresses": [ "192.0.3.2" ], "pool": "pool" }, "pool": { "class": "Pool", "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.3.30", "192.0.3.40" ] } ] } } }
- task
Id String - ID of AS3 post declaration async task
- tenant
Filter String - If there are multiple tenants on a BIG-IP, this attribute helps the user to set a particular tenant to which he want to reflect the changes. Other tenants will neither be created nor be modified.
- tenant
List String - List of tenants currently deployed on the Big-Ip
- tenant
Name String - Name of Tenant. This name is used only in the case of Per-Application Deployment. If it is not provided, then a random name would be generated.
Outputs
All input properties are implicitly available as output properties. Additionally, the As3 resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Per
App boolMode - Will specify whether is deployment is done via Per-Application Way or Traditional Way
- Id string
- The provider-assigned unique ID for this managed resource.
- Per
App boolMode - Will specify whether is deployment is done via Per-Application Way or Traditional Way
- id String
- The provider-assigned unique ID for this managed resource.
- per
App BooleanMode - Will specify whether is deployment is done via Per-Application Way or Traditional Way
- id string
- The provider-assigned unique ID for this managed resource.
- per
App booleanMode - Will specify whether is deployment is done via Per-Application Way or Traditional Way
- id str
- The provider-assigned unique ID for this managed resource.
- per_
app_ boolmode - Will specify whether is deployment is done via Per-Application Way or Traditional Way
- id String
- The provider-assigned unique ID for this managed resource.
- per
App BooleanMode - Will specify whether is deployment is done via Per-Application Way or Traditional Way
Look up Existing As3 Resource
Get an existing As3 resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: As3State, opts?: CustomResourceOptions): As3
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
application_list: Optional[str] = None,
as3_json: Optional[str] = None,
ignore_metadata: Optional[bool] = None,
per_app_mode: Optional[bool] = None,
task_id: Optional[str] = None,
tenant_filter: Optional[str] = None,
tenant_list: Optional[str] = None,
tenant_name: Optional[str] = None) -> As3
func GetAs3(ctx *Context, name string, id IDInput, state *As3State, opts ...ResourceOption) (*As3, error)
public static As3 Get(string name, Input<string> id, As3State? state, CustomResourceOptions? opts = null)
public static As3 get(String name, Output<String> id, As3State state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Application
List string - List of applications currently deployed on the Big-Ip
- As3Json string
- Path/Filename of Declarative AS3 JSON which is a json file used with builtin
file
function - Ignore
Metadata bool - Set True if you want to ignore metadata changes during update. By default it is set to false
as3_example1.json
- Example AS3 Declarative JSON file with single tenant
{ "class": "AS3", "action": "deploy", "persist": true, "declaration": { "class": "ADC", "schemaVersion": "3.0.0", "id": "example-declaration-01", "label": "Sample 1", "remark": "Simple HTTP application with round robin pool", "Sample_01": { "class": "Tenant", "defaultRouteDomain": 0, "Application_1": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.0.2.10" ], "pool": "web_pool" }, "web_pool": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.1.100", "192.0.1.110" ] } ] } } } } }
as3_example2.json
- Example AS3 Declarative JSON file with multiple tenants
{ "class": "AS3", "action": "deploy", "persist": true, "declaration": { "class": "ADC", "schemaVersion": "3.0.0", "id": "example-declaration-01", "label": "Sample 1", "remark": "Simple HTTP application with round robin pool", "Sample_02": { "class": "Tenant", "defaultRouteDomain": 0, "Application_2": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.2.2.10" ], "pool": "web_pool2" }, "web_pool2": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.2.1.100", "192.2.1.110" ] } ] } } }, "Sample_03": { "class": "Tenant", "defaultRouteDomain": 0, "Application_3": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.1.2.10" ], "pool": "web_pool3" }, "web_pool3": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.3.1.100", "192.3.1.110" ] } ] } } } } }
perApplication_example
- Per Application Example - JSON file with multiple Applications (and no Tenant Details)
{ "Application1": { "class": "Application", "service": { "class": "Service_HTTP", "virtualAddresses": [ "192.0.2.1" ], "pool": "pool" }, "pool": { "class": "Pool", "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.2.10", "192.0.2.20" ] } ] } }, "Application2": { "class": "Application", "service": { "class": "Service_HTTP", "virtualAddresses": [ "192.0.3.2" ], "pool": "pool" }, "pool": { "class": "Pool", "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.3.30", "192.0.3.40" ] } ] } } }
- Per
App boolMode - Will specify whether is deployment is done via Per-Application Way or Traditional Way
- Task
Id string - ID of AS3 post declaration async task
- Tenant
Filter string - If there are multiple tenants on a BIG-IP, this attribute helps the user to set a particular tenant to which he want to reflect the changes. Other tenants will neither be created nor be modified.
- Tenant
List string - List of tenants currently deployed on the Big-Ip
- Tenant
Name string - Name of Tenant. This name is used only in the case of Per-Application Deployment. If it is not provided, then a random name would be generated.
- Application
List string - List of applications currently deployed on the Big-Ip
- As3Json string
- Path/Filename of Declarative AS3 JSON which is a json file used with builtin
file
function - Ignore
Metadata bool - Set True if you want to ignore metadata changes during update. By default it is set to false
as3_example1.json
- Example AS3 Declarative JSON file with single tenant
{ "class": "AS3", "action": "deploy", "persist": true, "declaration": { "class": "ADC", "schemaVersion": "3.0.0", "id": "example-declaration-01", "label": "Sample 1", "remark": "Simple HTTP application with round robin pool", "Sample_01": { "class": "Tenant", "defaultRouteDomain": 0, "Application_1": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.0.2.10" ], "pool": "web_pool" }, "web_pool": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.1.100", "192.0.1.110" ] } ] } } } } }
as3_example2.json
- Example AS3 Declarative JSON file with multiple tenants
{ "class": "AS3", "action": "deploy", "persist": true, "declaration": { "class": "ADC", "schemaVersion": "3.0.0", "id": "example-declaration-01", "label": "Sample 1", "remark": "Simple HTTP application with round robin pool", "Sample_02": { "class": "Tenant", "defaultRouteDomain": 0, "Application_2": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.2.2.10" ], "pool": "web_pool2" }, "web_pool2": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.2.1.100", "192.2.1.110" ] } ] } } }, "Sample_03": { "class": "Tenant", "defaultRouteDomain": 0, "Application_3": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.1.2.10" ], "pool": "web_pool3" }, "web_pool3": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.3.1.100", "192.3.1.110" ] } ] } } } } }
perApplication_example
- Per Application Example - JSON file with multiple Applications (and no Tenant Details)
{ "Application1": { "class": "Application", "service": { "class": "Service_HTTP", "virtualAddresses": [ "192.0.2.1" ], "pool": "pool" }, "pool": { "class": "Pool", "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.2.10", "192.0.2.20" ] } ] } }, "Application2": { "class": "Application", "service": { "class": "Service_HTTP", "virtualAddresses": [ "192.0.3.2" ], "pool": "pool" }, "pool": { "class": "Pool", "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.3.30", "192.0.3.40" ] } ] } } }
- Per
App boolMode - Will specify whether is deployment is done via Per-Application Way or Traditional Way
- Task
Id string - ID of AS3 post declaration async task
- Tenant
Filter string - If there are multiple tenants on a BIG-IP, this attribute helps the user to set a particular tenant to which he want to reflect the changes. Other tenants will neither be created nor be modified.
- Tenant
List string - List of tenants currently deployed on the Big-Ip
- Tenant
Name string - Name of Tenant. This name is used only in the case of Per-Application Deployment. If it is not provided, then a random name would be generated.
- application
List String - List of applications currently deployed on the Big-Ip
- as3Json String
- Path/Filename of Declarative AS3 JSON which is a json file used with builtin
file
function - ignore
Metadata Boolean - Set True if you want to ignore metadata changes during update. By default it is set to false
as3_example1.json
- Example AS3 Declarative JSON file with single tenant
{ "class": "AS3", "action": "deploy", "persist": true, "declaration": { "class": "ADC", "schemaVersion": "3.0.0", "id": "example-declaration-01", "label": "Sample 1", "remark": "Simple HTTP application with round robin pool", "Sample_01": { "class": "Tenant", "defaultRouteDomain": 0, "Application_1": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.0.2.10" ], "pool": "web_pool" }, "web_pool": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.1.100", "192.0.1.110" ] } ] } } } } }
as3_example2.json
- Example AS3 Declarative JSON file with multiple tenants
{ "class": "AS3", "action": "deploy", "persist": true, "declaration": { "class": "ADC", "schemaVersion": "3.0.0", "id": "example-declaration-01", "label": "Sample 1", "remark": "Simple HTTP application with round robin pool", "Sample_02": { "class": "Tenant", "defaultRouteDomain": 0, "Application_2": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.2.2.10" ], "pool": "web_pool2" }, "web_pool2": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.2.1.100", "192.2.1.110" ] } ] } } }, "Sample_03": { "class": "Tenant", "defaultRouteDomain": 0, "Application_3": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.1.2.10" ], "pool": "web_pool3" }, "web_pool3": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.3.1.100", "192.3.1.110" ] } ] } } } } }
perApplication_example
- Per Application Example - JSON file with multiple Applications (and no Tenant Details)
{ "Application1": { "class": "Application", "service": { "class": "Service_HTTP", "virtualAddresses": [ "192.0.2.1" ], "pool": "pool" }, "pool": { "class": "Pool", "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.2.10", "192.0.2.20" ] } ] } }, "Application2": { "class": "Application", "service": { "class": "Service_HTTP", "virtualAddresses": [ "192.0.3.2" ], "pool": "pool" }, "pool": { "class": "Pool", "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.3.30", "192.0.3.40" ] } ] } } }
- per
App BooleanMode - Will specify whether is deployment is done via Per-Application Way or Traditional Way
- task
Id String - ID of AS3 post declaration async task
- tenant
Filter String - If there are multiple tenants on a BIG-IP, this attribute helps the user to set a particular tenant to which he want to reflect the changes. Other tenants will neither be created nor be modified.
- tenant
List String - List of tenants currently deployed on the Big-Ip
- tenant
Name String - Name of Tenant. This name is used only in the case of Per-Application Deployment. If it is not provided, then a random name would be generated.
- application
List string - List of applications currently deployed on the Big-Ip
- as3Json string
- Path/Filename of Declarative AS3 JSON which is a json file used with builtin
file
function - ignore
Metadata boolean - Set True if you want to ignore metadata changes during update. By default it is set to false
as3_example1.json
- Example AS3 Declarative JSON file with single tenant
{ "class": "AS3", "action": "deploy", "persist": true, "declaration": { "class": "ADC", "schemaVersion": "3.0.0", "id": "example-declaration-01", "label": "Sample 1", "remark": "Simple HTTP application with round robin pool", "Sample_01": { "class": "Tenant", "defaultRouteDomain": 0, "Application_1": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.0.2.10" ], "pool": "web_pool" }, "web_pool": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.1.100", "192.0.1.110" ] } ] } } } } }
as3_example2.json
- Example AS3 Declarative JSON file with multiple tenants
{ "class": "AS3", "action": "deploy", "persist": true, "declaration": { "class": "ADC", "schemaVersion": "3.0.0", "id": "example-declaration-01", "label": "Sample 1", "remark": "Simple HTTP application with round robin pool", "Sample_02": { "class": "Tenant", "defaultRouteDomain": 0, "Application_2": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.2.2.10" ], "pool": "web_pool2" }, "web_pool2": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.2.1.100", "192.2.1.110" ] } ] } } }, "Sample_03": { "class": "Tenant", "defaultRouteDomain": 0, "Application_3": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.1.2.10" ], "pool": "web_pool3" }, "web_pool3": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.3.1.100", "192.3.1.110" ] } ] } } } } }
perApplication_example
- Per Application Example - JSON file with multiple Applications (and no Tenant Details)
{ "Application1": { "class": "Application", "service": { "class": "Service_HTTP", "virtualAddresses": [ "192.0.2.1" ], "pool": "pool" }, "pool": { "class": "Pool", "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.2.10", "192.0.2.20" ] } ] } }, "Application2": { "class": "Application", "service": { "class": "Service_HTTP", "virtualAddresses": [ "192.0.3.2" ], "pool": "pool" }, "pool": { "class": "Pool", "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.3.30", "192.0.3.40" ] } ] } } }
- per
App booleanMode - Will specify whether is deployment is done via Per-Application Way or Traditional Way
- task
Id string - ID of AS3 post declaration async task
- tenant
Filter string - If there are multiple tenants on a BIG-IP, this attribute helps the user to set a particular tenant to which he want to reflect the changes. Other tenants will neither be created nor be modified.
- tenant
List string - List of tenants currently deployed on the Big-Ip
- tenant
Name string - Name of Tenant. This name is used only in the case of Per-Application Deployment. If it is not provided, then a random name would be generated.
- application_
list str - List of applications currently deployed on the Big-Ip
- as3_
json str - Path/Filename of Declarative AS3 JSON which is a json file used with builtin
file
function - ignore_
metadata bool - Set True if you want to ignore metadata changes during update. By default it is set to false
as3_example1.json
- Example AS3 Declarative JSON file with single tenant
{ "class": "AS3", "action": "deploy", "persist": true, "declaration": { "class": "ADC", "schemaVersion": "3.0.0", "id": "example-declaration-01", "label": "Sample 1", "remark": "Simple HTTP application with round robin pool", "Sample_01": { "class": "Tenant", "defaultRouteDomain": 0, "Application_1": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.0.2.10" ], "pool": "web_pool" }, "web_pool": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.1.100", "192.0.1.110" ] } ] } } } } }
as3_example2.json
- Example AS3 Declarative JSON file with multiple tenants
{ "class": "AS3", "action": "deploy", "persist": true, "declaration": { "class": "ADC", "schemaVersion": "3.0.0", "id": "example-declaration-01", "label": "Sample 1", "remark": "Simple HTTP application with round robin pool", "Sample_02": { "class": "Tenant", "defaultRouteDomain": 0, "Application_2": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.2.2.10" ], "pool": "web_pool2" }, "web_pool2": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.2.1.100", "192.2.1.110" ] } ] } } }, "Sample_03": { "class": "Tenant", "defaultRouteDomain": 0, "Application_3": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.1.2.10" ], "pool": "web_pool3" }, "web_pool3": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.3.1.100", "192.3.1.110" ] } ] } } } } }
perApplication_example
- Per Application Example - JSON file with multiple Applications (and no Tenant Details)
{ "Application1": { "class": "Application", "service": { "class": "Service_HTTP", "virtualAddresses": [ "192.0.2.1" ], "pool": "pool" }, "pool": { "class": "Pool", "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.2.10", "192.0.2.20" ] } ] } }, "Application2": { "class": "Application", "service": { "class": "Service_HTTP", "virtualAddresses": [ "192.0.3.2" ], "pool": "pool" }, "pool": { "class": "Pool", "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.3.30", "192.0.3.40" ] } ] } } }
- per_
app_ boolmode - Will specify whether is deployment is done via Per-Application Way or Traditional Way
- task_
id str - ID of AS3 post declaration async task
- tenant_
filter str - If there are multiple tenants on a BIG-IP, this attribute helps the user to set a particular tenant to which he want to reflect the changes. Other tenants will neither be created nor be modified.
- tenant_
list str - List of tenants currently deployed on the Big-Ip
- tenant_
name str - Name of Tenant. This name is used only in the case of Per-Application Deployment. If it is not provided, then a random name would be generated.
- application
List String - List of applications currently deployed on the Big-Ip
- as3Json String
- Path/Filename of Declarative AS3 JSON which is a json file used with builtin
file
function - ignore
Metadata Boolean - Set True if you want to ignore metadata changes during update. By default it is set to false
as3_example1.json
- Example AS3 Declarative JSON file with single tenant
{ "class": "AS3", "action": "deploy", "persist": true, "declaration": { "class": "ADC", "schemaVersion": "3.0.0", "id": "example-declaration-01", "label": "Sample 1", "remark": "Simple HTTP application with round robin pool", "Sample_01": { "class": "Tenant", "defaultRouteDomain": 0, "Application_1": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.0.2.10" ], "pool": "web_pool" }, "web_pool": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.1.100", "192.0.1.110" ] } ] } } } } }
as3_example2.json
- Example AS3 Declarative JSON file with multiple tenants
{ "class": "AS3", "action": "deploy", "persist": true, "declaration": { "class": "ADC", "schemaVersion": "3.0.0", "id": "example-declaration-01", "label": "Sample 1", "remark": "Simple HTTP application with round robin pool", "Sample_02": { "class": "Tenant", "defaultRouteDomain": 0, "Application_2": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.2.2.10" ], "pool": "web_pool2" }, "web_pool2": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.2.1.100", "192.2.1.110" ] } ] } } }, "Sample_03": { "class": "Tenant", "defaultRouteDomain": 0, "Application_3": { "class": "Application", "template": "http", "serviceMain": { "class": "Service_HTTP", "virtualAddresses": [ "10.1.2.10" ], "pool": "web_pool3" }, "web_pool3": { "class": "Pool", "monitors": [ "http" ], "members": [ { "servicePort": 80, "serverAddresses": [ "192.3.1.100", "192.3.1.110" ] } ] } } } } }
perApplication_example
- Per Application Example - JSON file with multiple Applications (and no Tenant Details)
{ "Application1": { "class": "Application", "service": { "class": "Service_HTTP", "virtualAddresses": [ "192.0.2.1" ], "pool": "pool" }, "pool": { "class": "Pool", "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.2.10", "192.0.2.20" ] } ] } }, "Application2": { "class": "Application", "service": { "class": "Service_HTTP", "virtualAddresses": [ "192.0.3.2" ], "pool": "pool" }, "pool": { "class": "Pool", "members": [ { "servicePort": 80, "serverAddresses": [ "192.0.3.30", "192.0.3.40" ] } ] } } }
- per
App BooleanMode - Will specify whether is deployment is done via Per-Application Way or Traditional Way
- task
Id String - ID of AS3 post declaration async task
- tenant
Filter String - If there are multiple tenants on a BIG-IP, this attribute helps the user to set a particular tenant to which he want to reflect the changes. Other tenants will neither be created nor be modified.
- tenant
List String - List of tenants currently deployed on the Big-Ip
- tenant
Name String - Name of Tenant. This name is used only in the case of Per-Application Deployment. If it is not provided, then a random name would be generated.
Package Details
- Repository
- f5 BIG-IP pulumi/pulumi-f5bigip
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
bigip
Terraform Provider.