-
Notifications
You must be signed in to change notification settings - Fork 23
Open
Labels
bugSomething isn't workingSomething isn't workinguntriagedIssue needs to be reviewed for validityIssue needs to be reviewed for validity
Description
Environment
- Declarative Onboarding Version: AS 3.50
- BIG-IP Version:
Summary
I have created following code in terraform to create DC, GTM and then VM instances in them.
This works fine for creating things from Scratch but have issues mentioned below.
Problem is its creating everything from Scratch and NOT adding/appending VM instances inside existing DC and GTM.
Could you please do help me here?
resource "bigip_as3" "gtm_configuration" {
provider = bigip.TESTgtm
as3_json = jsonencode({
class = "AS3"
action = "deploy"
persist = true
declaration = {
class = "ADC",
schemaVersion = "3.41.0",
id = "GSLB_Sample",
Common = {
class = "Tenant",
Shared = {
class = "Application",
template = "shared",
testDataCenter = {
class = "GSLB_Data_Center"
}
testServer = {
class = "GSLB_Server",
dataCenter = {
use = "testDataCenter"
},
devices = [
{
address = "1.2.3.7"
}
],
virtualServers = [
{
address = "1.2.3.8",
port = 5050,
name = "virtualAddress1"
},
{
address = "1.2.3.9",
port = 5051,
name = "virtualAddress2"
}
]
}
}
}
}
})
}
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workinguntriagedIssue needs to be reviewed for validityIssue needs to be reviewed for validity