Skip to content

f5devcentral/terraform-xc-aws-cloud-credentials

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AWS Cloud Credentials for F5 Distributed Cloud (XC) Terraform module

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.

Requirements

Name Version
terraform >= 1.0
aws >= 5.0
volterra >= 0.11.26

Usage

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"
}

Contributing

Contributions to this module are welcome! Please see the contribution guidelines for more information.

License

This module is licensed under the Apache 2.0 License.