Post-rebase fixes

This commit is contained in:
tomdds
2019-10-29 16:28:28 -04:00
parent 63ea7db390
commit 3e7a720ffb
4 changed files with 47 additions and 22 deletions

View File

@@ -431,9 +431,7 @@ class AzureCloudProvider(CloudProviderInterface):
credentials = self._get_credential_obj(self._root_creds)
sub_client = self.sdk.subscription.SubscriptionClient(credentials)
display_name = (
f"{environment.application.name}_{environment.name}_{environment.id}"
) # proposed format
display_name = f"{environment.application.name}_{environment.name}_{environment.id}" # proposed format
billing_profile_id = "?" # something chained from environment?
sku_id = AZURE_SKU_ID

View File

@@ -30,8 +30,8 @@ class Permissions(object):
CREATE_TASK_ORDER = "create_task_order" # create a new TO
VIEW_TASK_ORDER_DETAILS = "view_task_order_details" # individual TO page
EDIT_TASK_ORDER_DETAILS = (
"edit_task_order_details"
) # edit TO that has not been finalized
"edit_task_order_details" # edit TO that has not been finalized
)
# reporting
VIEW_PORTFOLIO_REPORTS = "view_portfolio_reports"