unoverse 0.1.90 → 0.1.91
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -381,9 +381,15 @@ resource "digitalocean_project" "universe" {
|
|
|
381
381
|
description = "unoverse universe: ${var.name}"
|
|
382
382
|
purpose = "Web Application"
|
|
383
383
|
environment = var.size == "small" ? "Development" : "Production"
|
|
384
|
+
# EVERY resource this stack creates, or the dashboard lies. The Canvas load balancer was
|
|
385
|
+
# added without being listed here, so it stayed in the account's default project while
|
|
386
|
+
# the rest of the universe sat in this one: two views each reporting "LOAD BALANCERS (1)"
|
|
387
|
+
# and no single place showing what this universe actually is. Anything added below must
|
|
388
|
+
# be added here in the same commit.
|
|
384
389
|
resources = compact([
|
|
385
390
|
digitalocean_droplet.app.urn,
|
|
386
391
|
digitalocean_loadbalancer.public.urn,
|
|
392
|
+
local.has_domain && var.canvas_public ? digitalocean_loadbalancer.canvas[0].urn : "",
|
|
387
393
|
digitalocean_database_cluster.redis.urn,
|
|
388
394
|
local.provision_pg ? digitalocean_database_cluster.pg[0].urn : "",
|
|
389
395
|
])
|
package/package.json
CHANGED