Skip to content

2835 - Cloud Deploy Config

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

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

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

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

  networking: {
    vpc: "vpc-91e92e30"
    subnet: "10.250.0.0/16"
    public_ip: false
  }
}

See Also