From a61e0c0389b45e1734674e540af4ee4995f51be4 Mon Sep 17 00:00:00 2001 From: John Bowdre Date: Thu, 16 Jun 2022 14:11:54 -0500 Subject: [PATCH] update dnsHost composite type --- Orchestrator/Workflows/VM Post-Provision/README.md | 2 +- .../Workflows/VM Post-Provision/Tasks/03_create_dns_record.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Orchestrator/Workflows/VM Post-Provision/README.md b/Orchestrator/Workflows/VM Post-Provision/README.md index 0fea55e..50bf3f2 100644 --- a/Orchestrator/Workflows/VM Post-Provision/README.md +++ b/Orchestrator/Workflows/VM Post-Provision/README.md @@ -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 | diff --git a/Orchestrator/Workflows/VM Post-Provision/Tasks/03_create_dns_record.js b/Orchestrator/Workflows/VM Post-Provision/Tasks/03_create_dns_record.js index da9a218..a0af10e 100644 --- a/Orchestrator/Workflows/VM Post-Provision/Tasks/03_create_dns_record.js +++ b/Orchestrator/Workflows/VM Post-Provision/Tasks/03_create_dns_record.js @@ -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;