Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Aug 13, 2024
1 parent bfcd58e commit fb372f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions sdk/gleam/demo/src/fluentci.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ export function client() {
return dag;
}

export function azureSecretsManager(c, region, accessKeyId, secretAccessKey) {
return c.azureSecretsManager(region, accessKeyId, secretAccessKey);
export function awsSecretsManager(c, region, accessKeyId, secretAccessKey) {
return c.awsSecretsManager(region, accessKeyId, secretAccessKey);
}

export function azureKeyvault(
Expand Down
4 changes: 2 additions & 2 deletions sdk/gleam/demo/src/fluentci/client.gleam
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ pub type NixArgs {
@external(javascript, "../fluentci.mjs", "client")
pub fn dag() -> Client

@external(javascript, "../fluentci.mjs", "azureSecretsManager")
pub fn azure_secrets_manager(
@external(javascript, "../fluentci.mjs", "awsSecretsManager")
pub fn aws_secrets_manager(
client: Client,
region: String,
access_key_id: String,
Expand Down

0 comments on commit fb372f0

Please sign in to comment.