Skip to content

Commit f0b2f24

Browse files
authored
Fix VPC module typings, include outputs that refer to serialized resources (#393)
1 parent 8bc584b commit f0b2f24

File tree

1 file changed

+63
-0
lines changed

1 file changed

+63
-0
lines changed

pkg/modprovider/module_schema_overrides/terraform-aws-vpc.json

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,15 @@
7575
"type": "string"
7676
}
7777
},
78+
"private_subnet_objects": {
79+
"type": "array",
80+
"items": {
81+
"type": "object",
82+
"additionalProperties": {
83+
"$ref": "pulumi.json#/Any"
84+
}
85+
}
86+
},
7887
"private_subnet_arns": {
7988
"type": "array",
8089
"items": {
@@ -99,6 +108,15 @@
99108
"type": "string"
100109
}
101110
},
111+
"public_subnet_objects": {
112+
"type": "array",
113+
"items": {
114+
"type": "object",
115+
"additionalProperties": {
116+
"$ref": "pulumi.json#/Any"
117+
}
118+
}
119+
},
102120
"public_subnet_arns": {
103121
"type": "array",
104122
"items": {
@@ -129,6 +147,15 @@
129147
"type": "string"
130148
}
131149
},
150+
"outpost_subnet_objects": {
151+
"type": "array",
152+
"items": {
153+
"type": "object",
154+
"additionalProperties": {
155+
"$ref": "pulumi.json#/Any"
156+
}
157+
}
158+
},
132159
"outpost_subnets_cidr_blocks": {
133160
"type": "array",
134161
"items": {
@@ -165,6 +192,15 @@
165192
"type": "string"
166193
}
167194
},
195+
"database_subnet_objects": {
196+
"type": "array",
197+
"items": {
198+
"type": "object",
199+
"additionalProperties": {
200+
"$ref": "pulumi.json#/Any"
201+
}
202+
}
203+
},
168204
"database_subnet_group": {
169205
"type": "string"
170206
},
@@ -177,6 +213,15 @@
177213
"type": "string"
178214
}
179215
},
216+
"redshift_subnet_objects": {
217+
"type": "array",
218+
"items": {
219+
"type": "object",
220+
"additionalProperties": {
221+
"$ref": "pulumi.json#/Any"
222+
}
223+
}
224+
},
180225
"redshift_subnet_arns": {
181226
"type": "array",
182227
"items": {
@@ -204,6 +249,15 @@
204249
"type": "string"
205250
}
206251
},
252+
"elasticache_subnet_objects": {
253+
"type": "array",
254+
"items": {
255+
"type": "object",
256+
"additionalProperties": {
257+
"$ref": "pulumi.json#/Any"
258+
}
259+
}
260+
},
207261
"elasticache_subnet_arns": {
208262
"type": "array",
209263
"items": {
@@ -234,6 +288,15 @@
234288
"type": "string"
235289
}
236290
},
291+
"intra_subnet_objects": {
292+
"type": "array",
293+
"items": {
294+
"type": "object",
295+
"additionalProperties": {
296+
"$ref": "pulumi.json#/Any"
297+
}
298+
}
299+
},
237300
"intra_subnet_arns": {
238301
"type": "array",
239302
"items": {

0 commit comments

Comments
 (0)