You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -318,6 +319,21 @@ CloudFormation intrinsic functions such as `Ref` and `Fn::GetAtt` are supported.
318
319
319
320
When setting up a notification target against a FIFO SQS queue, the queue must enable the content-based deduplication option and you must configure the `messageGroupId`.
320
321
322
+
### Blue green deployment
323
+
324
+
To implement a [blue-green deployment with Step Functions](https://theburningmonk.com/2019/08/how-to-do-blue-green-deployment-for-step-functions/) you need to reference the exact versions of the functions.
325
+
326
+
To do this, you can specify `useExactVersion: true` in the state machine.
327
+
328
+
```yml
329
+
stepFunctions:
330
+
stateMachines:
331
+
hellostepfunc1:
332
+
useExactVersion: true
333
+
definition:
334
+
...
335
+
```
336
+
321
337
## Current Gotcha
322
338
323
339
Please keep this gotcha in mind if you want to reference the `name` from the `resources` section. To generate Logical ID for CloudFormation, the plugin transforms the specified name in serverless.yml based on the following scheme.
0 commit comments