22 lines
488 B
Rust
22 lines
488 B
Rust
use harmony::{
|
|
inventory::Inventory, modules::zitadel::ZitadelScore, topology::K8sAnywhereTopology,
|
|
};
|
|
|
|
#[tokio::main]
|
|
async fn main() {
|
|
let zitadel = ZitadelScore {
|
|
host: "sso.sto1.nationtech.io".to_string(),
|
|
zitadel_version: "v4.12.1".to_string(),
|
|
external_secure: true,
|
|
};
|
|
|
|
harmony_cli::run(
|
|
Inventory::autoload(),
|
|
K8sAnywhereTopology::from_env(),
|
|
vec![Box::new(zitadel)],
|
|
None,
|
|
)
|
|
.await
|
|
.unwrap();
|
|
}
|