1--- 2- type: replace 3 path: /releases/- 4 value: 5 name: bosh-azure-cpi 6 url: https://bosh.io/d/github.com/cloudfoundry-incubator/bosh-azure-cpi-release?v=35.0.0 7 sha1: 0365a53fb68b647a7250c28a1c852a394ab0d79a 8 9- type: replace 10 path: /resource_pools/name=vms/stemcell? 11 value: 12 url: https://bosh.io/d/stemcells/bosh-azure-hyperv-ubuntu-trusty-go_agent?v=3468.17 13 sha1: dbda00669abca9ff9399b01626808dd0f8aa5587 14 15# Configure sizes 16- type: replace 17 path: /resource_pools/name=vms/cloud_properties? 18 value: 19 instance_type: Standard_DS1_v2 20 21- type: replace 22 path: /networks/name=private/subnets/0/cloud_properties? 23 value: 24 resource_group_name: ((resource_group_name)) 25 virtual_network_name: ((vnet_name)) 26 subnet_name: ((subnet_name)) 27 28- type: replace 29 path: /networks/name=public/subnets?/- 30 value: 31 cloud_properties: 32 resource_group_name: ((resource_group_name)) 33 34# Add CPI job 35- type: replace 36 path: /cloud_provider/template? 37 value: 38 name: azure_cpi 39 release: bosh-azure-cpi 40 41- type: replace 42 path: /cloud_provider/ssh_tunnel? 43 value: 44 host: ((external_ip)) 45 port: 22 46 user: vcap 47 private_key: ((private_key)) 48 49- type: replace 50 path: /cloud_provider/properties/azure? 51 value: 52 environment: AzureCloud 53 subscription_id: ((subscription_id)) 54 tenant_id: ((tenant_id)) 55 client_id: ((client_id)) 56 client_secret: ((client_secret)) 57 resource_group_name: ((resource_group_name)) 58 storage_account_name: ((storage_account_name)) 59 default_security_group: ((default_security_group)) 60 ssh_user: vcap 61 ssh_public_key: ((public_key)) 62