Value for "Tags" field while creating a user in AWS (not ICEM)

I am trying to figure out what value to send for “Tags” field from SailPoint while creating an account.

  • What have you tried?
        {
            "name": "Tags",
            "transform": {
                "type": "concat",
                "attributes": {
                    "values": [
                        "{\"Key\":\"tagKey\",\"Value\":\"",
                        {
                            "type": "identityAttribute",
                            "attributes": {
                                "name": "awsTagValue"
                            }
                        },
                        "\"}"
                    ]
                }
            },
            "attributes": {},
            "isRequired": false,
            "type": "string",
            "isMultiValued": false
        }

above transform resulted in below in Attribute Requests:
Add Tags: {"Key":"tagKey","Value":"User specific value for this tag"}

  • What errors did you face (share screenshots)?
    None

  • What is the result you are getting and what were you expecting?
    There was no tag attached to the new user created in AWS. Was hoping to have a tag with tagKey:User specific value for this tag as key:value

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.