File tree Expand file tree Collapse file tree 1 file changed +0
-19
lines changed
content/blog/entries/crawling-500-million Expand file tree Collapse file tree 1 file changed +0
-19
lines changed Original file line number Diff line number Diff line change @@ -326,14 +326,6 @@ resource "aws_instance" "crawler-workers" {
326
326
"cc:purpose" = "Image crawler worker"
327
327
"cc:team" = "cc-search"
328
328
}
329
- volume_tags {
330
- Name = "image-crawler-worker-${var.environment}"
331
- environment = "${var.environment}"
332
- "cc:environment" = "${var.environment == "dev" ? "staging" : "production"}"
333
- "cc:product" = "cccatalog-api"
334
- "cc:purpose" = "Image crawler worker"
335
- "cc:team" = "cc-search"
336
- }
337
329
}
338
330
339
331
resource "aws_instance" "crawler-monitor" {
@@ -342,9 +334,6 @@ resource "aws_instance" "crawler-monitor" {
342
334
user_data = "${data.template_file.monitor_init.rendered}"
343
335
subnet_id = "${element(data.aws_subnet_ids.subnets.ids, 0)}"
344
336
vpc_security_group_ids = ["${aws_security_group.image-crawler-sg.id}"]
345
- root_block_device {
346
- volume_size = 150
347
- }
348
337
349
338
tags {
350
339
Name = "image-crawler-monitor-${var.environment}"
@@ -354,14 +343,6 @@ resource "aws_instance" "crawler-monitor" {
354
343
"cc:purpose" = "Image crawler monitor"
355
344
"cc:team" = "cc-search"
356
345
}
357
- volume_tags {
358
- Name = "image-crawler-monitor-${var.environment}"
359
- environment = "${var.environment}"
360
- "cc:environment" = "${var.environment == "dev" ? "staging" : "production"}"
361
- "cc:product" = "cccatalog-api"
362
- "cc:purpose" = "Image crawler monitor"
363
- "cc:team" = "cc-search"
364
- }
365
346
}
366
347
```
367
348
You can’t perform that action at this time.
0 commit comments