Skip to content

Commit

Permalink
- Fixed typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
seriva committed Aug 8, 2019
1 parent e419c70 commit ae5246f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/src/epicli/cli/engine/TerraformRunner.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def run(self):
if self.cluster_model.provider == 'azure':
subscription = self.azure_cli.login(self.cluster_model.specification.cloud.subscription_name)

if self.cluster_model.specification.cloud.use_service_principle:
if self.cluster_model.specification.cloud.use_service_principal:
sp_file = os.path.join(get_terraform_path(self.cluster_model.specification.name), SP_FILE_NAME)
if not os.path.exists(sp_file):
self.logger.info('Creating service principle')
Expand Down
2 changes: 1 addition & 1 deletion core/src/epicli/data/common/defaults/epiphany-cluster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ specification:
resource_group_name: YOUR-RESOURCE-GROUP-NAME
vnet_address_pool: 10.1.0.0/20
use_public_ips: False # When not using public IPs you have to provide connectivity via private IPs (VPN)
use_service_principle: False
use_service_principal: False
region: eu-west-2
credentials: # todo change it to get credentials from vault
key: 3124-4124-4124
Expand Down

0 comments on commit ae5246f

Please sign in to comment.