Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
version: 2
jobs:
build:
docker:
- image: hashicorp/terraform:light
working_directory: ~/repo/examples/root-example
steps:
- checkout:
path: ~/repo
- run:
name: Initialize a root module.
command: terraform init
- run:
name: Make sure the syntax is correct.
command: terraform validate -var access_key=DUMMY -var secret_key=DUMMY
- run:
name: Make sure format wouldn't produce any diffs.
command: terraform fmt -check=true
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# terraform-aws-secure-baseline

[![CircleCI](https://circleci.com/gh/nozaq/terraform-aws-secure-baseline.svg?style=svg)](https://circleci.com/gh/nozaq/terraform-aws-secure-baseline)

[Terraform Module Registry](https://registry.terraform.io/modules/nozaq/secure-baseline/aws)

A terraform module to set up your AWS account with the reasonably secure configuration baseline.
Expand Down