This file contains hidden or 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
echo Enter the name of the environment you would like to delete | |
read envName | |
echo "Deleting Resource Group" | |
az group delete --name rg-$envName | |
echo "Deleting Service Principal" | |
az ad sp delete --id http://sp-kube-api-$envName |
This file contains hidden or 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
resources: | |
containers: | |
- container: nuget | |
image: cwoolum/thin-nuget-proxy | |
ports: | |
- 8080:80 | |
env: | |
MIRROR__ACCESSTOKEN: $(System.AccessToken) | |
MIRROR__PACKAGESOURCE: "https://pkgs.dev.azure.com/mypackages/_packaging/mypackages/nuget/v3/index.json" |
This file contains hidden or 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
resource "azurerm_resource_group" "example" { | |
name = "example-resources" | |
location = "West US 2" | |
} | |
data "azurerm_client_config" "current" { | |
} | |
resource "azurerm_kubernetes_cluster" "example" { | |
name = "example-aks1" |
OlderNewer