File tree Expand file tree Collapse file tree 1 file changed +13
-9
lines changed Expand file tree Collapse file tree 1 file changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -1728,15 +1728,19 @@ def __step_details(self, pipeline_details: Dict) -> list:
17281728
17291729 def __step_infrastructure_configuration_details (self , step ) -> dict :
17301730 step_infrastructure_configuration_details = {}
1731- step_infrastructure_configuration_details [
1732- "blockStorageSizeInGBs"
1733- ] = step .infrastructure .block_storage_size
1734- step_infrastructure_configuration_details [
1735- "shapeName"
1736- ] = step .infrastructure .shape_name
1737- step_infrastructure_configuration_details [
1738- "shapeConfigDetails"
1739- ] = step .infrastructure .shape_config_details
1731+ step_infrastructure_configuration_details ["blockStorageSizeInGBs" ] = (
1732+ step .infrastructure .block_storage_size
1733+ )
1734+ step_infrastructure_configuration_details ["shapeName" ] = (
1735+ step .infrastructure .shape_name
1736+ )
1737+ step_infrastructure_configuration_details ["shapeConfigDetails" ] = (
1738+ step .infrastructure .shape_config_details
1739+ )
1740+ if getattr (step .infrastructure , "subnet_id" , "" ):
1741+ step_infrastructure_configuration_details ["subnetId" ] = (
1742+ step .infrastructure .subnet_id
1743+ )
17401744 return step_infrastructure_configuration_details
17411745
17421746 def __step_configuration_details (self , pipeline_details : Dict , step ) -> dict :
You can’t perform that action at this time.
0 commit comments