Commit 973c3d8e by Szabolcs Gelencser

Remove unnecessary variable

parent 65ef48fc
...@@ -17,7 +17,6 @@ TENANT = getenv('TENANT') ...@@ -17,7 +17,6 @@ TENANT = getenv('TENANT')
GROUP_NAME = getenv('GROUP_NAME') GROUP_NAME = getenv('GROUP_NAME')
REGION = getenv('REGION') REGION = getenv('REGION')
subscription_id = SUBSCRIPTION_ID
credentials = ServicePrincipalCredentials( credentials = ServicePrincipalCredentials(
client_id = CLIENT_ID, client_id = CLIENT_ID,
secret = SECRET, secret = SECRET,
...@@ -26,7 +25,7 @@ credentials = ServicePrincipalCredentials( ...@@ -26,7 +25,7 @@ credentials = ServicePrincipalCredentials(
network_client = azure.mgmt.network.NetworkManagementClient( network_client = azure.mgmt.network.NetworkManagementClient(
credentials, credentials,
subscription_id SUBSCRIPTION_ID
) )
celery = Celery('fw',) celery = Celery('fw',)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment