Skip to content

827 - Cloud Deploy Config

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

maml
{
  provider: "digitalocean"
  region: "us-east-1"

  # Compute resources
  compute: {
    instance_type: "e2-standard-4"
    count: 1
    auto_scaling: {
      enabled: true
      min: 3
      max: 8
      target_cpu: 57
    }
  }

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

  networking: {
    vpc: "vpc-27576de1"
    subnet: "10.72.0.0/16"
    public_ip: true
  }
}

See Also