We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7f2bb23 + 7e13dc7 commit 7edb0f2Copy full SHA for 7edb0f2
hack/create.sh
@@ -46,7 +46,11 @@ export RESOURCEGROUP=$1
46
rm -rf _data
47
mkdir -p _data/_out
48
49
-az group create -n $RESOURCEGROUP -l eastus --tags now=$(date +%s) >/dev/null
+ttl=76h
50
+if [[ -n $RESOURCEGROUP_TTL ]]; then
51
+ ttl=$RESOURCEGROUP_TTL
52
+fi
53
+az group create -n $RESOURCEGROUP -l eastus --tags now=$(date +%s) ttl=$ttl >/dev/null
54
55
# if AZURE_CLIENT_ID is used as AZURE_AAD_CLIENT_ID, script will reset global team account!
56
set +x
0 commit comments