Skip to content

Commit 5fd7ebf

Browse files
Merge pull request #9 from vinelias/main
Added support for using permission set JSON files in subfolders
2 parents 586487a + 2b288dc commit 5fd7ebf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.0.3
1+
v0.1.0

locals.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

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

0 commit comments

Comments
 (0)