21 lines
460 B
Terraform
21 lines
460 B
Terraform
|
resource "juju_model" "cpe-focal" {
|
||
|
name = "cpe-focal"
|
||
|
|
||
|
cloud {
|
||
|
name = "home-maas"
|
||
|
}
|
||
|
|
||
|
config = {
|
||
|
cloudinit-userdata = file("user-data.yaml")
|
||
|
|
||
|
apt-mirror = "http://192.168.1.12/archive.ubuntu.com/ubuntu"
|
||
|
lxd-snap-channel = "5.0/stable"
|
||
|
|
||
|
container-image-metadata-url = "http://192.168.1.12/lxd/"
|
||
|
container-image-stream = "released"
|
||
|
|
||
|
agent-metadata-url = "http://192.168.1.12/juju/tools/"
|
||
|
agent-stream = "released"
|
||
|
}
|
||
|
}
|