Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Keys readme example does not run #2116

Closed
RickWinter opened this issue Feb 12, 2025 · 0 comments
Closed

Keys readme example does not run #2116

RickWinter opened this issue Feb 12, 2025 · 0 comments
Labels
blocking-release Blocks release Docs KeyVault Key Vault

Comments

@RickWinter
Copy link
Member

RickWinter commented Feb 12, 2025

The example needs to specifiy some options. We should look into the options and see if there should be default values.

use azure_identity::DefaultAzureCredential;
use azure_security_keyvault_keys::{models::KeyCreateParameters, KeyClient};
use azure_security_keyvault_keys::
    models::JsonWebKeyType;

#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
    let credential = DefaultAzureCredential::new()?;

    let client = KeyClient::new(
        "https://<val>.vault.azure.net",
        credential.clone(),
        None,
    )?;

    // Create an RSA key.
    let body = KeyCreateParameters {
        kty: Some(JsonWebKeyType::RSA),
        key_size: Some(2048),
        ..Default::default()
    };

    let key = client
        .create_key("<key-name>", body.try_into()?, None)
        .await?
        .into_body()
        .await?;
    
    println!("Created key: {:?}", key);

    Ok(())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
blocking-release Blocks release Docs KeyVault Key Vault
Projects
Status: Done
Status: Done
Development

No branches or pull requests

1 participant