-
Notifications
You must be signed in to change notification settings - Fork 28
Description
Hi
I'm trying to install into a single AZ - but I get this error
Error: Error applying plan:
4 error(s) occurred:
-
aws_efs_mount_target.icp-registry[0]: 1 error(s) occurred:
-
aws_efs_mount_target.icp-registry.0: MountTargetConflict: mount target already exists in this AZ
status code: 409, request id: 3afd04d5-b1b4-11e8-bc84-ad3cfcd0fd63 -
aws_efs_mount_target.icp-audit[1]: 1 error(s) occurred:
-
aws_efs_mount_target.icp-audit.1: MountTargetConflict: mount target already exists in this AZ
status code: 409, request id: 4fa60564-b1b4-11e8-982f-47849fbf15e4 -
aws_efs_mount_target.icp-registry[1]: 1 error(s) occurred:
-
aws_efs_mount_target.icp-registry.1: MountTargetConflict: mount target already exists in this AZ
status code: 409, request id: 3ad1126e-b1b4-11e8-ae1b-77ef2ec71548 -
aws_efs_mount_target.icp-audit[0]: 1 error(s) occurred:
-
aws_efs_mount_target.icp-audit.0: MountTargetConflict: mount target already exists in this AZ
status code: 409, request id: 4fd552c9-b1b4-11e8-982f-47849fbf15e4
Any ideas what I'm doing wrong ? Here's my terraform.tfvars....
aws_region = "eu-west-1"
key_name = "ICP-shared-ire"
image_location = "s3://icpmedia/ibm-cloud-private-x86_64-2.1.0.3.tar.gz"
icp_inception_image = "ibmcom/icp-inception:2.1.0.3-ee"
azs = ["c"]
also change the bastion node count as below in the variables.tf file as below
EC2 instances
no bastion host by default. set to 1 if you want to debug
variable "bastion" {
type = "map"
default = {
nodes = "1"
type = "t2.micro"
ami = "" // Leave blank to let terraform search for Ubuntu 16.04 ami. NOT RECOMMENDED FOR PRODUCTION
disk = "10" //GB
}
}
Any help much appreciated.
Thanks
Steve