From 6eeba7ed028afacea1ed09e2a0b892d5e7aaed66 Mon Sep 17 00:00:00 2001 From: David An Date: Tue, 7 Jan 2025 11:20:22 -0500 Subject: [PATCH] create 'user' resource type --- src/main/resources/reference.conf | 12 ++++++++++++ src/main/resources/sam.conf | 6 ++++++ 2 files changed, 18 insertions(+) diff --git a/src/main/resources/reference.conf b/src/main/resources/reference.conf index 4477bb032..bd5edfa7e 100644 --- a/src/main/resources/reference.conf +++ b/src/main/resources/reference.conf @@ -1810,6 +1810,18 @@ resourceTypes = { allowLeaving = false reuseIds = true } + + user = { + actionPatterns = {} + ownerRoleName = "admin" + roles = { + admin = { + roleActions = [] + } + } + allowLeaving = false + reuseIds = false + } } diff --git a/src/main/resources/sam.conf b/src/main/resources/sam.conf index 9fff7ddef..9a1000110 100644 --- a/src/main/resources/sam.conf +++ b/src/main/resources/sam.conf @@ -424,5 +424,11 @@ resourceAccessPolicies { ] } } + user { + support { + memberEmails = ${terra.support.emails} + roles = ["support"] + } + } } }