7 个版本
0.1.8 | 2023年1月24日 |
---|---|
0.1.7 | 2022年12月31日 |
#3 in #chaos
15KB
257 行
Caws
AWS 混沌库和 Lambda
使用方法
Rust
- 使用
cargo new --bin 项目名称
创建一个新的 Rust 项目 - 将必要的依赖项添加到你的
Cargo.toml
[dependencies]
tokio = { version = "1.23.0", features = ["full"] }
serde_json = "1.0.91"
lambda_runtime = "0.7.2"
caws = "1.0.0"
- 将
main.rs
改为以下代码
use caws::{DestructionResults, Key, Kraken};
use lambda_runtime::{service_fn, Error, LambdaEvent};
use serde_json::{from_value, to_value, Value};
#[tokio::main]
async fn main() -> Result<(), Error> {
lambda_runtime::run(service_fn(func)).await?;
Ok(())
}
async fn func(event: LambdaEvent<Value>) -> Result<Value, Error> {
let event = event.payload;
let key: Key = from_value(event)?;
let kraken = Kraken::new();
let destruction_results = kraken.release(key).await?;
Ok(to_value(DestructionResults {
execution_status: destruction_results.execution_status,
})?)
}
- 使用以下命令构建和打包你的代码:
cargo lambda build --release --x86-64 --output-format zip
(你可能需要先安装 cargo-lambda)
CDK
- 将依赖项添加到你的 cdk 项目
"caws-constructs": "^0.1.4",
- 导入
CawsLambda
构建块
import { CawsLambda } from 'caws-constructs';
- 创建 Lambda
new CawsLambda(this, 'lambda-id', {
functionName: 'function-name',
brazilPackagePath: 'path/to/bootstrap.zip',
env: [
"agents": {
//Configure here the agents that you want to enable
"test": ["dummy"]
}
]
})
- 运行 cdk deploy 创建 Lambda 和事件桥接计划
依赖项
~6–19MB
~213K SLoC