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
`connection` is the connection arn of the [connection](https://docs.aws.amazon.com/dtconsole/latest/userguide/welcome-connections.html) to the third-party repo.
74
+
`connection` is the connection arn of the [connection](https://docs.aws.amazon.com/dtconsole/latest/userguide/welcome-connections.html) to the third-party repo.
75
+
76
+
### Sequential Deployment
77
+
By default, the pipeline deploys terraform to AWS accounts in parallel. To deploy terraform sequentially (Eg dev -> test -> prod), use the `sequential` input:
78
+
79
+
```hcl
80
+
module "pipeline" {
81
+
...
82
+
accounts = {
83
+
"dev" = "112233445566"
84
+
"test" = "223344556677"
85
+
"prod" = "334455667788"
86
+
}
87
+
sequential = ["dev", "test", "prod"]
88
+
}
89
+
```
90
+
91
+
`sequential` is an ordered list of the AWS accounts in `accounts`.
0 commit comments