IS users not being created in composite template

Hi,

I’m working on developing a template that will provision an IS, MWS, UM instance.
I have the template working but some of the configuation items such as the IS users aren’t being created when I run the template.

Here’s a snippet of the yaml from the template where I’m trying to set the user:

            integrationServer-${is.instance.name}:
              COMMON-LOCAL-USERS:
                COMMON-LOCAL-USERS-wmDeployerUserIS:
                  '@id': wmDeployerUserIS
                  Enabled: 'true'
                  ExtendedProperties:
                    Property:
                    - '@name': AllowDigestAuthentication
                      $: 'false'
                COMMON-LOCAL-USERS-wmRemoteServerUser:
                  '@id': wmRemoteServerUser
                  Enabled: 'true'
                  ExtendedProperties:
                    Property:
                    - '@name': AllowDigestAuthentication
                      $: 'false'
                COMMON-LOCAL-USERS-wmTaskEngineUser:
                  '@id': wmTaskEngineUser
                  Enabled: 'true'
                  ExtendedProperties:
                    Property:
                    - '@name': AllowDigestAuthentication
                      $: 'false'

I looked through some of the templates on the softwareag github site but I don’t see any with an example of creating an IS user as part of the template.

Thoughts?

Regards,
Mike

I found an example of and MWS template that was setting a user account and changed my template to this:


              COMMON-LOCAL-USERS:
                COMMON-LOCAL-USERS-wmDeployerUserIS:
                  "@id": wmDeployerUserIS
                  Password: ${is.password}
                  Enabled: true
                  AllowDigestAuthentication: false
                COMMON-LOCAL-USERS-wmRemoteServerUser:
                  "@id": wmRemoteServerUser
                  Password: ${is.password}
                  Enabled: true
                  AllowDigestAuthentication: false
                COMMON-LOCAL-USERS-wmTaskEngineUser:
                  "@id": wmTaskEngineUser
                  Password: ${is.password}
                  Enabled: true
                  AllowDigestAuthentication: false

Once I ran it this way the users were created on the IS with the template execution.

Mike