mirror of
https://github.com/siderolabs/talos.git
synced 2025-08-21 22:51:13 +02:00
27 lines
627 B
Markdown
27 lines
627 B
Markdown
---
|
|
title: "AWS"
|
|
date: 2018-10-29T19:40:55-07:00
|
|
draft: false
|
|
weight: 10
|
|
menu:
|
|
main:
|
|
parent: 'examples'
|
|
weight: 10
|
|
---
|
|
|
|
First, create the AMI:
|
|
|
|
```bash
|
|
docker run \
|
|
--rm \
|
|
--volume $HOME/.aws/credentials:/root/.aws/credentials \
|
|
--env AWS_DEFAULT_PROFILE=${PROFILE} \
|
|
--env AWS_DEFAULT_REGION=${REGION} \
|
|
autonomy/talos:latest ami -var regions=${COMMA_SEPARATED_LIST_OF_REGIONS}
|
|
```
|
|
|
|
Once the AMI is created, you can now start an EC2 instance using the AMI ID.
|
|
Provide the proper configuration as the instance's user data.
|
|
|
|
> An official Terraform module is currently being developed, stay tuned!
|