From 0e1663e61957b416a1b21b6077a492f7c6f04bd0 Mon Sep 17 00:00:00 2001 From: Tomer Heber Date: Tue, 17 Oct 2023 19:55:07 -0500 Subject: [PATCH] Fix: missing CUSTOM_ROLE roles --- env0/resource_custom_role.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/env0/resource_custom_role.go b/env0/resource_custom_role.go index a53111ed..a68a8355 100644 --- a/env0/resource_custom_role.go +++ b/env0/resource_custom_role.go @@ -41,6 +41,10 @@ func resourceCustomRole() *schema.Resource { "VIEW_AUDIT_LOGS", "MANAGE_ENVIRONMENT_LOCK", "CREATE_VCS_ENVIRONMENT", + "CREATE_AND_EDIT_PROVIDERS", + "VIEW_PROVIDERS", + "VIEW_ENVIRONMENT", + "ASSIGN_ROLE_ON_ENVIRONMENT", } allowedCustomRoleTypesStr := fmt.Sprintf("(allowed values: %s)", strings.Join(allowedCustomRoleTypes, ", "))