We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
iam
root-iam
1 parent f8b9a49 commit f50ecdfCopy full SHA for f50ecdf
aws/root-iam/main.tf
@@ -0,0 +1,20 @@
1
+terraform {
2
+ required_version = ">= 0.11.2"
3
+
4
+ backend "s3" {}
5
+}
6
7
+variable "aws_assume_role_arn" {
8
+ type = "string"
9
10
11
+variable "namespace" {
12
13
+ description = "Namespace (e.g. `cp` or `cloudposse`)"
14
15
16
+provider "aws" {
17
+ assume_role {
18
+ role_arn = "${var.aws_assume_role_arn}"
19
+ }
20
aws/iam/root.auto.tfvars.example renamed to aws/root-iam/root.auto.tfvars.example
aws/iam/root.tf renamed to aws/root-iam/root.tf
0 commit comments