Create server.yaml

This commit is contained in:
John Bowdre 2022-06-27 14:35:37 -05:00 committed by GitHub
parent 0baf0de34d
commit 30927e8500
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,44 @@
formatVersion: 1
inputs:
compute:
type: object
$ref: /ref/property-groups/compute
naming:
type: object
$ref: /ref/property-groups/naming
tracking:
type: object
$ref: /ref/property-groups/tracking
resources:
vCompute:
type: Cloud.vSphere.Machine
properties:
image: ${input.compute.image}
flavor: ${input.compute.flavor}
customizationSpec: ${input.compute.customSpec}
nameBase: ${to_upper(input.compute.site + '-' + input.naming.env + input.naming.function + '-' + input.naming.app)}
digits: ${input.naming.digits}
folderName: ${input.compute.site + "-" + input.naming.function}
networks:
- network: ${resource.vNetwork.id}
assignment: static
storage:
bootDiskCapacityInGB: ${input.compute.diskSize}
domain: ${propgroup.constants.domain}
staticDns: ${input.compute.staticDns}
adObject: ${input.compute.adObject}
ignoreActiveDirectory: ${!input.compute.adObject}
activeDirectory:
relativeDN: ${'OU=Servers,OU=Computers,OU=' + to_upper(input.compute.site) + ',OU=LAB'}
adminsList: ${input.compute.adminUsers}
ticket: ${input.tracking.ticket}
poc: ${input.tracking.pocName + " (" + input.tracking.pocEmail + ")"}
description: ${input.tracking.vmDescription}
vCenterUser: ${propgroup.constants.vCenterUser}
templateUser: ${propgroup.constants.templateUser}
vNetwork:
type: Cloud.vSphere.Network
properties:
networkType: existing
constraints:
- tag: ${input.compute.network}