Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/geertvangeest/terraform-aws-teaching
terraform scripts to start teaching instance
https://github.com/geertvangeest/terraform-aws-teaching
Last synced: about 1 month ago
JSON representation
terraform scripts to start teaching instance
- Host: GitHub
- URL: https://github.com/geertvangeest/terraform-aws-teaching
- Owner: GeertvanGeest
- Created: 2021-11-25T13:18:48.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-09-04T13:54:05.000Z (4 months ago)
- Last Synced: 2024-09-05T17:59:25.632Z (4 months ago)
- Language: HCL
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
These are [terraform](https://www.terraform.io/) scripts for deploying an EC2 instance for teaching. By default, it launches the [Ubuntu deep learning base AMI](https://aws.amazon.com/marketplace/pp/prodview-dxk3xpeg6znhm) which has docker pre-installed. To deploy docker containers on the machine, have a look at [https://github.com/GeertvanGeest/AWS-docker](https://github.com/GeertvanGeest/AWS-docker).
Before you start, make sure you have `aws cli` installed and configured. After that, have a look at `terraform.tfvars`. Here you will find variables that you need to change. Once you have adjusted this file, you can run the terraform script by:
```sh
terraform init # only once
terraform plan
terraform apply
```If you want to destroy all rescources run:
```sh
terraform destroy
```