You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I'm using realm and realm_attributes attributes to preconfigure groups that comes from LDAP. This way I can then use references to these groups when defining permissions using the platform_permission resource. With the spin-off of the platform_group resource to the artifactory_group resource, why can realm attributes no longer be configured?
Describe the solution you'd like
I would like that as in resource artifactory_group the attribute realm and realm_attributes could still be configurable.
Describe alternatives you've considered
This is probably the best solution so far.
Additional context
Example of my usage:
resource"artifactory_group""ldap_publishers" {
name="art.publishers"description="Publishers of the Artifactory app"auto_join=falseadmin_privileges=falserealm="ldap"realm_attributes="ldapGroupName=art.publishers;groupsStrategy=STATIC;groupDn=cn=ART.Publishers,ou=Applications,ou=Groups,[...]"
}
resource"platform_permission""anything" {
name="Anything"build={
targets = [
{
name ="artifactory-build-info"
includes_pattern = ["**"]
},
]
actions = {
groups = [
{
name = artifactory_group.ldap_publishers.name
permissions = ["READ", "WRITE"]
},
]
}
}
artifact={
targets = [
{
name ="ANY"
includes_pattern = ["**"]
},
]
actions = {
groups = [
{
name = artifactory_group.ldap_publishers.name
permissions = ["READ", "WRITE"]
},
]
}
}
}
The text was updated successfully, but these errors were encountered:
@piotrminkina The Access API for managing Groups does not support setting realm or realm_attribute fields. Please contact your JFrog customer service person for feature request. You can mention JIRA ticket JA-14705 for reference.
Is your feature request related to a problem? Please describe.
I'm using
realm
andrealm_attributes
attributes to preconfigure groups that comes from LDAP. This way I can then use references to these groups when defining permissions using theplatform_permission
resource. With the spin-off of theplatform_group
resource to theartifactory_group
resource, why canrealm
attributes no longer be configured?Describe the solution you'd like
I would like that as in resource
artifactory_group
the attributerealm
andrealm_attributes
could still be configurable.Describe alternatives you've considered
This is probably the best solution so far.
Additional context
Example of my usage:
The text was updated successfully, but these errors were encountered: