Skip to content

Commit

Permalink
Merge pull request #68 from schubergphilis/fvb/mcaf
Browse files Browse the repository at this point in the history
feat: Move User module to the TF Registry
  • Loading branch information
fatbasstard authored Sep 17, 2024
2 parents 6b74da0 + 46b6915 commit f415ebf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ The above custom role is similar to the "write" pre-existing role, but blocks ac
| <a name="module_tfe-workspace"></a> [tfe-workspace](#module\_tfe-workspace) | schubergphilis/mcaf-workspace/tfe | ~> 2.0 |
| <a name="module_workspace_iam_role"></a> [workspace\_iam\_role](#module\_workspace\_iam\_role) | schubergphilis/mcaf-role/aws | ~> 0.4.0 |
| <a name="module_workspace_iam_role_oidc"></a> [workspace\_iam\_role\_oidc](#module\_workspace\_iam\_role\_oidc) | schubergphilis/mcaf-role/aws | ~> 0.4.0 |
| <a name="module_workspace_iam_user"></a> [workspace\_iam\_user](#module\_workspace\_iam\_user) | github.com/schubergphilis/terraform-aws-mcaf-user | v0.4.0 |
| <a name="module_workspace_iam_user"></a> [workspace\_iam\_user](#module\_workspace\_iam\_user) | schubergphilis/mcaf-user/aws | ~> 0.4 |

## Resources

Expand Down
6 changes: 4 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,10 @@ resource "tfe_team_access" "default" {
################################################################################

module "workspace_iam_user" {
count = var.auth_method == "iam_user" ? 1 : 0
source = "github.com/schubergphilis/terraform-aws-mcaf-user?ref=v0.4.0"
count = var.auth_method == "iam_user" ? 1 : 0

source = "schubergphilis/mcaf-user/aws"
version = "~> 0.4"

name = var.username
path = var.path
Expand Down

0 comments on commit f415ebf

Please sign in to comment.