Skip to content

2027 - 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: "t3.medium"
    count: 7
    auto_scaling: {
      enabled: true
      min: 2
      max: 12
      target_cpu: 70
    }
  }

  storage: {
    type: "hdd"
    size_gb: 418
    encrypted: true
  }

  networking: {
    vpc: "vpc-e819debc"
    subnet: "10.10.0.0/16"
    public_ip: false
  }
}

See Also