unoverse 0.1.203 → 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. `byo_postgres_url` is sensitive, and a
60
- # mark rides every value derived from it, so `pg_external` and the `provision_pg` below
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unoverse",
3
- "version": "0.1.203",
3
+ "version": "0.1.205",
4
4
  "description": "The Unoverse front door — create a Studio project, a universe, or a client app, and launch Studio.",
5
5
  "license": "SEE LICENSE IN README.md",
6
6
  "type": "module",