vaultrs/auth/aws.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718
use crate::{
api::{
self,
auth::aws::requests::{Ec2LoginRequest, IamLoginRequest},
AuthInfo,
},
client::Client,
error::ClientError,
};
// See [IamLoginRequest]
pub async fn iam_login(
client: &impl Client,
mount: &str,
iam_http_request_method: &str,
iam_request_url: &str,
iam_request_headers: &str,
iam_request_body: &str,
role: Option<&str>,
) -> Result<AuthInfo, ClientError> {
let mut endpoint = IamLoginRequest::builder();
endpoint
.iam_http_request_method(iam_http_request_method)
.iam_request_url(iam_request_url)
.iam_request_headers(iam_request_headers)
.iam_request_body(iam_request_body);
if let Some(role) = role {
endpoint.role(role);
}
api::auth(client, endpoint.mount(mount).build().unwrap()).await
}
// See [Ec2LoginRequest]
pub async fn ec2_login(
client: &impl Client,
mount: &str,
pkcs7: &str,
nonce: Option<&str>,
role: Option<&str>,
) -> Result<AuthInfo, ClientError> {
let mut endpoint = Ec2LoginRequest::builder();
if let Some(nonce) = nonce {
endpoint.nonce(nonce);
}
if let Some(role) = role {
endpoint.role(role);
}
api::auth(client, endpoint.mount(mount).pkcs7(pkcs7).build().unwrap()).await
}
// modules structure depends on URI,
// e.g /auth/aws/config/client -> `mod config { mod client { fn set, fn read, fn delete }}`
pub mod config {
pub mod client {
use crate::{
api::{
self,
auth::aws::{
requests::{
ConfigureClientRequest, ConfigureClientRequestBuilder,
DeleteClientConfigurationRequest, ReadClientConfigurationRequest,
RotateRootCredentialsRequest,
},
responses::{ReadClientConfigurationResponse, RotateRootCredentialsResponse},
},
},
client::Client,
error::ClientError,
};
/// Configures the credentials required to perform API calls to AWS as well as custom endpoints to talk to AWS APIs.
///
/// See [ConfigureClientRequest]
pub async fn set(
client: &impl Client,
mount: &str,
opts: Option<&mut ConfigureClientRequestBuilder>,
) -> Result<(), ClientError> {
let mut t = ConfigureClientRequest::builder();
let endpoint = opts.unwrap_or(&mut t).mount(mount).build().unwrap();
api::exec_with_empty(client, endpoint).await
}
/// Returns the previously configured AWS access credentials.
///
/// See [ReadClientConfigurationResponse]
pub async fn read(
client: &impl Client,
mount: &str,
) -> Result<ReadClientConfigurationResponse, ClientError> {
let endpoint = ReadClientConfigurationRequest::builder()
.mount(mount)
.build()
.unwrap();
api::exec_with_result(client, endpoint).await
}
/// Deletes the previously configured AWS access credentials.
///
/// See [DeleteClientConfigurationRequest]
pub async fn delete(client: &impl Client, mount: &str) -> Result<(), ClientError> {
let endpoint = DeleteClientConfigurationRequest::builder()
.mount(mount)
.build()
.unwrap();
api::exec_with_empty(client, endpoint).await
}
/// When you have configured Vault with static credentials, you can use this function to have Vault rotate the access key it used.
///
/// See [RotateRootCredentialsRequest]
pub async fn rotate_root_credentials(
client: &impl Client,
mount: &str,
) -> Result<RotateRootCredentialsResponse, ClientError> {
let endpoint = RotateRootCredentialsRequest::builder()
.mount(mount)
.build()
.unwrap();
api::exec_with_result(client, endpoint).await
}
}
pub mod identity {
use crate::{
api::{
self,
auth::aws::{
requests::{
ConfigureIdentityRequest, ConfigureIdentityRequestBuilder,
ReadIdentityConfigurationRequest,
},
responses::ReadIdentityConfigurationResponse,
},
},
client::Client,
error::ClientError,
};
/// This configures the way that Vault interacts with the Identity store.
///
/// See [ConfigureIdentityRequest]
pub async fn set(
client: &impl Client,
mount: &str,
opts: Option<&mut ConfigureIdentityRequestBuilder>,
) -> Result<(), ClientError> {
let mut t = ConfigureIdentityRequest::builder();
let endpoint = opts.unwrap_or(&mut t).mount(mount).build().unwrap();
api::exec_with_empty(client, endpoint).await
}
/// Returns the previously configured Identity integration configuration
///
/// See [ReadIdentityConfigurationResponse]
pub async fn read(
client: &impl Client,
mount: &str,
) -> Result<ReadIdentityConfigurationResponse, ClientError> {
let endpoint = ReadIdentityConfigurationRequest::builder()
.mount(mount)
.build()
.unwrap();
api::exec_with_result(client, endpoint).await
}
}
pub mod certificate {
use crate::{
api::{
self,
auth::aws::{
requests::{
CreateCertificateConfigurationRequest,
CreateCertificateConfigurationRequestBuilder,
DeleteCertificateConfigurationRequest,
ListCertificateConfigurationsRequest, ReadCertificateConfigurationRequest,
},
responses::{
ListCertificateConfigurationsResponse, ReadCertificateConfigurationResponse,
},
},
},
client::Client,
error::ClientError,
};
/// Registers an AWS public key to be used to verify the instance identity documents.
///
/// See [CreateCertificateConfigurationRequest]
pub async fn create(
client: &impl Client,
mount: &str,
cert_name: &str,
aws_public_cert: &str,
opts: Option<&mut CreateCertificateConfigurationRequestBuilder>,
) -> Result<(), ClientError> {
let mut t = CreateCertificateConfigurationRequest::builder();
let endpoint = opts
.unwrap_or(&mut t)
.mount(mount)
.cert_name(cert_name)
.aws_public_cert(aws_public_cert)
.build()
.unwrap();
api::exec_with_empty(client, endpoint).await
}
/// Returns the previously configured AWS public key.
///
/// See [ReadCertificateConfigurationResponse]
pub async fn read(
client: &impl Client,
mount: &str,
cert_name: &str,
) -> Result<ReadCertificateConfigurationResponse, ClientError> {
let endpoint = ReadCertificateConfigurationRequest::builder()
.mount(mount)
.cert_name(cert_name)
.build()
.unwrap();
api::exec_with_result(client, endpoint).await
}
/// Removes the previously configured AWS public key.
///
/// See [DeleteCertificateConfigurationRequest]
pub async fn delete(
client: &impl Client,
mount: &str,
cert_name: &str,
) -> Result<(), ClientError> {
let endpoint = DeleteCertificateConfigurationRequest::builder()
.mount(mount)
.cert_name(cert_name)
.build()
.unwrap();
api::exec_with_empty(client, endpoint).await
}
/// Lists all the AWS public certificates that are registered with the method.
///
/// See [ListCertificateConfigurationsResponse]
pub async fn list(
client: &impl Client,
mount: &str,
) -> Result<ListCertificateConfigurationsResponse, ClientError> {
let endpoint = ListCertificateConfigurationsRequest::builder()
.mount(mount)
.build()
.unwrap();
api::exec_with_result(client, endpoint).await
}
}
pub mod sts {
use crate::{
api::{
self,
auth::aws::{
requests::{
CreateStsRoleRequest, DeleteStsRoleRequest, ListStsRolesRequest,
ReadStsRoleRequest,
},
responses::{ListStsRolesResponse, ReadStsRoleResponse},
},
},
client::Client,
error::ClientError,
};
/// Allows the explicit association of STS roles to satellite AWS accounts.
///
/// See [CreateStsRoleRequest]
pub async fn create(
client: &impl Client,
mount: &str,
account_id: &str,
sts_role: &str,
) -> Result<(), ClientError> {
let endpoint = CreateStsRoleRequest::builder()
.mount(mount)
.account_id(account_id)
.sts_role(sts_role)
.build()
.unwrap();
api::exec_with_empty(client, endpoint).await
}
/// Returns the previously configured STS role.
///
/// See [ReadStsRoleResponse]
pub async fn read(
client: &impl Client,
mount: &str,
account_id: &str,
) -> Result<ReadStsRoleResponse, ClientError> {
let endpoint = ReadStsRoleRequest::builder()
.mount(mount)
.account_id(account_id)
.build()
.unwrap();
api::exec_with_result(client, endpoint).await
}
/// Lists all the AWS Account IDs for which an STS role is registered.
///
/// See [ListStsRolesResponse]
pub async fn list(
client: &impl Client,
mount: &str,
) -> Result<ListStsRolesResponse, ClientError> {
let endpoint = ListStsRolesRequest::builder().mount(mount).build().unwrap();
api::exec_with_result(client, endpoint).await
}
/// Deletes a previously configured AWS account/STS role association.
///
/// See [DeleteStsRoleRequest]
pub async fn delete(
client: &impl Client,
mount: &str,
account_id: &str,
) -> Result<(), ClientError> {
let endpoint = DeleteStsRoleRequest::builder()
.mount(mount)
.account_id(account_id)
.build()
.unwrap();
api::exec_with_empty(client, endpoint).await
}
}
pub mod tidy {
pub mod identity_access_list {
use crate::{
api::{
self,
auth::aws::{
requests::{
ConfigureIdentityAccessListTidyOperationRequest,
ConfigureIdentityAccessListTidyOperationRequestBuilder,
DeleteIdentityAccessListTidySettingsRequest,
ReadIdentityAccessListTidySettingsRequest,
},
responses::ReadIdentityAccessListTidySettingsResponse,
},
},
client::Client,
error::ClientError,
};
/// Configures the periodic tidying operation of the access listed identity entries.
///
/// See [ConfigureIdentityAccessListTidyOperationRequest]
pub async fn set(
client: &impl Client,
mount: &str,
opts: Option<&mut ConfigureIdentityAccessListTidyOperationRequestBuilder>,
) -> Result<(), ClientError> {
let mut t = ConfigureIdentityAccessListTidyOperationRequest::builder();
let endpoint = opts.unwrap_or(&mut t).mount(mount).build().unwrap();
api::exec_with_empty(client, endpoint).await
}
/// Returns the previously configured periodic access list tidying settings.
///
/// See [ReadIdentityAccessListTidySettingsResponse]
pub async fn read(
client: &impl Client,
mount: &str,
) -> Result<ReadIdentityAccessListTidySettingsResponse, ClientError> {
let endpoint = ReadIdentityAccessListTidySettingsRequest::builder()
.mount(mount)
.build()
.unwrap();
api::exec_with_result(client, endpoint).await
}
/// Deletes the previously configured periodic access list tidying settings.
///
/// See [DeleteIdentityAccessListTidySettingsRequest]
pub async fn delete(client: &impl Client, mount: &str) -> Result<(), ClientError> {
let endpoint = DeleteIdentityAccessListTidySettingsRequest::builder()
.mount(mount)
.build()
.unwrap();
api::exec_with_empty(client, endpoint).await
}
}
pub mod role_tag_deny_list {
use crate::{
api::{
self,
auth::aws::{
requests::{
ConfigureRoleTagDenyListTidyOperationRequest,
ConfigureRoleTagDenyListTidyOperationRequestBuilder,
DeleteRoleTagDenyListTidySettingsRequest,
ReadRoleTagDenyListTidySettingsRequest,
},
responses::ReadRoleTagDenyListTidySettingsResponse,
},
},
client::Client,
error::ClientError,
};
/// Configures the periodic tidying operation of the deny listed role tag entries.
///
/// See [ConfigureRoleTagDenyListTidyOperationRequest]
pub async fn set(
client: &impl Client,
mount: &str,
opts: Option<&mut ConfigureRoleTagDenyListTidyOperationRequestBuilder>,
) -> Result<(), ClientError> {
let mut t = ConfigureRoleTagDenyListTidyOperationRequest::builder();
let endpoint = opts.unwrap_or(&mut t).mount(mount).build().unwrap();
api::exec_with_empty(client, endpoint).await
}
/// Returns the previously configured periodic deny list tidying settings.
///
/// See [ReadRoleTagDenyListTidySettingsResponse]
pub async fn read(
client: &impl Client,
mount: &str,
) -> Result<ReadRoleTagDenyListTidySettingsResponse, ClientError> {
let endpoint = ReadRoleTagDenyListTidySettingsRequest::builder()
.mount(mount)
.build()
.unwrap();
api::exec_with_result(client, endpoint).await
}
/// Deletes the previously configured periodic access list tidying settings.
///
/// See [DeleteRoleTagDenyListTidySettingsRequest]
pub async fn delete(client: &impl Client, mount: &str) -> Result<(), ClientError> {
let endpoint = DeleteRoleTagDenyListTidySettingsRequest::builder()
.mount(mount)
.build()
.unwrap();
api::exec_with_empty(client, endpoint).await
}
}
}
}
pub mod role {
use crate::{
api::{
self,
auth::aws::{
requests::{
CreateRoleRequest, CreateRoleRequestBuilder, CreateRoleTagRequest,
CreateRoleTagRequestBuilder, DeleteRoleRequest, ListRolesRequest,
ReadRoleRequest,
},
responses::{CreateRoleTagResponse, ListRolesResponse, ReadRoleResponse},
},
},
client::Client,
error::ClientError,
};
/// Registers a role in the method
///
/// See [CreateRoleRequest]
pub async fn create(
client: &impl Client,
mount: &str,
role: &str,
opts: Option<&mut CreateRoleRequestBuilder>,
) -> Result<(), ClientError> {
let mut t = CreateRoleRequest::builder();
let endpoint = opts
.unwrap_or(&mut t)
.mount(mount)
.role(role)
.build()
.unwrap();
api::exec_with_empty(client, endpoint).await
}
/// Returns the previously registered role configuration
///
/// See [ReadRoleResponse]
pub async fn read(
client: &impl Client,
mount: &str,
role: &str,
) -> Result<ReadRoleResponse, ClientError> {
let endpoint = ReadRoleRequest::builder()
.mount(mount)
.role(role)
.build()
.unwrap();
api::exec_with_result(client, endpoint).await
}
/// Lists all the roles that are registered with the method
///
/// See [ListRolesResponse]
pub async fn list(client: &impl Client, mount: &str) -> Result<ListRolesResponse, ClientError> {
let endpoint = ListRolesRequest::builder().mount(mount).build().unwrap();
api::exec_with_result(client, endpoint).await
}
/// Deletes the previously registered role
///
/// See [DeleteRoleRequest]
pub async fn delete(client: &impl Client, mount: &str, role: &str) -> Result<(), ClientError> {
let endpoint = DeleteRoleRequest::builder()
.mount(mount)
.role(role)
.build()
.unwrap();
api::exec_with_empty(client, endpoint).await
}
/// Creates a role tag on the role
///
/// See [CreateRoleTagRequest]
pub async fn create_tag(
client: &impl Client,
mount: &str,
role: &str,
opts: Option<&mut CreateRoleTagRequestBuilder>,
) -> Result<CreateRoleTagResponse, ClientError> {
let mut t = CreateRoleTagRequest::builder();
let endpoint = opts
.unwrap_or(&mut t)
.mount(mount)
.role(role)
.build()
.unwrap();
api::exec_with_result(client, endpoint).await
}
}
pub mod role_tag_deny_list {
use crate::{
api::{
self,
auth::aws::{
requests::{
DeleteDenyListTagsRequest, ListDenyListTagsRequest,
PlaceRoleTagsInDenyListRequest, ReadRoleTagDenyListRequest,
TidyDenyListTagsRequest, TidyDenyListTagsRequestBuilder,
},
responses::{ListDenyListTagsResponse, ReadRoleTagDenyListResponse},
},
},
client::Client,
error::ClientError,
};
/// Places a valid role tag in a deny list
///
/// See [PlaceRoleTagsInDenyListRequest]
pub async fn create(
client: &impl Client,
mount: &str,
tag_value: &str,
) -> Result<(), ClientError> {
let endpoint = PlaceRoleTagsInDenyListRequest::builder()
.mount(mount)
.tag_value(tag_value)
.build()
.unwrap();
api::exec_with_empty(client, endpoint).await
}
/// Returns the deny list entry of a previously deny listed role tag.
///
/// See [ReadRoleTagDenyListResponse]
pub async fn read(
client: &impl Client,
mount: &str,
tag_value: &str,
) -> Result<ReadRoleTagDenyListResponse, ClientError> {
let endpoint = ReadRoleTagDenyListRequest::builder()
.mount(mount)
.tag_value(tag_value)
.build()
.unwrap();
api::exec_with_result(client, endpoint).await
}
/// Lists all the role tags that are deny listed
///
/// See [ListDenyListTagsResponse]
pub async fn list(
client: &impl Client,
mount: &str,
) -> Result<ListDenyListTagsResponse, ClientError> {
let endpoint = ListDenyListTagsRequest::builder()
.mount(mount)
.build()
.unwrap();
api::exec_with_result(client, endpoint).await
}
/// Deletes a deny listed role tag
///
/// See [DeleteDenyListTagsRequest]
pub async fn delete(
client: &impl Client,
mount: &str,
tag_value: &str,
) -> Result<(), ClientError> {
let endpoint = DeleteDenyListTagsRequest::builder()
.mount(mount)
.tag_value(tag_value)
.build()
.unwrap();
api::exec_with_empty(client, endpoint).await
}
/// Cleans up the entries in the deny listed based on expiration time on the entry and safety_buffer.
///
/// See [TidyDenyListTagsRequest]
pub async fn tidy(
client: &impl Client,
mount: &str,
opts: Option<&mut TidyDenyListTagsRequestBuilder>,
) -> Result<(), ClientError> {
let mut t = TidyDenyListTagsRequest::builder();
let endpoint = opts.unwrap_or(&mut t).mount(mount).build().unwrap();
api::exec_with_empty(client, endpoint).await
}
}
pub mod identity_access_list {
use crate::{
api::{
self,
auth::aws::{
requests::{
DeleteIdentityAccessListEntriesRequest, ListIdentityAccessListEntriesRequest,
ReadIdentityAccessListInformationRequest, TidyIdentityAccessListEntriesRequest,
TidyIdentityAccessListEntriesRequestBuilder,
},
responses::{
ListIdentityAccessListEntriesResponse,
ReadIdentityAccessListInformationResponse,
},
},
},
client::Client,
error::ClientError,
};
/// Returns an entry in the identity access list.
///
/// See [ReadIdentityAccessListInformationResponse]
pub async fn read(
client: &impl Client,
mount: &str,
instance_id: &str,
) -> Result<ReadIdentityAccessListInformationResponse, ClientError> {
let endpoint = ReadIdentityAccessListInformationRequest::builder()
.mount(mount)
.instance_id(instance_id)
.build()
.unwrap();
api::exec_with_result(client, endpoint).await
}
/// Deletes a cache of the successful login from an instance
///
/// See [DeleteIdentityAccessListEntriesRequest]
pub async fn delete(
client: &impl Client,
mount: &str,
instance_id: &str,
) -> Result<(), ClientError> {
let endpoint = DeleteIdentityAccessListEntriesRequest::builder()
.mount(mount)
.instance_id(instance_id)
.build()
.unwrap();
api::exec_with_empty(client, endpoint).await
}
/// Lists all the instance IDs that are in the access list of successful logins
///
/// See [ListIdentityAccessListEntriesResponse]
pub async fn list(
client: &impl Client,
mount: &str,
) -> Result<ListIdentityAccessListEntriesResponse, ClientError> {
let endpoint = ListIdentityAccessListEntriesRequest::builder()
.mount(mount)
.build()
.unwrap();
api::exec_with_result(client, endpoint).await
}
/// Cleans up the entries in the access list based on expiration time andsafety_buffer
///
/// See [TidyIdentityAccessListEntriesRequest]
pub async fn tidy(
client: &impl Client,
mount: &str,
opts: Option<&mut TidyIdentityAccessListEntriesRequestBuilder>,
) -> Result<(), ClientError> {
let mut t = TidyIdentityAccessListEntriesRequest::builder();
let endpoint = opts.unwrap_or(&mut t).mount(mount).build().unwrap();
api::exec_with_empty(client, endpoint).await
}
}