fl8 0.1.0

Lightweight cloud-agnostic Infrastructure as Code (IaC) library in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! fl8 — Lightweight cloud-agnostic infrastructure in Rust 🦀
//!
//! # Example
//! ```no_run
//! use fl8::{Stack, Resource};
//!
//! let mut stack = Stack::new("example");
//! stack.add(Resource::new("example-bucket", "aws_s3_bucket"));
//! stack.plan();
//! stack.launch();
//! ```

pub mod resource;
pub mod stack;

pub use resource::Resource;
pub use stack::Stack;