This Terraform module provisions AWS Cloud Credentials in F5 Distributed Cloud (XC). It creates an IAM User, IAM Policy, Access Key, and Access Secret in AWS Cloud, along with a Cloud Credentials object in XC Cloud.
Name | Version |
---|---|
terraform | >= 1.0 |
aws | >= 5.0 |
volterra | >= 0.11.26 |
To use this module and leverage your existing credentials without provisioning any resources on AWS Cloud, include the following code in your Terraform configuration:
module "aws_cloud_credentials" {
source = "f5devcentral/aws-cloud-credentials/volterra"
name = "aws-tf-demo-creds"
aws_access_key = "your_aws_access_key"
aws_secret_key = "your_aws_secret_key"
}
If you want to create a new AWS IAM User
module "aws_cloud_credentials" {
source = "f5devcentral/aws-cloud-credentials/volterra"
name = "aws-tf-demo-creds"
}
Contributions to this module are welcome! Please see the contribution guidelines for more information.
This module is licensed under the Apache 2.0 License.