Use when creating or editing Nullstone IaC YAML files under `.nullstone/` — adding or wiring apps, datastores, networks, domains, subdomains, ingresses, clusters, cluster-namespaces; setting `vars`, `environment`, `connections`, or `capabilities`; configuring `events`. Triggers on file paths `.nullstone/config.yml`, `.nullstone/{env}.yml`, `.nullstone/previews.yml`, and anything under `.nullstone/stacks/{stack}/`.
80
100%
Does it follow best practices?
Impact
—
No eval scenarios have been run
Passed
No known issues
networks top-level elementA network is a block that represents a virtual network and its associated subnets, routes, and base networking components.
A network has the same schema as a block.
networks:
network0:
module: nullstone/aws-network
vars:
cidr: "10.0.0.0/16"
private_subnets:
- "10.0.1.0/24"
- "10.0.2.0/24"
- "10.0.3.0/24"
public_subnets:
- "10.0.101.0/24"
- "10.0.102.0/24"
- "10.0.103.0/24"moduleSee blocks#module.
module_versionvarsSee blocks#vars.
connectionsSee blocks#connections.