-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add module which streamlines creation of an IAM role that can be assumed by external entity. This is necessary for streamlining onboarding of pollers.
- Loading branch information
Showing
5 changed files
with
175 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
# Observe AWS External Role | ||
|
||
This module configures an IAM role that can be assumed by Observe. | ||
|
||
## Usage | ||
|
||
```hcl | ||
resource "random_pet" "this" {} | ||
data "observe_cloud_info" {} | ||
data "observe_workspace" "default" { | ||
name = "Default" | ||
} | ||
resource "observe_datastream" "example" { | ||
workspace = data.observe_workspace.default.oid | ||
name = random_pet.this.id | ||
} | ||
module "external_role" { | ||
source = "observeinc/collection/aws//modules/externalrole" | ||
name = random_pet.this.id | ||
observe_aws_account_id = data.observe_cloud_info.account_id | ||
datastream_ids = [observe_datastream.example.id] | ||
allowed_actions = [ | ||
"cloudwatch:ListMetrics", | ||
"cloudwatch:GetMetricsData", | ||
"tags:GetResources", | ||
] | ||
} | ||
``` | ||
|
||
<!-- BEGINNING OF PRE-COMMIT-TERRAFORM DOCS HOOK --> | ||
## Requirements | ||
|
||
| Name | Version | | ||
|------|---------| | ||
| <a name="requirement_terraform"></a> [terraform](#requirement\_terraform) | >= 1.3 | | ||
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.0 | | ||
|
||
## Providers | ||
|
||
| Name | Version | | ||
|------|---------| | ||
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.0 | | ||
|
||
## Modules | ||
|
||
No modules. | ||
|
||
## Resources | ||
|
||
| Name | Type | | ||
|------|------| | ||
| [aws_iam_role.this](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/iam_role) | resource | | ||
|
||
## Inputs | ||
|
||
| Name | Description | Type | Default | Required | | ||
|------|-------------|------|---------|:--------:| | ||
| <a name="input_allowed_actions"></a> [allowed\_actions](#input\_allowed\_actions) | Set of IAM actions external entity is allowed to perform. | `list(string)` | n/a | yes | | ||
| <a name="input_datastream_ids"></a> [datastream\_ids](#input\_datastream\_ids) | Observe datastreams collected data is intended for. | `list(string)` | n/a | yes | | ||
| <a name="input_name"></a> [name](#input\_name) | Name for IAM role. | `string` | n/a | yes | | ||
| <a name="input_observe_aws_account_id"></a> [observe\_aws\_account\_id](#input\_observe\_aws\_account\_id) | AWS account ID for Observe tenant | `string` | n/a | yes | | ||
|
||
## Outputs | ||
|
||
| Name | Description | | ||
|------|-------------| | ||
| <a name="output_role"></a> [role](#output\_role) | IAM role to be assummed by Observe | | ||
<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
resource "aws_iam_role" "this" { | ||
name = var.name | ||
|
||
assume_role_policy = jsonencode({ | ||
Version = "2012-10-17", | ||
Statement = [ | ||
{ | ||
Action = "sts:AssumeRole", | ||
Effect = "Allow", | ||
Principal = { | ||
AWS = [ | ||
"arn:aws:iam::${var.observe_aws_account_id}:root", | ||
] | ||
} | ||
Condition = { | ||
StringEquals = { | ||
"sts:ExternalId" = [var.datastream_ids] | ||
} | ||
} | ||
} | ||
] | ||
}) | ||
|
||
inline_policy { | ||
name = "Allowed actions" | ||
|
||
policy = jsonencode({ | ||
Version = "2012-10-17", | ||
Statement = [ | ||
{ | ||
Action = var.allowed_actions | ||
|
||
Effect = "Allow", | ||
Resource = "*" | ||
} | ||
] | ||
}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
output "role" { | ||
description = "IAM role to be assummed by Observe" | ||
value = aws_iam_role.this | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
variable "name" { | ||
type = string | ||
nullable = false | ||
description = <<-EOF | ||
Name for IAM role. | ||
EOF | ||
|
||
validation { | ||
condition = length(var.name) <= 64 | ||
error_message = "Name must be under 64 characters." | ||
} | ||
} | ||
|
||
variable "observe_aws_account_id" { | ||
description = "AWS account ID for Observe tenant" | ||
type = string | ||
nullable = false | ||
|
||
validation { | ||
condition = can(regex("^\\d{12}$", var.observe_aws_account_id)) | ||
error_message = "Account ID must have 12 digits." | ||
} | ||
} | ||
|
||
variable "datastream_ids" { | ||
description = <<-EOF | ||
Observe datastreams collected data is intended for. | ||
EOF | ||
type = list(string) | ||
nullable = false | ||
|
||
validation { | ||
condition = length(var.datastream_ids) > 1 | ||
error_message = "At least one datastream must be provided." | ||
} | ||
} | ||
|
||
variable "allowed_actions" { | ||
description = <<-EOF | ||
Set of IAM actions external entity is allowed to perform. | ||
EOF | ||
type = list(string) | ||
nullable = false | ||
|
||
validation { | ||
condition = length(var.allowed_actions) > 1 | ||
error_message = "At least one action must be provided." | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
terraform { | ||
required_version = ">= 1.3" | ||
required_providers { | ||
aws = { | ||
source = "hashicorp/aws" | ||
version = ">= 4.0" | ||
} | ||
} | ||
} |