stackql-deploy 2.1.0

Infrastructure-as-code framework for declarative cloud resource management using StackQL
1
2
3
4
5
6
7
8
9
10
11
12
// resource/mod.rs

//! # Resource Module
//!
//! This module contains functionality for working with resources in a stack.
//! It includes submodules for manifest handling, operations, queries, and exports.
//!
//! Resources are the fundamental building blocks of a stack, and this module
//! provides the tools needed to load, manipulate, and process them.

pub mod manifest;
pub mod validation;