languages:
This repo contains a collection of sample usages of the new version of Azure/azure-sdk-for-go. All the samples are placed under sdk
folder and the folder structures are corresponding to the service packages under the /sdk
directory of the Azure/azure-sdk-for-go repo. You can refer to this doc to get started with Azure SDK for Go.
For general SDK help, please refer to the SDK README.
You will need Go 1.18 and latest version of resource management modules.
You will need to authenticate to Azure either by using Azure CLI to sign in or setting environment variables.
You could easily use az login
in command line to sign in to Azure via your default browser. Detail instructions can be found in Sign in with Azure CLI.
If your code is going to run in a none-user-interactive environment, you can also authenticate by setting environment variables as below.
You will need the following values to authenticate to Azure
These values can be obtained from the portal, here's the instructions:
Get Subscription ID
Get Client ID / Client Secret / Tenant ID
For information on how to get Client ID, Client Secret, and Tenant ID, please refer to this document
Setting Environment Variables
After you obtained the values, you need to set the following values as your environment variables
AZURE_CLIENT_ID
AZURE_CLIENT_SECRET
AZURE_TENANT_ID
AZURE_SUBSCRIPTION_ID
To set the following environment variables on your development system:
Windows (Note: Administrator access is required)
Environment Variables…
button.Edit…
button. If the property name is not listed, then click the New…
button.Linux-based OS :
export AZURE_CLIENT_ID="__CLIENT_ID__"
export AZURE_CLIENT_SECRET="__CLIENT_SECRET__"
export AZURE_TENANT_ID="__TENANT_ID__"
export AZURE_SUBSCRIPTION_ID="__SUBSCRIPTION_ID__"
Clone the repository.
git clone https://github.com/Azure-Samples/azure-sdk-for-go-samples.git
Set the environment variable.
# bash
export AZURE_SUBSCRIPTION_ID=<your Azure subscription id>
# If no value is set, the created resource will be deleted by default.
# anything other than empty to keep the resources
export KEEP_RESOURCE=1
# powershell
$env:AZURE_SUBSCRIPTION_ID=<your Azure subscription id>
$env:KEEP_RESOURCE=1
Choose one sample and run.
cd azure-sdk-for-go-samples/sdk/resourcemanager/<service>/<single sample>
go run main.go
This code is provided under the MIT license. See LICENSE for details.
We welcome your contributions! For instructions and our code of conduct see CONTRIBUTING.md. And thank you!