VCP-CMA 2024 Question 130
Select 3You are tasked with creating a custom naming template in VMware Aria Automation Assembler to standardize the naming convention for deployed resources. The naming template should include the deployment name, the project ID, and a unique 3-digit sequential number. Which of the following steps should you take to configure this custom naming template correctly?
- A
Define a naming template in the 'Projects' configuration section of VMware Aria Automation Assembler.
- B
Use the predefined syntax ${deployment.name}-${project.id}-${sequence.number.3} in the naming template.
- C
Enable the 'Custom Naming' option for the project where this naming template will be applied.
- D
Verify that the sequence number's format is explicitly defined to use three digits.
- E
Use the custom naming template by updating the YAML specification of the blueprint.
Show answer and explanation
Correct answers: B, C, D
Explanation
To configure a custom naming template in VMware Aria Automation Assembler, you need to use the predefined syntax for naming templates (e.g., ${deployment.name}-${project.id}-${sequence.number.3}) and ensure the 'Custom Naming' option is enabled for the project. Additionally, you must explicitly define the sequence number's format to generate unique identifiers as required by the naming convention. Configurations outside of the 'Infrastructure > Naming Templates' section or manual YAML edits are not part of the process.
- A. Incorrect.
Defining a naming template is done in the 'Infrastructure > Naming Templates' section, not in the 'Projects' configuration. This is incorrect.
- B. Correct.
This is the correct syntax to define a naming template that includes the deployment name, project ID, and a 3-digit sequence number.
- C. Correct.
The 'Custom Naming' option must be enabled for the project to ensure the naming template is applied during resource provisioning.
- D. Correct.
The sequence number format must be explicitly defined in the naming template to ensure it generates a unique 3-digit number. This is correct.
- E. Incorrect.
The custom naming template is applied automatically based on the project configuration and does not require updating the YAML specification of the blueprint. This is incorrect.