Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/artioml/aws-terraform
:partly_sunny: Infrastructure as Code with declarative modules and configuration files
https://github.com/artioml/aws-terraform
automation aws docker infrastructure-as-code terraform terraform-modules
Last synced: 7 days ago
JSON representation
:partly_sunny: Infrastructure as Code with declarative modules and configuration files
- Host: GitHub
- URL: https://github.com/artioml/aws-terraform
- Owner: ArtiomL
- License: mit
- Created: 2019-03-11T16:42:07.000Z (almost 6 years ago)
- Default Branch: develop
- Last Pushed: 2020-07-22T17:27:33.000Z (over 4 years ago)
- Last Synced: 2023-10-20T10:39:40.137Z (over 1 year ago)
- Topics: automation, aws, docker, infrastructure-as-code, terraform, terraform-modules
- Language: HCL
- Homepage:
- Size: 320 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# aws-terraform
[![Build Status](https://img.shields.io/travis/com/ArtiomL/aws-terraform/develop.svg)](https://travis-ci.com/ArtiomL/aws-terraform)
[![Releases](https://img.shields.io/github/release/ArtiomL/aws-terraform.svg)](https://github.com/ArtiomL/aws-terraform/releases)
[![Commits](https://img.shields.io/github/commits-since/ArtiomL/aws-terraform/latest.svg?label=commits%20since)](https://github.com/ArtiomL/aws-terraform/commits/master)
[![Maintenance](https://img.shields.io/maintenance/yes/2020.svg)](https://github.com/ArtiomL/aws-terraform/graphs/code-frequency)
[![Issues](https://img.shields.io/github/issues/ArtiomL/aws-terraform.svg)](https://github.com/ArtiomL/aws-terraform/issues)
[![Docker Hub](https://img.shields.io/docker/pulls/artioml/aws-terraform.svg)](https://hub.docker.com/r/artioml/aws-terraform/)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](/LICENSE)
## Table of Contents
- [Description](#description)
- [Installation](#installation)
- [Run](#run)
- [Credentials](#credentials)
- [Extensibility](#extensibility)
- [Modules](#modules)
- [License](LICENSE)
## Description
Infrastructure as Code with declarative modules and configuration files.
## Installation
### Run
```shell
# Terraform v0.12.10
docker run -it artioml/aws-terraform```
### Credentials
The home directory used when running the image (`/home/user/`) has the following [structure](.creds).
Each subdirectory contains the relevant access keys / tokens.
Either edit the `credentials` files for your environment, or mount a local directory with the same path structure:```
docker run -it -v /Users/tdurden/:/home/user/ artioml/aws-terraform
```
## Extensibility
The container will dynamically pull down (and `cd` to) whatever GitHub repository is specified in the `REPO` environment variable. This enables Continuous Delivery of new content every time the container is started and that repository is updated. It also allows you to load and run your own custom Terraform environments.```shell
-e "REPO=/"
```
For [example](https://github.com/ArtiomL/aws-labs):
```shell
docker run -it -e "REPO=artioml/aws-labs" artioml/aws-terraform
```