-
Notifications
You must be signed in to change notification settings - Fork 42
Description
I've looked through the issues and documentation and a bit confused.
When I created an access token through the rest api in the past, I had to assign it to a group to ensure the permissions were associated with the access token.
Right now, I have created the api token using the documented example:
resource "artifactory_api_key" "ci" {}
However, when trying to assign this token into a group, I'm not clear how to do this from the provider documentation.
When doing via POST
request, you can see I had to designate member-of-groups
for the access token to be generated.
$invokeRestMethodSplat = @{
Method = 'POST'
Body =
@{
"username" = $UserName #this is access token name, anything can be used
"scope" = "member-of-groups:$GroupName"
'Content-Type' = 'application/x-www-form-urlencoded'
'expires_in' = 0 # Used to set as non-expiring
'refreshable' = $true # allow access tokens to be refreshed and leave user the same
}
Headers = @{ Authorization = "Basic $encodedCredentials" }
Uri = "https://$ACCOUNTNAME.jfrog.io/$ACCOUNTNAME/api/security/token"
}
$response = Invoke-RestMethod @invokeRestMethodSplat
What I'd thought I'd see would be something like
resource "artifactory_api_key" "ci" {
groups = [ resource.group.id ]
}
If you have any examples on how to do this, or an issue I missed that answered this please let me know. I plan on looking at the provider code more, but figured I'd make this visible so if it's an easy fix others might benefit, or if I contribute a PR with something I can link it to this anyway.
Appreciate the great work on this project as it solves a big need in making Jfrog more manageable.