Skip to content

Commit

Permalink
Merge pull request #9 from vinelias/main
Browse files Browse the repository at this point in the history
Added support for using permission set JSON files in subfolders
  • Loading branch information
rogeriomartini authored Nov 12, 2024
2 parents 586487a + 2b288dc commit 5fd7ebf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.0.3
v0.1.0
2 changes: 1 addition & 1 deletion locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

locals {
sso_instance_arn = tolist(data.aws_ssoadmin_instances.sso.arns)[0]
ps_files = fileset(var.templates_path, "*.json")
ps_files = fileset(var.templates_path, "**/*.json")
ps_data = [for f in local.ps_files : jsondecode(file("${var.templates_path}/${f}"))]
ps_definition = zipmap([for data in local.ps_data : data.Name], local.ps_data)

Expand Down

0 comments on commit 5fd7ebf

Please sign in to comment.