This commit is contained in:
Graham Williams 2017-02-24 15:30:44 +08:00
Родитель 83d15d68f5
Коммит 2b15b00ec7
1 изменённых файлов: 1 добавлений и 10 удалений

Просмотреть файл

@ -94,16 +94,7 @@ context <- createAzureContext(tenantID=TID, clientID=CID, authKey=KEY)
# Check if the resource group already exists. Take note this script
# will not remove the resource group if it pre-existed.
context %>%
azureListRG() %>%
filter(name == RG) %>%
select(name, location) %T>%
print() %>%
nrow() %>%
equals(0) %>%
not() %T>%
print() ->
rg_pre_exists
rg_pre_exists <- existsRG(context, RG, LOC)
```
# Create a Resource Group