diff --git a/azure.yaml b/azure.yaml index df68265..c3530f2 100644 --- a/azure.yaml +++ b/azure.yaml @@ -109,6 +109,7 @@ node_templates: haproxy_requirements: type: cloudify.azure.nodes.compute.VirtualMachineExtension properties: + name: {concat:[{get_input: resource_prefix},vmext,{get_input: resource_suffix}]} location: { get_input: location } retry_after: { get_input: retry_after } azure_config: *azure_config @@ -175,6 +176,7 @@ node_templates: host: type: cloudify.azure.nodes.compute.VirtualMachine properties: + name: {concat:[{get_input: resource_prefix},vm,{get_input: resource_suffix}]} location: { get_input: location } retry_after: { get_input: retry_after } os_family: linux @@ -210,6 +212,7 @@ node_templates: host_nic: type: cloudify.azure.nodes.network.NetworkInterfaceCard properties: + name: {concat:[{get_input: resource_prefix},nic,{get_input: resource_suffix}]} location: { get_secret: azure_location } azure_config: *azure_config retry_after: { get_input: retry_after } @@ -224,6 +227,7 @@ node_templates: host_nic_ip_cfg: type: cloudify.azure.nodes.network.IPConfiguration properties: + name: {concat:[{get_input: resource_prefix},ip,{get_input: resource_suffix}]} location: { get_secret: azure_location } azure_config: *azure_config retry_after: { get_input: retry_after } @@ -297,6 +301,7 @@ node_templates: ip: type: cloudify.azure.nodes.network.PublicIPAddress properties: + name: {concat:[{get_input: resource_prefix},pubip,{get_input: resource_suffix}]} location: { get_secret: azure_location } azure_config: *azure_config retry_after: { get_input: retry_after } @@ -320,6 +325,7 @@ node_templates: storage_account: type: cloudify.azure.nodes.storage.StorageAccount properties: + name: {concat:[{get_input: resource_prefix},sa,{get_input: resource_suffix}]} location: { get_secret: azure_location } azure_config: *azure_config retry_after: { get_input: retry_after }