Skip to content

1323 - 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: 5
    auto_scaling: {
      enabled: true
      min: 2
      max: 18
      target_cpu: 62
    }
  }

  storage: {
    type: "ssd"
    size_gb: 112
    encrypted: true
  }

  networking: {
    vpc: "vpc-5b4bda9b"
    subnet: "10.178.0.0/16"
    public_ip: false
  }
}

See Also