Skip to content

1226 - Cloud Deploy Config

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

maml
{
  provider: "azure"
  region: "us-west-2"

  # Compute resources
  compute: {
    instance_type: "Standard_B2s"
    count: 7
    auto_scaling: {
      enabled: true
      min: 1
      max: 16
      target_cpu: 61
    }
  }

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

  networking: {
    vpc: "vpc-c5bd0bfd"
    subnet: "10.113.0.0/16"
    public_ip: false
  }
}

See Also