Specifying AWS parameters
If you are using AWS infrastructure, set the required parameters during IBM® Cloud Private Cloud Foundry installation.
Before you begin: Follow the initial steps in Amazon Web Services to set up your environment
before you start the installation.
You can find a template file for AWS in the following location: /<installation_configuration_directory>/extensions/embedded/cfp-bosh-templates/uiconfig_aws_template.yml. Copy this file to your installation directory and modify
it. Replace the default and sample values with the actual values for your particular environment.
The following example parameters apply only to AWS. You can also use common parameters. For more information, see Specifying common parameters.
uiconfig:
aws:
access_key_id: "ABCDE..." #Provided by your AWS account manager
secret_access_key: "12345..." #Provided by your AWS account manager
default_key_name: "BOSH" #User defined in AWS
default_security_groups: [bosh] #User defined in AWS
region: "us-east-2" #Chosen from AWS regions
availability_zone: "us-east-2a" #Chosen based on your AWS region
subnet_id: "subnet-01124214214..." #Defined in AWS for the availability_zone picked above
key_pair_private:
-----BEGIN RSA PRIVATE KEY-----
-----END RSA PRIVATE KEY-----
- access_key_id: Amazon account access key.
- secret_access_key: Secret key used for the AWS account.
- default_key_name: SSH key name created for use with IBM CF AMI's.
- default_security_groups: Security group used for each AMI to control network traffic.
- region: AWS Region that you want to use.
- availability_zone: Singleton availability zone.
- subnet_id: VDC Subnet ID that will be used for IBM CF AMI's to connect with
Resources. - key_pair_private: Private key that was created with the
default_key_nameabove. Allows SSH access to AMI's.