azure-deployment-configuration-model.txt 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. #
  2. # Windows Azure deployment configuration.
  3. #
  4. # This is a model file. Instructions:
  5. # - Copy this file to a new file named "azure-deployment-configuration.sh" in the same directory.
  6. # - Configure as documented below.
  7. #
  8. # Full pathname of the Windows Azure account publish settings file.
  9. # This file can be downloaded with the "azure account download" command.
  10. # For more information refer to http://www.windowsazure.com/en-us/manage/linux/other-resources/command-line-tools/
  11. AZURE_DEPLOYMENT_PUBLISHSETTINGS_LOCATION=""
  12. # Name of the Windows Azure subscription where the resources will be created.
  13. # Most Windows Azure accounts have a single subscription, but they can have many.
  14. # To list the available subscriptions use the command "azure account import publishsettingsfile.publishsettings"
  15. # where "publishsettingsfile.publishsettings" is the publish settings file downloaded previously.
  16. AZURE_DEPLOYMENT_SUBSCRIPTION=""
  17. # Region where the resources will be created.
  18. # To see a list of locations available for your subscription, execute the command "azure vm location list".
  19. # Some choices may be "East US", "West US", "North Europe", "West Europe", "East Asia", "Southeast Asia".
  20. AZURE_DEPLOYMENT_LOCATION="East US"
  21. # Name of the deployment on Windows Azure.
  22. # It will be used as a prefix to name resources such as virtual machines.
  23. # It has to be globally unique within Windows Azure and it can be at most 12 characters long.
  24. # Suggestion: use the form "wfbMMDDHHmm" where:
  25. # wfb stands for "Web Framework Benchmarks"
  26. # MM is the current month with 2 digits
  27. # DD is the current day with 2 digits
  28. # HH is the hour part of the current time with 2 digits
  29. # MM is the minutes part of the current time with 2 digits
  30. # For example, for a deployment created at 4:23 pm, Aug 9th 2013:
  31. # AZURE_DEPLOYMENT_NAME="wfb08091623"
  32. AZURE_DEPLOYMENT_NAME=""
  33. # Password for Windows servers.
  34. # Must be at least 10 characters long with mixed case, digits and special symbols.
  35. AZURE_WINDOWS_PASSWORD=""
  36. # Size of the virtual machines to be created.
  37. # Valid values include: extrasmall, small, medium, large, extralarge, a6, a7.
  38. # Warning: To use extralarge or bigger you may have to ask Windows Azure support
  39. # to increase the core limit of your subscription. It's initially limited to 20 cores.
  40. AZURE_DEPLOYMENT_VM_SIZE="large"
  41. # Benchmark repository to use.
  42. # Set this variable to use a custom repository. Its default value is the official repository.
  43. # BENCHMARK_REPOSITORY=""
  44. # Benchmark repository branch to use.
  45. # Set this variable to use a custom branch. Its default value is "master".
  46. # BENCHMARK_BRANCH=""