Skip to content

4140 - Cloud Deploy Config

Cloud deployment infrastructure configuration. This is an example of a MAML document.

maml
{
  provider: "azure"
  region: "ap-southeast-1"

  # Compute resources
  compute: {
    instance_type: "t3.medium"
    count: 9
    auto_scaling: {
      enabled: true
      min: 3
      max: 16
      target_cpu: 62
    }
  }

  storage: {
    type: "hdd"
    size_gb: 311
    encrypted: true
  }

  networking: {
    vpc: "vpc-49e70cfb"
    subnet: "10.137.0.0/16"
    public_ip: false
  }
}

See Also