@goldstack/template-lambda-api 0.4.8 → 0.4.12

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goldstack/template-lambda-api",
3
- "version": "0.4.8",
3
+ "version": "0.4.12",
4
4
  "description": "Companion for project templates for deploying Lambdas as a REST API",
5
5
  "keywords": [
6
6
  "goldstack",
@@ -47,18 +47,18 @@
47
47
  "dependencies": {
48
48
  "@goldstack/infra": "0.3.24",
49
49
  "@goldstack/infra-aws": "0.3.31",
50
- "@goldstack/utils-aws-lambda": "0.1.10",
50
+ "@goldstack/utils-aws-lambda": "0.1.12",
51
51
  "@goldstack/utils-cli": "0.2.8",
52
52
  "@goldstack/utils-config": "0.3.23",
53
- "@goldstack/utils-docker": "0.3.27",
53
+ "@goldstack/utils-docker": "0.3.29",
54
54
  "@goldstack/utils-log": "0.2.9",
55
55
  "@goldstack/utils-package": "0.3.26",
56
56
  "@goldstack/utils-package-config": "0.3.26",
57
- "@goldstack/utils-s3-deployment": "0.3.40",
57
+ "@goldstack/utils-s3-deployment": "0.3.42",
58
58
  "@goldstack/utils-sh": "0.4.22",
59
59
  "@goldstack/utils-template": "0.3.24",
60
- "@goldstack/utils-terraform": "0.3.43",
61
- "@goldstack/utils-terraform-aws": "0.3.42",
60
+ "@goldstack/utils-terraform": "0.3.46",
61
+ "@goldstack/utils-terraform-aws": "0.3.46",
62
62
  "@yarnpkg/esbuild-plugin-pnp": "^2.0.0-rc.1",
63
63
  "archiver": "^5.0.0",
64
64
  "esbuild": "^0.14.5",
@@ -17,6 +17,9 @@
17
17
  "tfStateKey": {
18
18
  "$ref": "#/definitions/TerraformStateKey"
19
19
  },
20
+ "tfVersion": {
21
+ "$ref": "#/definitions/TerraformVersion"
22
+ },
20
23
  "awsRegion": {
21
24
  "$ref": "#/definitions/AWSDeploymentRegion"
22
25
  },
@@ -123,6 +126,19 @@
123
126
  "description": "Key used for Terraform state persisted in Terraform state bucket.\n\nWill be auto-generated upon first deployment if not provided.",
124
127
  "title": "Terraform State Key"
125
128
  },
129
+ "TerraformVersion": {
130
+ "type": "string",
131
+ "enum": [
132
+ "0.12",
133
+ "0.13",
134
+ "0.14",
135
+ "0.15",
136
+ "1.0",
137
+ "1.1"
138
+ ],
139
+ "description": "Version of Terraform that the remote state for this deployment was created with.\n\nGo to the next version using `yarn infra upgrade [deploymentName] [targetVersion]`. Note that Terraform versions should only be increased one at a time, so for instance you can go from v0.12 to v0.13 but not from v0.12 to v0.14.",
140
+ "default": "0.12"
141
+ },
126
142
  "AWSDeploymentRegion": {
127
143
  "type": "string",
128
144
  "enum": [
@@ -85,6 +85,9 @@
85
85
  "tfStateKey": {
86
86
  "$ref": "#/definitions/TerraformStateKey"
87
87
  },
88
+ "tfVersion": {
89
+ "$ref": "#/definitions/TerraformVersion"
90
+ },
88
91
  "awsRegion": {
89
92
  "$ref": "#/definitions/AWSDeploymentRegion"
90
93
  },
@@ -191,6 +194,19 @@
191
194
  "description": "Key used for Terraform state persisted in Terraform state bucket.\n\nWill be auto-generated upon first deployment if not provided.",
192
195
  "title": "Terraform State Key"
193
196
  },
197
+ "TerraformVersion": {
198
+ "type": "string",
199
+ "enum": [
200
+ "0.12",
201
+ "0.13",
202
+ "0.14",
203
+ "0.15",
204
+ "1.0",
205
+ "1.1"
206
+ ],
207
+ "description": "Version of Terraform that the remote state for this deployment was created with.\n\nGo to the next version using `yarn infra upgrade [deploymentName] [targetVersion]`. Note that Terraform versions should only be increased one at a time, so for instance you can go from v0.12 to v0.13 but not from v0.12 to v0.14.",
208
+ "default": "0.12"
209
+ },
194
210
  "AWSDeploymentRegion": {
195
211
  "type": "string",
196
212
  "enum": [