Skip to content

424 - Cloud Deploy Config

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

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

  # Compute resources
  compute: {
    instance_type: "Standard_B2s"
    count: 1
    auto_scaling: {
      enabled: true
      min: 3
      max: 11
      target_cpu: 50
    }
  }

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

  networking: {
    vpc: "vpc-c07a58f0"
    subnet: "10.248.0.0/16"
    public_ip: true
  }
}

See Also