update dnsHost composite type

This commit is contained in:
John Bowdre 2022-06-16 14:11:54 -05:00
parent 8ebacd39c5
commit a61e0c0389
2 changed files with 2 additions and 2 deletions

View File

@ -12,4 +12,4 @@ Performs post-deploy tasks like adding notes to the VM object and creating stati
| Name | Type | Value | Description |
|:--- |:--- |:--- |:--- |
| `vm` | VC:VirtualMachine| | virtual machine object |
| `dnsHost` | CompositeType(sshHost:string, sshUser:string, sshPass:SecureString, dnsServers:Array/string, supportedDomains:Array/string):dnsConfig | `Endpoints: dnsHost` | object which stores endpoint and credential details for DNS operations |
| `dnsHost` | CompositeType(sshHost:string, sshUser:string, sshPass:SecureString, dnsServers:Array/string, supportedDomains:Array/string):dnsHost | `Endpoints: dnsHost` | object which stores endpoint and credential details for DNS operations |

View File

@ -1,6 +1,6 @@
/* JavaScript: create dns record
Optionally creates a static record in Microsoft DNS by way of an SSH bastion host.
Inputs: inputProperties (Properties), dnsHost (CompositeType(sshHost:string,sshUser:string,sshPass:SecureString,dnsServers:Array/string,supportedDomains:Array/string):dnsConfig)
Inputs: inputProperties (Properties), dnsHost (CompositeType(sshHost:string,sshUser:string,sshPass:SecureString,dnsServers:Array/string,supportedDomains:Array/string):dnsHost)
Outputs: none
*/
var staticDns = inputProperties.customProperties.staticDns;