From 808bbd150a75280ace9a122f9ae029c9a27f1108 Mon Sep 17 00:00:00 2001 From: Tomer Heber Date: Fri, 7 Jul 2023 07:24:47 -0500 Subject: [PATCH] Feat: add Support for CREATE_VCS_ENVIRONMENT, in custom_role resource (#667) --- env0/resource_custom_role.go | 1 + 1 file changed, 1 insertion(+) diff --git a/env0/resource_custom_role.go b/env0/resource_custom_role.go index 0c9183b0..e14cce24 100644 --- a/env0/resource_custom_role.go +++ b/env0/resource_custom_role.go @@ -40,6 +40,7 @@ func resourceCustomRole() *schema.Resource { "MANAGE_BILLING", "VIEW_AUDIT_LOGS", "MANAGE_ENVIRONMENT_LOCK", + "CREATE_VCS_ENVIRONMENT", } allowedCustomRoleTypesStr := fmt.Sprintf("(allowed values: %s)", strings.Join(allowedCustomRoleTypes, ", "))