mirror of
https://github.com/octoleo/restic.git
synced 2024-11-15 17:47:21 +00:00
61cb1cc6f8
This includes github.com/kurin/blazer 0.2.0, which resolves #1291 |
||
---|---|---|
.. | ||
paging | ||
create.go | ||
README.md |
Example Accessing the Azure DNS API
Prerequisites
-
Create an Azure Resource Group. The code assumes
delete-dns
as the name:az group create -l westus -n delete-dns
-
Create a Service Principal to access the resource group for example with the Azure CLI
az ad sp create-for-rbac --role contributor --scopes /subscriptions/<your subscription id>/resourceGroups/delete-dns
{
"appId": "<appId>",
"displayName": "<displayName>",
"name": "<name>",
"password": "<password>",
"tenant": "<tenantId>"
}
- Set the following environment variables from the service principal
- AZURE_CLIENT_ID=
- AZURE_CLIENT_SECRET=
- AZURE_SUBSCRIPTION_ID=
- AZURE_TENANT_ID=
You can query the subscription id for your subscription with: az account show --query id
- Get the dependencies
- go get github.com/Azure/go-autorest/autorest
- go get github.com/Azure/go-autorest/autorest/azure
- github.com/Azure/azure-sdk-for-go/arm
Run the sample
Execute with go run create.go