File tree 3 files changed +13
-3
lines changed
3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change
1
+ # dso-az-python
2
+
3
+ Python module for starting, shutting down and deallocating Azure VMs.
4
+
5
+ Required environment variables:
6
+
7
+ ``` bash
8
+ AZURE_SUBSCRIPTION_ID # azure subscription id
9
+ AZURE_RESOURCE_GROUP # azure resource group
10
+ ```
Original file line number Diff line number Diff line change 1
1
import os
2
2
3
- SUBSCRIPTION_ID = os .getenv ("ARM_SUBSCRIPTION_ID " )
4
- RESOURCE_GROUP = os .getenv ("RESOURCE_GROUP " , "" )
3
+ SUBSCRIPTION_ID = os .getenv ("AZURE_SUBSCRIPTION_ID " )
4
+ RESOURCE_GROUP = os .getenv ("AZURE_RESOURCE_GROUP " , "" )
Original file line number Diff line number Diff line change 7
7
requires = f .read ().splitlines ()
8
8
9
9
setup (
10
- name = "dso-az-python " ,
10
+ name = "dso_az_python " ,
11
11
version = "0.1.0" ,
12
12
packages = find_packages (),
13
13
install_requires = requires ,
You can’t perform that action at this time.
0 commit comments