53 lines
1.0 KiB
HCL
53 lines
1.0 KiB
HCL
resource "juju_machine" "memcache" {
|
|
count = var.num_units
|
|
model = var.model-name
|
|
placement = join(":", ["lxd", juju_machine.all_machines[var.controller_ids[count.index]].machine_id])
|
|
constraints = "spaces=oam"
|
|
}
|
|
|
|
resource "juju_application" "memcached" {
|
|
name = "memcached"
|
|
|
|
model = var.model-name
|
|
|
|
charm {
|
|
name = "memcached"
|
|
channel = "latest/stable"
|
|
base = var.default-base
|
|
}
|
|
|
|
units = var.num_units
|
|
|
|
placement = "${join(",", sort([
|
|
for res in juju_machine.memcache :
|
|
res.machine_id
|
|
]))}"
|
|
|
|
|
|
endpoint_bindings = [{
|
|
space = var.internal-space
|
|
},{
|
|
endpoint = "cache"
|
|
space = var.internal-space
|
|
}]
|
|
|
|
config = {
|
|
allow-ufw-ip6-softfail = "true"
|
|
}
|
|
}
|
|
|
|
resource "juju_integration" "nova-cloud-controller-memcache" {
|
|
|
|
model = var.model-name
|
|
|
|
application {
|
|
name = juju_application.nova-cloud-controller.name
|
|
endpoint = "memcache"
|
|
}
|
|
|
|
application {
|
|
name = juju_application.memcached.name
|
|
endpoint = "cache"
|
|
}
|
|
}
|