Skip to content
This repository has been archived by the owner on Jan 30, 2021. It is now read-only.

Init #1

Merged
merged 8 commits into from
Oct 13, 2017
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
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright {yyyy} {name of copyright owner}
Copyright 2017 Cloud Posse LLC

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
61 changes: 61 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
# Define composite variables for resources
module "label" {
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=tags/0.2.1"
namespace = "${var.namespace}"
name = "${var.name}"
stage = "${var.stage}"
attributes = ["s3", "backend"]
}

locals {
aggregated_user_data = "${join("\n", var.user_data)}"
template_path = "${path.module}/templates/${var.os}.sh"
}

data "template_file" "default" {
template = "${file(local.template_path)}"

vars {
s3_user_data_uri = "s3://${aws_s3_bucket_object.default.bucket}${aws_s3_bucket_object.default.key}"
}
}

resource "aws_s3_bucket_object" "default" {
bucket = "${var.bucket}"
key = "${var.path}/user_data.sh"
content = "${local.aggregated_user_data}"
etag = "${md5(local.aggregated_user_data)}"
}

## IAM Role Policy that allows access to S3
resource "aws_iam_policy" "default" {
name = "${module.label.id}"

lifecycle {
create_before_destroy = true
}

policy = "${data.aws_iam_policy_document.default.json}"
}

data "aws_iam_policy_document" "default" {
statement {
actions = ["s3:ListBucket"]

effect = "Allow"

resources = [
"${format("arn:aws:s3:::%v", aws_s3_bucket_object.default.bucket)}",
]
}

statement {
actions = ["s3:GetObject"]

effect = "Allow"

resources = [
"${format("arn:aws:s3:::%v%v", aws_s3_bucket_object.default.bucket, aws_s3_bucket_object.default.key)}",
]
}
}
7 changes: 7 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
output "user_data" {
value = "${data.template_file.default.rendered}"
}

output "policy_arn" {
value = "${aws_iam_policy.default.arn}"
}
12 changes: 12 additions & 0 deletions templates/ubuntu.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Install deps

apt-get -y install python-pip

# Install AWS Client
pip install --upgrade awscli

aws s3 cp ${s3_user_data_uri} /tmp/user_data.sh

eval "$(cat /tmp/user_data.sh)"

rm -rf /tmp/user_data.sh
29 changes: 29 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
variable "namespace" {
default = "global"
}

variable "stage" {
default = "default"
}

variable "name" {}

variable "bucket" {
default = "Bucket name to store user data script"
}

variable "path" {
default = "/"
description = "Path to store user data script in bucket"
}

variable "os" {
default = "ubuntu"
description = "Server OS that will execute user data script"
}

variable "user_data" {
type = "list"
default = []
description = "User data scripts content"
}