Not the most elegant way, but does the job and makes sure it's specific to just that 1 master page template.
add this to the layout of that specific Master Page:
<script runat="server">
protected void Page_Load(object sender, EventArgs e)
{
CMS.UIControls.ContentPage page = this.Page as CMS.UIControls.ContentPage;
if(page != null)
{
page.XmlNamespace += " data-iframe-height=\"123\"";
}
}
</script>
Should look somewhat like: