File tree Expand file tree Collapse file tree 4 files changed +8
-3
lines changed
Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ SHA1 := $$(git log -1 --pretty=%h)
88CURRENT_BRANCH := $$(git symbolic-ref -q --short HEAD )
99LATEST_TAG := ${REPO_NAME}:latest
1010GIT_TAG := ${REPO_NAME}:${SHA1}
11- VERSION := v0.2.6
11+ VERSION := v0.2.7
1212
1313info : # # Show information about the current git state.
1414 @echo " Github Project: https://github.com/${REPO_NAME} \nCurrent Branch: ${CURRENT_BRANCH} \nSHA1: ${SHA1} \n"
Original file line number Diff line number Diff line change 1- __version__ = "0.2.6 "
1+ __version__ = "0.2.7 "
Original file line number Diff line number Diff line change 77import datetime
88import json
99import os
10+ import pprint
1011from typing import Any , Dict , List
1112
1213import boto3
@@ -502,6 +503,10 @@ def update_blueprint(self) -> bool:
502503 ]
503504
504505 blueprint ["publicIPAction" ] = self .config .active_config .get ("public_ip" , "DONT_ALLOCATE" )
506+
507+ print (f"Updated blueprint for { _machine_name } " )
508+ pprint .pprint (blueprint )
509+
505510 if self .dry_run :
506511 print ("This is a dry run! Not updating blueprints!" )
507512 return True
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " cloudendure"
3- version = " 0.2.6 "
3+ version = " 0.2.7 "
44description = " Python wrapper and CLI for CloudEndure"
55authors = [" Mark Beacom <mark@markbeacom.com>" , " Tom Warnock <twarnock@2ndwatch.com>" ]
66maintainers = [" Evan Lucchesi <evan@2ndwatch.com>" , " Nick Selpa <nselpa@2ndwatch.com>" ]
You can’t perform that action at this time.
0 commit comments