aws-config 0.50.0

AWS SDK config and credential provider implementations.
Documentation
/*
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0
 */

//! Config structs to programmatically customize the profile files that get loaded

use std::fmt;
use std::path::PathBuf;

/// Provides the ability to programmatically override the profile files that get loaded by the SDK.
///
/// The [`Default`] for `ProfileFiles` includes the default SDK config and credential files located in
/// `~/.aws/config` and `~/.aws/credentials` respectively.
///
/// Any number of config and credential files may be added to the `ProfileFiles` file set, with the
/// only requirement being that there is at least one of them. Custom file locations that are added
/// will produce errors if they don't exist, while the default config/credentials files paths are
/// allowed to not exist even if they're included.
///
/// # Example: Using a custom profile file path for credentials and region
///
/// ```
/// use aws_config::profile::{ProfileFileCredentialsProvider, ProfileFileRegionProvider};
/// use aws_config::profile::profile_file::{ProfileFiles, ProfileFileKind};
///
/// # async fn example() {
/// let profile_files = ProfileFiles::builder()
///     .with_file(ProfileFileKind::Credentials, "some/path/to/credentials-file")
///     .build();
/// let credentials_provider = ProfileFileCredentialsProvider::builder()
///     .profile_files(profile_files.clone())
///     .build();
/// let region_provider = ProfileFileRegionProvider::builder()
///     .profile_files(profile_files)
///     .build();
///
/// let sdk_config = aws_config::from_env()
///     .credentials_provider(credentials_provider)
///     .region(region_provider)
///     .load()
///     .await;
/// # }
/// ```
#[derive(Clone, Debug)]
pub struct ProfileFiles {
    pub(crate) files: Vec<ProfileFile>,
}

impl ProfileFiles {
    /// Returns a builder to create `ProfileFiles`
    pub fn builder() -> Builder {
        Builder::new()
    }
}

impl Default for ProfileFiles {
    fn default() -> Self {
        Self {
            files: vec![
                ProfileFile::Default(ProfileFileKind::Config),
                ProfileFile::Default(ProfileFileKind::Credentials),
            ],
        }
    }
}

/// Profile file type (config or credentials)
#[derive(Copy, Clone, Debug)]
pub enum ProfileFileKind {
    /// The SDK config file that typically resides in `~/.aws/config`
    Config,
    /// The SDK credentials file that typically resides in `~/.aws/credentials`
    Credentials,
}

impl ProfileFileKind {
    pub(crate) fn default_path(&self) -> &'static str {
        match &self {
            ProfileFileKind::Credentials => "~/.aws/credentials",
            ProfileFileKind::Config => "~/.aws/config",
        }
    }

    pub(crate) fn override_environment_variable(&self) -> &'static str {
        match &self {
            ProfileFileKind::Config => "AWS_CONFIG_FILE",
            ProfileFileKind::Credentials => "AWS_SHARED_CREDENTIALS_FILE",
        }
    }
}

/// A single profile file within a [`ProfileFiles`] file set.
#[derive(Clone)]
pub(crate) enum ProfileFile {
    /// One of the default profile files (config or credentials in their default locations)
    Default(ProfileFileKind),
    /// A profile file at a custom location
    FilePath {
        kind: ProfileFileKind,
        path: PathBuf,
    },
    /// The direct contents of a profile file
    FileContents {
        kind: ProfileFileKind,
        contents: String,
    },
}

impl fmt::Debug for ProfileFile {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::Default(kind) => f.debug_tuple("Default").field(kind).finish(),
            Self::FilePath { kind, path } => f
                .debug_struct("FilePath")
                .field("kind", kind)
                .field("path", path)
                .finish(),
            // Security: Redact the file contents since they may have credentials in them
            Self::FileContents { kind, contents: _ } => f
                .debug_struct("FileContents")
                .field("kind", kind)
                .field("contents", &"** redacted **")
                .finish(),
        }
    }
}

/// Builder for [`ProfileFiles`].
#[derive(Clone, Default, Debug)]
pub struct Builder {
    with_config: bool,
    with_credentials: bool,
    custom_sources: Vec<ProfileFile>,
}

