0
0
llucycodes42
The code creates a resource called "ibm_lb_vpx_ha" with the following attributes:
primary_id: The id of the Primary IBM LBP VPS
secondary_id: The id of the Secondary IBM LBP VPS
stay_secondary: true
Shortcut: tf_ibm_lb_vpx_ha
resource "ibm_lb_vpx_ha" "${myResourceName}" {
primary_id = "${ibm_lb_vpx.lb_vpx.id}"
secondary_id = "${ibm_lb_vpx.lb_vpx.id}"
stay_secondary = true
}