Skip to content

623 - Cloud Deploy Config

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

maml
{
  provider: "azure"
  region: "us-east-1"

  # Compute resources
  compute: {
    instance_type: "Standard_B2s"
    count: 6
    auto_scaling: {
      enabled: true
      min: 2
      max: 19
      target_cpu: 59
    }
  }

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

  networking: {
    vpc: "vpc-29bf8377"
    subnet: "10.168.0.0/16"
    public_ip: false
  }
}

See Also