Skip to content

2022 - Cloud Deploy Config

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

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

  # Compute resources
  compute: {
    instance_type: "Standard_B2s"
    count: 10
    auto_scaling: {
      enabled: true
      min: 1
      max: 14
      target_cpu: 78
    }
  }

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

  networking: {
    vpc: "vpc-ab95c6ae"
    subnet: "10.69.0.0/16"
    public_ip: false
  }
}

See Also