Skip to content

Commit

Permalink
updated module git source
Browse files Browse the repository at this point in the history
  • Loading branch information
dsreehas committed Apr 28, 2024
1 parent c5a5de2 commit 6f9e64c
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion examples/dummy-role/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "iam_role" {
source = "github.com/dsreehas/terraform-eks-iam-role"
source = "github.com/dsreehas/terraform-iam-role"
role_name = var.role_name
assume_role_policy = file("./policies/assume_role_policy.json")
}
2 changes: 1 addition & 1 deletion examples/inline-managed-policies/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "iam_role" {
source = "github.com/dsreehas/terraform-eks-iam-role"
source = "github.com/dsreehas/terraform-iam-role"
role_name = var.role_name
assume_role_policy = file("./policies/assume_role_policy.json")
inline_policies = [file("./policies/inline_policy_1.json"), file("./policies/inline_policy_2.json")]
Expand Down
2 changes: 1 addition & 1 deletion examples/instance-profile/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "iam_role" {
source = "github.com/dsreehas/terraform-eks-iam-role"
source = "github.com/dsreehas/terraform-iam-role"

role_name = var.role_name
assume_role_policy = file("./policies/assume_role_policy.json")
Expand Down
2 changes: 1 addition & 1 deletion examples/multiple-inline-policies/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "iam_role_with_inline_policies" {
source = "github.com/dsreehas/terraform-eks-iam-role"
source = "github.com/dsreehas/terraform-iam-role"
role_name = var.role_name
assume_role_policy = file("./policies/assume_role_policy.json")
inline_policies = [file("./policies/inline_policy_1.json"), file("./policies/inline_policy_2.json"), file("./policies/inline_policy_3.json")]
Expand Down
2 changes: 1 addition & 1 deletion examples/multiple-managed-policies/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "iam_role_with_managed_policies" {
source = "github.com/dsreehas/terraform-eks-iam-role"
source = "github.com/dsreehas/terraform-iam-role"
role_name = var.role_name
assume_role_policy = file("./policies/assume_role_policy.json")
managed_policy_arns = var.managed_policy_arns
Expand Down
2 changes: 1 addition & 1 deletion examples/single-inline-policy/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "iam_role" {
source = "github.com/dsreehas/terraform-eks-iam-role"
source = "github.com/dsreehas/terraform-iam-role"
role_name = var.role_name
assume_role_policy = file("./policies/assume_role_policy.json")
inline_policies = [file("./policies/inline_policy.json")]
Expand Down
2 changes: 1 addition & 1 deletion examples/single-managed-policy/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module "iam_role" {
source = "github.com/dsreehas/terraform-eks-iam-role"
source = "github.com/dsreehas/terraform-iam-role"
role_name = var.role_name
assume_role_policy = file("./policies/assume_role_policy.json")
managed_policy_arns = var.managed_policy_arns
Expand Down
12 changes: 6 additions & 6 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This Terraform module is designed to create AWS IAM roles with appropriate inlin
### IAM Role with No Attached Policies

module "iam_role" {
source = "github.com/dsreehas/terraform-eks-iam-role"
source = "github.com/dsreehas/terraform-iam-role"
role_name = var.role_name
assume_role_policy = <<EOF
{
Expand All @@ -31,7 +31,7 @@ This Terraform module is designed to create AWS IAM roles with appropriate inlin
### IAM Role with Single Inline Policy

module "iam_role" {
source = "github.com/dsreehas/terraform-eks-iam-role"
source = "github.com/dsreehas/terraform-iam-role"
role_name = var.role_name
assume_role_policy = <<EOF
{
Expand Down Expand Up @@ -70,7 +70,7 @@ This Terraform module is designed to create AWS IAM roles with appropriate inlin
### IAM Role with Single Managed Policy

module "iam_role" {
source = "github.com/dsreehas/terraform-eks-iam-role"
source = "github.com/dsreehas/terraform-iam-role"
role_name = var.role_name
assume_role_policy = <<EOF
{
Expand All @@ -92,7 +92,7 @@ This Terraform module is designed to create AWS IAM roles with appropriate inlin
### IAM Role with Multiple Inline Policies

module "iam_role_with_inline_policies" {
source = "github.com/dsreehas/terraform-eks-iam-role"
source = "github.com/dsreehas/terraform-iam-role"
role_name = var.role_name
assume_role_policy = <<EOF
{
Expand Down Expand Up @@ -167,7 +167,7 @@ This Terraform module is designed to create AWS IAM roles with appropriate inlin
### IAM Role with Multiple Managed Policies

module "iam_role_with_managed_policies" {
source = "github.com/dsreehas/terraform-eks-iam-role"
source = "github.com/dsreehas/terraform-iam-role"
role_name = var.role_name
assume_role_policy = <<EOF
{
Expand All @@ -192,7 +192,7 @@ This Terraform module is designed to create AWS IAM roles with appropriate inlin
### IAM Role with Multiple Inline and Managed Policies

module "iam_role" {
source = "github.com/dsreehas/terraform-eks-iam-role"
source = "github.com/dsreehas/terraform-iam-role"
role_name = var.role_name
assume_role_policy = <<EOF
{
Expand Down

0 comments on commit 6f9e64c

Please sign in to comment.