Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Commit

Permalink
Update modules to pull public
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob Woffenden committed Mar 6, 2023
1 parent b520781 commit 40d07ec
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ It assumes that a trust relationship between the cluster OIDC provider and other

| Name | Source | Version |
|------|--------|---------|
| <a name="module_app_account_role"></a> [app\_account\_role](#module\_app\_account\_role) | git@github.com:ministryofjustice/ap-terraform-iam-roles.git//assumable-role-federated-user | v1.1.0 |
| <a name="module_control_panel_role"></a> [control\_panel\_role](#module\_control\_panel\_role) | git@github.com:ministryofjustice/ap-terraform-iam-roles.git//eks-role | v1.1.0 |
| <a name="module_data_account_role"></a> [data\_account\_role](#module\_data\_account\_role) | git@github.com:ministryofjustice/ap-terraform-iam-roles.git//assumable-role-federated-user | v1.1.0 |
| <a name="module_app_account_role"></a> [app\_account\_role](#module\_app\_account\_role) | github.com/ministryofjustice/ap-terraform-iam-roles.git//assumable-role-federated-user | v1.1.0 |
| <a name="module_control_panel_role"></a> [control\_panel\_role](#module\_control\_panel\_role) | github.com/ministryofjustice/ap-terraform-iam-roles.git//eks-role | v1.1.0 |
| <a name="module_data_account_role"></a> [data\_account\_role](#module\_data\_account\_role) | github.com/ministryofjustice/ap-terraform-iam-roles.git//assumable-role-federated-user | v1.1.0 |

## Resources

Expand Down
2 changes: 1 addition & 1 deletion app_account_role.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
###############################################################################

module "app_account_role" {
source = "git@github.com:ministryofjustice/ap-terraform-iam-roles.git//assumable-role-federated-user?ref=v1.1.0"
source = "github.com/ministryofjustice/ap-terraform-iam-roles.git//assumable-role-federated-user?ref=v1.1.0"
role_name_prefix = "ControlPanelAppManager"
trusted_entity_arns = [module.control_panel_role.iam_role_arn]
role_description = "Role to permit the control panel for ${var.resource_prefix} to manage application account resources"
Expand Down
2 changes: 1 addition & 1 deletion control_panel_role.tf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
###############################################################################

module "control_panel_role" {
source = "git@github.com:ministryofjustice/ap-terraform-iam-roles.git//eks-role?ref=v1.1.0"
source = "github.com/ministryofjustice/ap-terraform-iam-roles.git//eks-role?ref=v1.1.0"
role_name_prefix = "ControlPanelFederatedID"
role_description = "Role to identify the control panel for ${var.resource_prefix}"
provider_url = var.provider_url
Expand Down
2 changes: 1 addition & 1 deletion data_account_role.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
###############################################################################

module "data_account_role" {
source = "git@github.com:ministryofjustice/ap-terraform-iam-roles.git//assumable-role-federated-user?ref=v1.1.0"
source = "github.com/ministryofjustice/ap-terraform-iam-roles.git//assumable-role-federated-user?ref=v1.1.0"
role_name_prefix = "ControlPanelDataManager"
trusted_entity_arns = [module.control_panel_role.iam_role_arn]
role_description = "Role to permit the control panel for ${var.resource_prefix} to manage data account resources"
Expand Down

0 comments on commit 40d07ec

Please sign in to comment.