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
1. If not already created, create a Terraform workspace for the "dev" environment:
241
+
242
+
```console
243
+
terraform workspace new dev
244
+
```
245
+
246
+
Otherwise, switch to the existing "dev" workspace:
247
+
248
+
```console
249
+
terraform workspace select dev
250
+
```
251
+
252
+
1. Initialize and upgrade the Terraform workspace, then apply the configuration
253
+
to share the AMI with accounts in the "dev" environment:
254
+
255
+
```console
256
+
terraform init -upgrade=true
257
+
terraform apply
258
+
```
157
259
158
260
<!-- BEGIN_TF_DOCS -->
159
261
## Requirements ##
@@ -185,6 +287,8 @@ No modules.
185
287
| build\_bucket | The S3 bucket containing the CDM tool installers. | `string` | `""` | no |
186
288
| build\_region | The region in which to retrieve the base AMI from and build the new AMI. | `string` | `"us-east-1"` | no |
187
289
| build\_region\_kms | The ID or ARN of the KMS key to use for AMI encryption. | `string` | `"alias/cool-amis"` | no |
290
+
| github\_ref\_name | The GitHub short ref name to use for the tags applied to the created AMI. | `string` | `""` | no |
291
+
| github\_sha | The GitHub commit SHA to use for the tags applied to the created AMI. | `string` | `""` | no |
188
292
| is\_prerelease | The pre-release status to use for the tags applied to the created AMI. | `bool` | `false` | no |
189
293
| region\_kms\_keys | A map of regions to copy the created AMI to and the KMS keys to use for encryption in that region. The keys for this map must match the values provided to the aws\_regions variable. Example: {"us-east-1": "alias/example-kms"} | `map(string)` | `{}` | no |
190
294
| release\_tag | The GitHub release tag to use for the tags applied to the created AMI. | `string` | `""` | no |
@@ -196,6 +300,16 @@ No modules.
196
300
No outputs.
197
301
<!-- END_TF_DOCS -->
198
302
303
+
<<<<<<< HEAD
304
+
=======
305
+
## New repositories from a skeleton ##
306
+
307
+
Please see our [Project Setup guide](https://github.com/cisagov/development-guide/tree/develop/project_setup)
308
+
for step-by-step instructions on how to start a new repository from
309
+
a skeleton. This will save you time and effort when configuring a
310
+
new repository!
311
+
312
+
>>>>>>> b702664447def7d112564cadeda1ebe32e064c2d
199
313
## Contributing ##
200
314
201
315
We welcome contributions! Please see [`CONTRIBUTING.md`](CONTRIBUTING.md) for
0 commit comments