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.
1 parent cbc8906 commit 1fb6f31Copy full SHA for 1fb6f31
examples/simple-setup/main.tf
@@ -4,4 +4,7 @@ module "github_actions_iam_role" {
4
github_username = var.github_username
5
repository_names = var.repository_names
6
role_name = var.role_name
7
+ providers = {
8
+ aws = aws.root
9
+ }
10
}
provider.tf renamed to examples/simple-setup/provider.tf
@@ -1,6 +1,6 @@
1
provider "aws" {
2
+ alias = "root"
3
region = "ap-south-1"
-
default_tags {
tags = {
ManagedBy = "Terraform"
0 commit comments