fixes to able defn

This commit is contained in:
pokeeffe-molecula 2022-02-10 13:56:59 -06:00
parent 3a0777c063
commit bb1f403974
3 changed files with 11 additions and 10 deletions

View file

@ -13,7 +13,7 @@ data "aws_ami" "amazon_linux_2" {
filter {
name = "architecture"
values = ["arm64"]
values = ["arm64", "x86_64"]
}
}

View file

@ -1,14 +1,15 @@
module "samsung-cluster" {
module "able-cluster" {
source = "../../.modules/featurebase-cluster"
cluster_prefix = var.cluster_prefix
region = var.region
profile = var.profile
fb_data_node_type = "m6g.xlarge"
fb_data_node_type = "m6i.12xlarge"
fb_data_disk_iops = 10000
fb_data_node_count = 5
fb_ingest_type = "m6g.large"
fb_data_node_count = 3
fb_ingest_type = "m6i.2xlarge"
fb_ingest_disk_iops = 10000
fb_ingest_node_count = 5
fb_ingest_disk_size_gb = 500
fb_ingest_node_count = 1
vpc_id = "vpc-05a26a122f961dc2b"
vpc_cidr_block = "10.0.0.0/16"
vpc_public_subnets = ["subnet-066b4b922b54e51a2","subnet-037b8884269a69025","subnet-08482631514426210",]

View file

@ -1,19 +1,19 @@
output "ingest_ips" {
description = "List of ingest IPs"
value = module.samsung-cluster.ingest_ips
value = module.able-cluster.ingest_ips
}
output "data_node_ips" {
description = "List of data node IPs"
value = module.samsung-cluster.data_node_ips
value = module.able-cluster.data_node_ips
}
output "cluster_prefix" {
description = "The cluster prefix used"
value = module.samsung-cluster.cluster_prefix
value = module.able-cluster.cluster_prefix
}
output "fb_cluster_replica_count" {
description = "The cluster replica count used"
value = module.samsung-cluster.fb_cluster_replica_count
value = module.able-cluster.fb_cluster_replica_count
}