Azure Custom Script Virtual Machine Extension πŸ†•
ΠŸΠ΅Ρ€Π΅ΠΉΡ‚ΠΈ ΠΊ Ρ„Π°ΠΉΠ»Ρƒ
Christopher Boumenot e2fe70a2b2 remove migration code 2017-10-13 10:28:10 -07:00
Godeps Vendor azure-sdk-for-go latest 2016-08-02 15:09:46 -07:00
integration-test remove migration code 2017-10-13 10:28:10 -07:00
main remove migration code 2017-10-13 10:28:10 -07:00
misc Bump version to 2.0.3 2017-03-30 17:00:30 -07:00
pkg fix tests with new storage account name 2016-10-11 11:19:16 -07:00
vendor Vendor azure-sdk-for-go latest 2016-08-02 15:09:46 -07:00
.dockerignore Containerized integration test environment 2016-07-25 14:26:52 -07:00
.gitignore .gitignore minor update 2016-07-21 23:09:59 -07:00
.travis.yml Update to go1.7 for travis builds 2016-11-29 14:06:21 -08:00
ISSUE_TEMPLATE Add ISSUE_TEMPLATE for github issues 2016-07-27 15:25:27 -07:00
LICENSE Fix Company name in LICENSE 2016-07-27 15:29:14 -07:00
Makefile Unify version string management in code 2016-08-11 11:51:53 -07:00
README.md Make the version clear, move up build badge 2017-03-30 16:57:45 -07:00
test.Dockerfile Move manifests into misc/ 2016-08-01 13:52:43 -07:00

README.md

Azure Custom Script Virtual Machine Extension (2.0)

Build Status

Custom Script Extension lets you run script you provide on Virtual Machines to bootstrap/install software, run administrative and automation tasks. It can run an inline script you specify or download a script file from internet or Azure Storage.

You can add Custom Script Extension to your VM using:

  • Azure CLI
  • Azure PowerShell
  • Azure Resource Manager (ARM) Templates
  • Azure Virtual Machines REST API

ℹ️ Please read the Using the Azure Custom Script Extension with Linux Virtual Machines page for detailed usage instructions.

Custom Script Extension Reference Guide

1. Extension Configuration

You can specify files to download and command to execute in the configuration section of the extensions. If your commandToExecute contains secrets, please use the β€œprotected configuration” section to specify it.

The specified command will be executed only once. If you change anything in the extension configuration and deploy it again, the command will be executed again.

1.1. Public Configuration

Schema for the public configuration file looks like this:

  • commandToExecute: (required, string) the entrypoint script to execute
  • fileUris: (optional, string array) the URLs for file(s) to be downloaded.
  • timestamp (optional, 32-bit integer) use this field only to trigger a re-run of the script by changing value of this field.
{
  "fileUris": ["<url>"],
  "commandToExecute": "<command-to-execute>"
}

Examples:

{
  "fileUris": ["https://gist.github.com/ahmetalpbalkan/b5d4a856fe15464015ae87d5587a4439/raw/466f5c30507c990a4d5a2f5c79f901fa89a80841/hello.sh"],
  "commandToExecute": "./hello.sh"
}
{
  "commandToExecute": "apt-get -y update && apt-get install -y apache2"
}

1.2. Protected Configuration

The configuration provided in these keys are stored as encrypted and are only decrypted inside your Virtual Machine:

  • commandToExecute: (optional, string) the entrypoint script to execute. Use this field instead if your command contains secrets such as passwords.
  • storageAccountName: (optional, string) the name of storage account. If you specify storage credentials, all fileUris must be URLs for Azure Blobs.
  • storageAccountKey: (optional, string) the access key of storage account
{
  "commandToExecute": "<command-to-execute>",
  "storageAccountName": "<storage-account-name>",
  "storageAccountKey": "<storage-account-key>"
}

2. Deployment to a Virtual Machine

For ARM templates, see this documentation to create an extension resource in your template.

For Azure CLI, create a public.json (and optionally protected.json) and run:

$ azure vm extension set <resource-group> <vm-name> \
    CustomScript Microsoft.Azure.Extensions 2.0 \
    --auto-upgrade-minor-version \
    --public-config-path public.json \
    --private-config-path protected.json

3. Troubleshooting

Your files are downloaded to a path like: /var/lib/waagent/custom-script/download/0/ and the command output is saved to stdout and stderr files in this directory. Please read these files to find out output from your script.

You can find the logs for the extension at /var/log/azure/custom-script/handler.log.

Please open an issue on this GitHub repository if you encounter problems that you could not debug with these log files.


This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.