https://github.com/gulyasm/cloud-meetup-2015
Meetup presentation about Terraform at Cloud Meetup Budapest.
https://github.com/gulyasm/cloud-meetup-2015
Last synced: 17 days ago
JSON representation
Meetup presentation about Terraform at Cloud Meetup Budapest.
- Host: GitHub
- URL: https://github.com/gulyasm/cloud-meetup-2015
- Owner: gulyasm
- Created: 2015-03-03T21:54:51.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-05T08:54:41.000Z (about 10 years ago)
- Last Synced: 2024-08-04T01:24:24.942Z (10 months ago)
- Language: HTML
- Homepage: http://www.meetup.com/Cloud-Budapest/events/220555819/
- Size: 2.04 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cloud meetup 2015 Budapest
Meetup presentation about Terraform at Cloud Meetup Budapest.
Link: http://www.meetup.com/Cloud-Budapest/events/220555819/## Presentation
To start it, just use the `start_presentation` script and go to localhost:8000. If not that, any HTTP server serving the `p` folder is ok.## Terraform code
You need to set the access_key and the secret_key as a `terraform.tfvars` file, next to the meetup.tf file.
Define your credentials:
```
access_key = "foo"
secret_key = "bar"
```Commands I presented:
```bash
# Shows the plan
terraform plan
# Applies the changes to the infrastructure
terraform apply
# Prints the ip output variable
terraform output ip
# Refreshes the state stored
terraform refresh
# Destroys our defined infrastructure
terraform destroy
```