community.aws.rds_instance_info (1.1.0) — module

obtain information about one or more RDS instances

| "added in version" 1.0.0 of community.aws"

Authors: Will Thames (@willthames), Michael De La Rue (@mikedlr)

Install collection

Install with ansible-galaxy collection install community.aws:==1.1.0


Add to requirements.yml

  collections:
    - name: community.aws
      version: 1.1.0

Description

Obtain information about one or more RDS instances.

This module was called C(rds_instance_facts) before Ansible 2.9. The usage did not change.


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Get information about an instance
  community.aws.rds_instance_info:
    db_instance_identifier: new-database
  register: new_database_info
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Get all RDS instances
  community.aws.rds_instance_info:

Inputs

    
region:
    aliases:
    - aws_region
    - ec2_region
    description:
    - The AWS region to use.
    - For global services such as IAM, Route53 and CloudFront, I(region) is ignored.
    - The C(AWS_REGION) or C(EC2_REGION) environment variables may also be used.
    - See the Amazon AWS documentation for more information U(http://docs.aws.amazon.com/general/latest/gr/rande.html#ec2_region).
    - The C(ec2_region) alias has been deprecated and will be removed in a release after
      2024-12-01
    - Support for the C(EC2_REGION) environment variable has been deprecated and will
      be removed in a release after 2024-12-01.
    type: str

filters:
    description:
    - A filter that specifies one or more DB instances to describe. See U(https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DescribeDBInstances.html)
    type: dict

profile:
    aliases:
    - aws_profile
    description:
    - A named AWS profile to use for authentication.
    - See the AWS documentation for more information about named profiles U(https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-profiles.html).
    - The C(AWS_PROFILE) environment variable may also be used.
    - The I(profile) option is mutually exclusive with the I(aws_access_key), I(aws_secret_key)
      and I(security_token) options.
    type: str

access_key:
    aliases:
    - aws_access_key_id
    - aws_access_key
    - ec2_access_key
    description:
    - AWS access key ID.
    - See the AWS documentation for more information about access tokens U(https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys).
    - The C(AWS_ACCESS_KEY_ID), C(AWS_ACCESS_KEY) or C(EC2_ACCESS_KEY) environment variables
      may also be used in decreasing order of preference.
    - The I(aws_access_key) and I(profile) options are mutually exclusive.
    - The I(aws_access_key_id) alias was added in release 5.1.0 for consistency with the
      AWS botocore SDK.
    - The I(ec2_access_key) alias has been deprecated and will be removed in a release
      after 2024-12-01.
    - Support for the C(EC2_ACCESS_KEY) environment variable has been deprecated and will
      be removed in a release after 2024-12-01.
    type: str

aws_config:
    description:
    - A dictionary to modify the botocore configuration.
    - Parameters can be found in the AWS documentation U(https://botocore.amazonaws.com/v1/documentation/api/latest/reference/config.html#botocore.config.Config).
    type: dict

secret_key:
    aliases:
    - aws_secret_access_key
    - aws_secret_key
    - ec2_secret_key
    description:
    - AWS secret access key.
    - See the AWS documentation for more information about access tokens U(https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys).
    - The C(AWS_SECRET_ACCESS_KEY), C(AWS_SECRET_KEY), or C(EC2_SECRET_KEY) environment
      variables may also be used in decreasing order of preference.
    - The I(secret_key) and I(profile) options are mutually exclusive.
    - The I(aws_secret_access_key) alias was added in release 5.1.0 for consistency with
      the AWS botocore SDK.
    - The I(ec2_secret_key) alias has been deprecated and will be removed in a release
      after 2024-12-01.
    - Support for the C(EC2_SECRET_KEY) environment variable has been deprecated and will
      be removed in a release after 2024-12-01.
    type: str

endpoint_url:
    aliases:
    - ec2_url
    - aws_endpoint_url
    - s3_url
    description:
    - URL to connect to instead of the default AWS endpoints.  While this can be used
      to connection to other AWS-compatible services the amazon.aws and community.aws
      collections are only tested against AWS.
    - The  C(AWS_URL) or C(EC2_URL) environment variables may also be used, in decreasing
      order of preference.
    - The I(ec2_url) and I(s3_url) aliases have been deprecated and will be removed in
      a release after 2024-12-01.
    - Support for the C(EC2_URL) environment variable has been deprecated and will be
      removed in a release after 2024-12-01.
    type: str

aws_ca_bundle:
    description:
    - The location of a CA Bundle to use when validating SSL certificates.
    - The C(AWS_CA_BUNDLE) environment variable may also be used.
    type: path

session_token:
    aliases:
    - aws_session_token
    - security_token
    - aws_security_token
    - access_token
    description:
    - AWS STS session token for use with temporary credentials.
    - See the AWS documentation for more information about access tokens U(https://docs.aws.amazon.com/general/latest/gr/aws-sec-cred-types.html#access-keys-and-secret-access-keys).
    - The C(AWS_SESSION_TOKEN), C(AWS_SECURITY_TOKEN) or C(EC2_SECURITY_TOKEN) environment
      variables may also be used in decreasing order of preference.
    - The I(security_token) and I(profile) options are mutually exclusive.
    - Aliases I(aws_session_token) and I(session_token) were added in release 3.2.0, with
      the parameter being renamed from I(security_token) to I(session_token) in release
      6.0.0.
    - The I(security_token), I(aws_security_token), and I(access_token) aliases have been
      deprecated and will be removed in a release after 2024-12-01.
    - Support for the C(EC2_SECRET_KEY) and C(AWS_SECURITY_TOKEN) environment variables
      has been deprecated and will be removed in a release after 2024-12-01.
    type: str

validate_certs:
    default: true
    description:
    - When set to C(false), SSL certificates will not be validated for communication with
      the AWS APIs.
    - Setting I(validate_certs=false) is strongly discouraged, as an alternative, consider
      setting I(aws_ca_bundle) instead.
    type: bool

db_instance_identifier:
    aliases:
    - id
    description:
    - The RDS instance's unique identifier.
    required: false
    type: str

debug_botocore_endpoint_logs:
    default: false
    description:
    - Use a C(botocore.endpoint) logger to parse the unique (rather than total) C("resource:action")
      API calls made during a task, outputing the set to the resource_actions key in the
      task results. Use the C(aws_resource_action) callback to output to total list made
      during a playbook.
    - The C(ANSIBLE_DEBUG_BOTOCORE_LOGS) environment variable may also be used.
    type: bool

Outputs

instances:
  contains:
    allocated_storage:
      description: Gigabytes of storage allocated to the database
      returned: always
      sample: 10
      type: int
    auto_minor_version_upgrade:
      description: Whether minor version upgrades happen automatically
      returned: always
      sample: true
      type: bool
    availability_zone:
      description: Availability Zone in which the database resides
      returned: always
      sample: us-west-2b
      type: str
    backup_retention_period:
      description: Days for which backups are retained
      returned: always
      sample: 7
      type: int
    ca_certificate_identifier:
      description: ID for the CA certificate
      returned: always
      sample: rds-ca-2015
      type: str
    copy_tags_to_snapshot:
      description: Whether DB tags should be copied to the snapshot
      returned: always
      sample: false
      type: bool
    db_instance_arn:
      description: ARN of the database instance
      returned: always
      sample: arn:aws:rds:us-west-2:111111111111:db:helloworld-rds
      type: str
    db_instance_class:
      description: Instance class of the database instance
      returned: always
      sample: db.t2.small
      type: str
    db_instance_identifier:
      description: Database instance identifier
      returned: always
      sample: helloworld-rds
      type: str
    db_instance_port:
      description: Port used by the database instance
      returned: always
      sample: 0
      type: int
    db_instance_status:
      description: Status of the database instance
      returned: always
      sample: available
      type: str
    db_name:
      description: Name of the database
      returned: always
      sample: management
      type: str
    db_parameter_groups:
      contains:
        db_parameter_group_name:
          description: Name of the database parameter group
          returned: always
          sample: psql-pg-helloworld
          type: str
        parameter_apply_status:
          description: Whether the parameter group has been applied
          returned: always
          sample: in-sync
          type: str
      description: List of database parameter groups
      returned: always
      type: complex
    db_security_groups:
      description: List of security groups used by the database instance
      returned: always
      sample: []
      type: list
    db_subnet_group:
      contains:
        db_subnet_group_description:
          description: Description of the DB subnet group
          returned: always
          sample: My database subnet group
          type: str
        db_subnet_group_name:
          description: Name of the database subnet group
          returned: always
          sample: my-subnet-group
          type: str
        subnet_group_status:
          description: Subnet group status
          returned: always
          sample: Complete
          type: str
        subnets:
          contains:
            subnet_availability_zone:
              contains:
                name:
                  description: Name of the availability zone
                  returned: always
                  sample: us-west-2c
                  type: str
              description: Availability zone of the subnet
              returned: always
              type: complex
            subnet_identifier:
              description: Subnet ID
              returned: always
              sample: subnet-abcd1234
              type: str
            subnet_status:
              description: Subnet status
              returned: always
              sample: Active
              type: str
          description: List of subnets in the subnet group
          returned: always
          type: complex
        vpc_id:
          description: VPC id of the subnet group
          returned: always
          sample: vpc-abcd1234
          type: str
      description: list of subnet groups
      returned: always
      type: complex
    dbi_resource_id:
      description: AWS Region-unique, immutable identifier for the DB instance
      returned: always
      sample: db-AAAAAAAAAAAAAAAAAAAAAAAAAA
      type: str
    domain_memberships:
      description: List of domain memberships
      returned: always
      sample: []
      type: list
    endpoint:
      contains:
        address:
          description: Database endpoint address
          returned: always
          sample: helloworld-rds.ctrqpe3so1sf.us-west-2.rds.amazonaws.com
          type: str
        hosted_zone_id:
          description: Route53 hosted zone ID
          returned: always
          sample: Z1PABCD0000000
          type: str
        port:
          description: Database endpoint port
          returned: always
          sample: 5432
          type: int
      description: Database endpoint
      returned: always
      type: complex
    engine:
      description: Database engine
      returned: always
      sample: postgres
      type: str
    engine_version:
      description: Database engine version
      returned: always
      sample: 9.5.10
      type: str
    iam_database_authentication_enabled:
      description: Whether database authentication through IAM is enabled
      returned: always
      sample: false
      type: bool
    instance_create_time:
      description: Date and time the instance was created
      returned: always
      sample: '2017-10-10T04:00:07.434000+00:00'
      type: str
    kms_key_id:
      description: KMS Key ID
      returned: always
      sample: arn:aws:kms:us-west-2:111111111111:key/abcd1234-0000-abcd-1111-0123456789ab
      type: str
    latest_restorable_time:
      description: Latest time to which a database can be restored with point-in-time
        restore
      returned: always
      sample: '2018-05-17T00:03:56+00:00'
      type: str
    license_model:
      description: License model
      returned: always
      sample: postgresql-license
      type: str
    master_username:
      description: Database master username
      returned: always
      sample: dbadmin
      type: str
    monitoring_interval:
      description: Interval, in seconds, between points when Enhanced Monitoring metrics
        are collected for the DB instance
      returned: always
      sample: 0
      type: int
    multi_az:
      description: Whether Multi-AZ is on
      returned: always
      sample: false
      type: bool
    option_group_memberships:
      contains:
        option_group_name:
          description: Option group name
          returned: always
          sample: default:postgres-9-5
          type: str
        status:
          description: Status of option group
          returned: always
          sample: in-sync
          type: str
      description: List of option groups
      returned: always
      type: complex
    pending_modified_values:
      contains: {}
      description: Modified values pending application
      returned: always
      type: complex
    performance_insights_enabled:
      description: Whether performance insights are enabled
      returned: always
      sample: false
      type: bool
    preferred_backup_window:
      description: Preferred backup window
      returned: always
      sample: 04:00-05:00
      type: str
    preferred_maintenance_window:
      description: Preferred maintenance window
      returned: always
      sample: mon:05:00-mon:05:30
      type: str
    publicly_accessible:
      description: Whether the DB is publicly accessible
      returned: always
      sample: false
      type: bool
    read_replica_db_instance_identifiers:
      description: List of database instance read replicas
      returned: always
      sample: []
      type: list
    storage_encrypted:
      description: Whether the storage is encrypted
      returned: always
      sample: true
      type: bool
    storage_type:
      description: Storage type of the Database instance
      returned: always
      sample: gp2
      type: str
    tags:
      contains: {}
      description: Tags used by the database instance
      returned: always
      type: complex
    vpc_security_groups:
      contains:
        status:
          description: Status of the VPC security group
          returned: always
          sample: active
          type: str
        vpc_security_group_id:
          description: VPC Security Group ID
          returned: always
          sample: sg-abcd1234
          type: str
      description: List of VPC security groups
      returned: always
      type: complex
  description: List of RDS instances
  returned: always
  type: complex