unoverse 0.1.98 → 0.1.99
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.
|
@@ -41,7 +41,11 @@ provider "aws" {
|
|
|
41
41
|
# membership list, so it stays correct as the ground grows without anyone maintaining it.
|
|
42
42
|
resource "aws_resourcegroups_group" "universe" {
|
|
43
43
|
name = var.name
|
|
44
|
-
description
|
|
44
|
+
# AWS Resource Groups allow ONLY [\sa-zA-Z0-9_.-] in a description — no colon, no
|
|
45
|
+
# parentheses. "unoverse universe: name" failed CreateGroup after four minutes of ALB
|
|
46
|
+
# provisioning, and terraform validate cannot see it: the rule lives in the AWS API, not
|
|
47
|
+
# in the schema.
|
|
48
|
+
description = "unoverse universe ${var.name}"
|
|
45
49
|
|
|
46
50
|
resource_query {
|
|
47
51
|
query = jsonencode({
|
|
@@ -149,7 +153,9 @@ resource "aws_security_group" "app" {
|
|
|
149
153
|
vpc_id = data.aws_vpc.default.id
|
|
150
154
|
|
|
151
155
|
ingress {
|
|
152
|
-
|
|
156
|
+
# Security group descriptions forbid angle brackets. "api.<domain>" reads naturally in
|
|
157
|
+
# prose and is rejected by the API.
|
|
158
|
+
description = "Platform api host, from the ALB only"
|
|
153
159
|
from_port = 4105
|
|
154
160
|
to_port = 4105
|
|
155
161
|
protocol = "tcp"
|
package/package.json
CHANGED