Last active
February 7, 2018 08:57
-
-
Save serbrech/a116f43ad7e5c955dedfa2478095e02f to your computer and use it in GitHub Desktop.
k8s-dns-relay-extension
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "Relay-DNS", | |
"type": "Microsoft.Resources/deployments", | |
"apiVersion": "[variables('apiVersionLinkDefault')]", | |
"dependsOn": [ | |
"vmLoopNode" | |
], | |
"properties": { | |
"mode": "Incremental", | |
"templateLink": { | |
"uri": "https://raw.githubusercontent.com/Azure/acs-engine/master/extensions/EXTENSION-NAME/v1/template.json", | |
"contentVersion": "1.0.0.0" | |
}, | |
"parameters": { | |
"apiVersionStorage": { | |
"value": "[variables('apiVersionStorage')]" | |
}, | |
"apiVersionDefault": { | |
"value": "[variables('apiVersionDefault')]" | |
}, | |
"username": { | |
"value": "[variables('username')]" | |
}, | |
"storageAccountBaseName": { | |
"value": "[variables('storageAccountBaseName')]" | |
}, | |
"extensionParameters": { | |
"value": "EXTENSION_PARAMETERS_REPLACE" | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment