Skip to content

Commit

Permalink
add enableNodePublicIp to AMLCompute (#9725)
Browse files Browse the repository at this point in the history
  • Loading branch information
comacgin authored Jun 22, 2020
1 parent 7587afa commit e44a02a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
"minNodeCount": 0,
"nodeIdleTimeBeforeScaleDown": "PT5M"
},
"remoteLoginPortPublicAccess": "NotSpecified"
"remoteLoginPortPublicAccess": "NotSpecified",
"enableNodePublicIp": true
}
},
"identity": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@
"unusableNodeCount": 0,
"leavingNodeCount": 0,
"preemptedNodeCount": 0
}
},
"enableNodePublicIp": true
}
},
"identity": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2365,6 +2365,12 @@
"description": "Counts of various node states on the compute.",
"readOnly": true,
"$ref": "#/definitions/NodeStateCounts"
},
"enableNodePublicIp": {
"type": "boolean",
"default": true,
"title": "Enable node public IP.",
"description": "Enable or disable node public IP address provisioning. Possible values are: Possible values are: true - Indicates that the compute nodes will have public IPs provisioned. false - Indicates that the compute nodes will have a private endpoint and no public IPs."
}
}
}
Expand Down

0 comments on commit e44a02a

Please sign in to comment.