Skip to content

828 - 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: 8
    auto_scaling: {
      enabled: true
      min: 2
      max: 12
      target_cpu: 63
    }
  }

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

  networking: {
    vpc: "vpc-5ba64c4e"
    subnet: "10.211.0.0/16"
    public_ip: true
  }
}

See Also