diff --git a/README.md b/README.md
index aad3cc5..196066c 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@
Terraform AWS Iam Role
-
+
Terraform module to create Iam role resource on AWS.
@@ -38,7 +38,7 @@
-We eat, drink, sleep and most importantly love **DevOps**. We are working towards stratergies for standardizing architecture while ensuring security for the infrastructure. We are strong believer of the philosophy Bigger problems are always solved by breaking them into smaller manageable problems. Resonating with microservices architecture, it is considered best-practice to run database, cluster, storage in smaller connected yet manageable pieces within the infrastructure.
+We eat, drink, sleep and most importantly love **DevOps**. We are working towards stratergies for standardizing architecture while ensuring security for the infrastructure. We are strong believer of the philosophy Bigger problems are always solved by breaking them into smaller manageable problems. Resonating with microservices architecture, it is considered best-practice to run database, cluster, storage in smaller connected yet manageable pieces within the infrastructure.
This module is basically combination of [Terraform open source](https://www.terraform.io/) and includes automatation tests and examples. It also helps to create and improve your infrastructure with minimalistic code instead of maintaining the whole infrastructure code yourself.
@@ -49,7 +49,7 @@ We have [*fifty plus terraform modules*][terraform_modules]. A few of them are c
## Prerequisites
-This module has a few dependencies:
+This module has a few dependencies:
- [Terraform 0.12](https://learn.hashicorp.com/terraform/getting-started/install.html)
- [Go](https://golang.org/doc/install)
@@ -71,36 +71,42 @@ This module has a few dependencies:
### Simple example
Here is an example of how you can use this module in your inventory structure:
```hcl
- module "iam-role" {
- source = "git::https://github.com/clouddrove/terraform-aws-iam-role.git?ref=tags/0.12.0"
- name = "iam-role"
- application = "clouddrove"
- environment = "test"
- label_order = ["environment", "name", "application"]
- assume_role_policy = data.aws_iam_policy_document.default.json
- policy_enabled = true
- policy = data.aws_iam_policy_document.iam-policy.json
- }
-
- data "aws_iam_policy_document" "default" {
- statement {
+ module "iam-role" {
+ source = "git::https://github.com/clouddrove/terraform-aws-iam-role.git?ref=tags/0.12.0"
+
+ name = "iam-role"
+ application = "clouddrove"
+ environment = "test"
+ label_order = ["environment", "name", "application"]
+ assume_role_policy = data.aws_iam_policy_document.default.json
+
+ policy_enabled = true
+ policy = data.aws_iam_policy_document.iam-policy.json
+ }
+
+ data "aws_iam_policy_document" "default" {
+ statement {
+ effect = "Allow"
actions = ["sts:AssumeRole"]
principals {
- type = "Service"
- identifiers = ["ec2.amazonaws.com"]
+ type = "Service"
+ identifiers = ["ec2.amazonaws.com"]
+ }
}
}
- }
-
- data "aws_iam_policy_document" "iam-policy" {
- statement {
- actions = [
- "ec2:Describe*"
- ]
- effect = "Allow"
- resources = ["*"]
+
+ data "aws_iam_policy_document" "iam-policy" {
+ statement {
+ actions = [
+ "ssm:UpdateInstanceInformation",
+ "ssmmessages:CreateControlChannel",
+ "ssmmessages:CreateDataChannel",
+ "ssmmessages:OpenControlChannel",
+ "ssmmessages:OpenDataChannel" ]
+ effect = "Allow"
+ resources = ["*"]
}
- }
+ }
```
@@ -108,39 +114,11 @@ Here is an example of how you can use this module in your inventory structure:
-## Inputs
-
-| Name | Description | Type | Default | Required |
-|------|-------------|:----:|:-----:|:-----:|
-| application | Application (e.g. `cd` or `clouddrove`). | string | `` | no |
-| assume_role_policy | Whether to create Iam role. | string | - | yes |
-| attributes | Additional attributes (e.g. `1`). | list | `` | no |
-| delimiter | Delimiter to be used between `organization`, `environment`, `name` and `attributes`. | string | `-` | no |
-| description | The description of the role. | string | `` | no |
-| enabled | Whether to create Iam role. | bool | `true` | no |
-| environment | Environment (e.g. `prod`, `dev`, `staging`). | string | `` | no |
-| force_detach_policies | The policy that grants an entity permission to assume the role. | bool | `false` | no |
-| label_order | Label order, e.g. `name`,`application`. | list | `` | no |
-| max_session_duration | The maximum session duration (in seconds) that you want to set for the specified role. If you do not specify a value for this setting, the default maximum of one hour is applied. This setting can have a value from 1 hour to 12 hours. | number | `3600` | no |
-| name | Name (e.g. `app` or `cluster`). | string | `` | no |
-| path | The path to the role. | string | `/` | no |
-| permissions_boundary | The ARN of the policy that is used to set the permissions boundary for the role. | string | `` | no |
-| policy | The policy document. | string | `` | no |
-| policy_enabled | Whether to Attach Iam policy with role. | bool | `false` | no |
-| tags | Additional tags (e.g. map(`BusinessUnit`,`XYZ`). | map | `