impl Builder {
    /// Creates a new builder instance.
    pub fn new() -> Self {
        Default::default()
    }

    /// Include the default SDK config file in the list of profile files to be loaded.
    ///
    /// The default SDK config typically resides in `~/.aws/config`. When this flag is enabled,
    /// this config file will be included in the profile files that get loaded in the built
    /// [`ProfileFiles`] file set.
    ///
    /// This flag defaults to `false` when using the builder to construct [`ProfileFiles`].
    pub fn include_default_config_file(mut self, include_default_config_file: bool) -> Self {
        self.with_config = include_default_config_file;
        self
    }

    /// Include the default SDK credentials file in the list of profile files to be loaded.
    ///
    /// The default SDK config typically resides in `~/.aws/credentials`. When this flag is enabled,
    /// this credentials file will be included in the profile files that get loaded in the built
    /// [`ProfileFiles`] file set.
    ///
    /// This flag defaults to `false` when using the builder to construct [`ProfileFiles`].
    pub fn include_default_credentials_file(
        mut self,
        include_default_credentials_file: bool,
    ) -> Self {
        self.with_credentials = include_default_credentials_file;
        self
    }

    /// Include a custom `file` in the list of profile files to be loaded.
    ///
    /// The `kind` informs the parser how to treat the file. If it's intended to be like
    /// the SDK credentials file typically in `~/.aws/config`, then use [`ProfileFileKind::Config`].
    /// Otherwise, use [`ProfileFileKind::Credentials`].
    pub fn with_file(mut self, kind: ProfileFileKind, file: impl Into<PathBuf>) -> Self {
        self.custom_sources.push(ProfileFile::FilePath {
            kind,
            path: file.into(),
        });
        self
    }

    /// Include custom file `contents` in the list of profile files to be loaded.
    ///
    /// The `kind` informs the parser how to treat the file. If it's intended to be like
    /// the SDK credentials file typically in `~/.aws/config`, then use [`ProfileFileKind::Config`].
    /// Otherwise, use [`ProfileFileKind::Credentials`].
    pub fn with_contents(mut self, kind: ProfileFileKind, contents: impl Into<String>) -> Self {
        self.custom_sources.push(ProfileFile::FileContents {
            kind,
            contents: contents.into(),
        });
        self
    }

    /// Build the [`ProfileFiles`] file set.
    pub fn build(self) -> ProfileFiles {
        let mut files = self.custom_sources;
        if self.with_credentials {
            files.insert(0, ProfileFile::Default(ProfileFileKind::Credentials));
        }
        if self.with_config {
            files.insert(0, ProfileFile::Default(ProfileFileKind::Config));
        }
        if files.is_empty() {
            panic!("At least one profile file must be included in the `ProfileFiles` file set.");
        }
        ProfileFiles { files }
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn redact_file_contents_in_profile_file_debug() {
        let profile_file = ProfileFile::FileContents {
            kind: ProfileFileKind::Config,
            contents: "sensitive_contents".into(),
        };
        let debug = format!("{:?}", profile_file);
        assert!(!debug.contains("sensitive_contents"));
        assert!(debug.contains("** redacted **"));
    }

    #[test]
    fn build_correctly_orders_default_config_credentials() {
        let profile_files = ProfileFiles::builder()
            .with_file(ProfileFileKind::Config, "foo")
            .include_default_credentials_file(true)
            .include_default_config_file(true)
            .build();
        assert_eq!(3, profile_files.files.len());
        assert!(matches!(
            profile_files.files[0],
            ProfileFile::Default(ProfileFileKind::Config)
        ));
        assert!(matches!(
            profile_files.files[1],
            ProfileFile::Default(ProfileFileKind::Credentials)
        ));
        assert!(matches!(
            profile_files.files[2],
            ProfileFile::FilePath {
                kind: ProfileFileKind::Config,
                path: _
            }
        ));
    }

    #[test]
    #[should_panic]
    fn empty_builder_panics() {
        ProfileFiles::builder().build();
    }
}