Skip to content

1440 - 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: 10
    auto_scaling: {
      enabled: true
      min: 3
      max: 17
      target_cpu: 55
    }
  }

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

  networking: {
    vpc: "vpc-1a86b82c"
    subnet: "10.145.0.0/16"
    public_ip: true
  }
}

See Also