unoverse 0.1.204 → 0.1.205
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.
|
@@ -56,12 +56,8 @@ locals {
|
|
|
56
56
|
|
|
57
57
|
# Postgres modes (variables.tf): external URL > existing DO cluster > provision.
|
|
58
58
|
#
|
|
59
|
-
# `nonsensitive` on the TEST, never on the URL
|
|
60
|
-
#
|
|
61
|
-
# were sensitive booleans. That reached `monthly_estimate` in prices.tf, and Terraform
|
|
62
|
-
# refuses a root output carrying a mark: the DO ground could not plan at all, whether or
|
|
63
|
-
# not a URL was set. WHETHER a database was brought is not the secret; the URL is, and it
|
|
64
|
-
# stays marked everywhere it is actually used.
|
|
59
|
+
# `nonsensitive` on the TEST, never on the URL: WHETHER a database was brought is not a
|
|
60
|
+
# secret, and Terraform refuses an output derived from one (prices.tf `monthly_estimate`).
|
|
65
61
|
pg_external = nonsensitive(var.byo_postgres_url != "")
|
|
66
62
|
pg_adopt = !local.pg_external && var.existing_pg_cluster_name != ""
|
|
67
63
|
provision_pg = !local.pg_external && !local.pg_adopt
|
package/package.json
CHANGED