Skip to content

740 - Cloud Deploy Config

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

maml
{
  provider: "azure"
  region: "eu-west-1"

  # Compute resources
  compute: {
    instance_type: "Standard_B2s"
    count: 2
    auto_scaling: {
      enabled: true
      min: 3
      max: 9
      target_cpu: 52
    }
  }

  storage: {
    type: "nvme"
    size_gb: 449
    encrypted: true
  }

  networking: {
    vpc: "vpc-f0fe4cd7"
    subnet: "10.80.0.0/16"
    public_ip: true
  }
}

See Also