The Talon Manual

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagexml
titleProfile Supplied Env Example
<model>
  <env>
    <prop1>top-level-value1</prop1>
    <prop2>top-level-value2</prop2>
    <prop3>top-level-value3</prop3>
  </env>
 
  <xvms>
    <templates>
      <xvm name="xvm-template">
        <env>
          <prop2>xvm-template-value2</prop2>
    	  <prop3>xvm-template-value3</prop3>
        </env>
      </xvm>
    </templates>
    <xvm name="my-xvm" template="xvm-template">
      <env>
    	<prop3>my-xvm-value3</prop3>
      </env>
    </xvm>
  </xvms>
 
  <profiles>
    <profile name="PROD">
      <env>
        <prop1>profile-top-level-value1</prop1>
        <prop2>profile-top-level-value2</prop2>
      </env>
      <xvms>
        <xvm name="my-xvm" template="xvm-template">
          <env>
           <prop3>profile-my-xvm-value3</prop3>
          </env>
        </xvm>
      </xvms>
 
    </profile>
  </profiles>
</model

...

Code Block
languagexml
titleA Profile Activation Element
<model>
  <profiles>
    <profile name="PROD">
      <activation>
        <properties>
          <ENVIRONMENT_NAME>PROD</ENVIRONMENT_NAME>
        <properties></properties>
      </activation>
      <env>
        <nv.discovery.descriptor>solace://solace-prod-host:55555</nv.discovery.descriptor>
      </env>
    </profile>
  </profiles>
</model>

...