diff --git a/docs/architecture.md b/docs/architecture.md index daab966f46c..8d3d4877c9a 100644 --- a/docs/architecture.md +++ b/docs/architecture.md @@ -37,9 +37,13 @@ The sequence diagram below depicts interaction of the main KICS components: ## Concurrent Scans -KICS creates multiple services, each containing a unique parser. All the services will then concurrently generate a payload and run queries on it according to its containing parser. When a vulnerability is found, it is saved inside the Storage which is shared amongst all the services. +KICS creates multiple services, each containing a unique parser. All the services will then concurrently generate a payload and run queries on it according to its containing parser. -- Paths => create services based on types of IaC files. -- Service => contains a unique parser and shares other resources with other services -- Start Scan => Services will concurrently create payloads based on its parser, inspect for vulnerabilities and save them on the shared storage -- Results => when all services have finished their execution all the results will be gathered from the storage +Concurrency exists on both the services representing each platform as well as the queries of each service. Each platform detected will run their queries concurrently with one another and the queries of each platform will themselves run concurrently using the number of workers passed on th. + +When a vulnerability is found, it is saved inside the Storage which is shared amongst all the services. + +- Paths => create services based on types of IaC files; +- Service => contains a unique parser and shares other resources with other services; +- Start Scan => Services will concurrently create payloads based on its parser, inspect for vulnerabilities and save them on the shared storage; +- Results => when all services have finished their execution all the results will be gathered from the storage. \ No newline at end of file diff --git a/e2e/fixtures/E2E_CLI_086_RESULT.json b/e2e/fixtures/E2E_CLI_086_RESULT.json new file mode 100644 index 00000000000..42e8e42b67b --- /dev/null +++ b/e2e/fixtures/E2E_CLI_086_RESULT.json @@ -0,0 +1,370 @@ +{ + "kics_version": "development", + "files_scanned": 1, + "lines_scanned": 19, + "files_parsed": 1, + "lines_parsed": 19, + "lines_ignored": 0, + "files_failed_to_scan": 0, + "queries_total": 1045, + "queries_failed_to_execute": 0, + "queries_failed_to_compute_similarity_id": 0, + "scan_id": "console", + "severity_counters": { + "HIGH": 6, + "INFO": 2, + "LOW": 3, + "MEDIUM": 6, + "TRACE": 0 + }, + "total_counter": 17, + "total_bom_resources": 0, + "start": "2024-02-26T10:44:18.4750254Z", + "end": "2024-02-26T10:44:47.1874587Z", + "paths": [ + "/path/e2e/fixtures/samples/terraform.tf" + ], + "queries": [ + { + "query_name": "Passwords And Secrets - Generic Password", + "query_id": "487f4be7-3fd9-4506-a07a-eae252180c08", + "query_url": "https://docs.kics.io/latest/secrets/", + "severity": "HIGH", + "platform": "Common", + "cloud_provider": "COMMON", + "category": "Secret Management", + "experimental": false, + "description": "Query to find passwords and secrets in infrastructure code.", + "description_id": "d69d8a89", + "files": [ + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "9e26d1ce4d2e0f7fa9b77195bd329f18c135b946ba74a13bc05a289dfc3455f1", + "line": 5, + "issue_type": "RedundantAttribute", + "search_key": "", + "search_line": 0, + "search_value": "", + "expected_value": "Hardcoded secret key should not appear in source", + "actual_value": "Hardcoded secret key appears in source" + }, + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "d6a018d85a93d338ed89c82b791f30c1913eff5e743f67cfa52176f5135aea2b", + "line": 14, + "issue_type": "RedundantAttribute", + "search_key": "", + "search_line": 0, + "search_value": "", + "expected_value": "Hardcoded secret key should not appear in source", + "actual_value": "Hardcoded secret key appears in source" + } + ] + }, + { + "query_name": "Redshift Not Encrypted", + "query_id": "cfdcabb0-fc06-427c-865b-c59f13e898ce", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/redshift_cluster#encrypted", + "severity": "HIGH", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Encryption", + "experimental": false, + "description": "AWS Redshift Cluster should be encrypted. Check if 'encrypted' field is false or undefined (default is false)", + "description_id": "2bee4895", + "files": [ + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "bd00cd9cd4edd1015d1a1e89f98bdd8128cdaa51456e605ca2c29bd64888efcd", + "line": 1, + "resource_type": "aws_redshift_cluster", + "resource_name": "default", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default]", + "search_line": 1, + "search_value": "", + "expected_value": "aws_redshift_cluster.encrypted should be defined and not null", + "actual_value": "aws_redshift_cluster.encrypted is undefined or null", + "remediation": "encrypted = true", + "remediation_type": "addition" + }, + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "a5941ee6cc25be94d6a2dfc73fd602e587638d6ad6caf188c09c374b77283917", + "line": 10, + "resource_type": "aws_redshift_cluster", + "resource_name": "default1", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default1]", + "search_line": 10, + "search_value": "", + "expected_value": "aws_redshift_cluster.encrypted should be defined and not null", + "actual_value": "aws_redshift_cluster.encrypted is undefined or null", + "remediation": "encrypted = true", + "remediation_type": "addition" + } + ] + }, + { + "query_name": "Redshift Publicly Accessible", + "query_id": "af173fde-95ea-4584-b904-bb3923ac4bda", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/redshift_cluster", + "severity": "HIGH", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Insecure Configurations", + "experimental": false, + "description": "AWS Redshift Clusters must not be publicly accessible. Check if 'publicly_accessible' field is true or undefined (default is true)", + "description_id": "9a581503", + "files": [ + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "4234052fbe1fed19a465cec7fbed9eb156c22eeae7d97c3ac8096bcc7b39a2fe", + "line": 1, + "resource_type": "aws_redshift_cluster", + "resource_name": "default", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default]", + "search_line": -1, + "search_value": "", + "expected_value": "aws_redshift_cluster.publicly_accessible should be defined and not null", + "actual_value": "aws_redshift_cluster.publicly_accessible is undefined or null", + "remediation": "publicly_accessible = false", + "remediation_type": "addition" + }, + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "7ae2741fb3c480c38776368fbe21412672c6458d490e4648eb1ad1aadc24a741", + "line": 17, + "resource_type": "aws_redshift_cluster", + "resource_name": "default1", + "issue_type": "IncorrectValue", + "search_key": "aws_redshift_cluster[default1].publicly_accessible", + "search_line": -1, + "search_value": "", + "expected_value": "aws_redshift_cluster.publicly_accessible should be set to false", + "actual_value": "aws_redshift_cluster.publicly_accessible is true", + "remediation": "{\"after\":\"false\",\"before\":\"true\"}", + "remediation_type": "replacement" + } + ] + }, + { + "query_name": "Redshift Cluster Logging Disabled", + "query_id": "15ffbacc-fa42-4f6f-a57d-2feac7365caa", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/redshift_cluster#enable", + "severity": "MEDIUM", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Observability", + "experimental": false, + "description": "Make sure Logging is enabled for Redshift Cluster", + "description_id": "458fe7a3", + "files": [ + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "65c5c77aa946123a3434e2508fa5f8c6d37412fd55f4adc3d04b22d7b820822b", + "line": 10, + "resource_type": "aws_redshift_cluster", + "resource_name": "default1", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default1]", + "search_line": 10, + "search_value": "", + "expected_value": "'aws_redshift_cluster.logging' should be true", + "actual_value": "'aws_redshift_cluster.logging' is undefined", + "remediation": "logging {\n\t\tenable = true \n\t}", + "remediation_type": "addition" + }, + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "225c40e04fe9ac2285e2e47a448c8159cde8561762989f936c5cc6967977f664", + "line": 1, + "resource_type": "aws_redshift_cluster", + "resource_name": "default", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default]", + "search_line": 1, + "search_value": "", + "expected_value": "'aws_redshift_cluster.logging' should be true", + "actual_value": "'aws_redshift_cluster.logging' is undefined", + "remediation": "logging {\n\t\tenable = true \n\t}", + "remediation_type": "addition" + } + ] + }, + { + "query_name": "Redshift Cluster Without VPC", + "query_id": "0a494a6a-ebe2-48a0-9d77-cf9d5125e1b3", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/redshift_cluster#vpc_security_group_ids", + "severity": "MEDIUM", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Insecure Configurations", + "experimental": false, + "description": "Redshift Cluster should be configured in VPC (Virtual Private Cloud)", + "description_id": "6fd531fa", + "files": [ + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "83461a5eac8fed2264fac68a6d352d1ed752867a9b0a131afa9ba7e366159b59", + "line": 10, + "resource_type": "aws_redshift_cluster", + "resource_name": "default1", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default1]", + "search_line": -1, + "search_value": "vpc_security_group_ids", + "expected_value": "aws_redshift_cluster[default1].vpc_security_group_ids should be set", + "actual_value": "aws_redshift_cluster[default1].vpc_security_group_ids is undefined" + }, + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "c703e26654dc3e9da1ad3519663f38aed2a29e629b4342f9e75af464a07699e0", + "line": 1, + "resource_type": "aws_redshift_cluster", + "resource_name": "default", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default]", + "search_line": -1, + "search_value": "vpc_security_group_ids", + "expected_value": "aws_redshift_cluster[default].vpc_security_group_ids should be set", + "actual_value": "aws_redshift_cluster[default].vpc_security_group_ids is undefined" + }, + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "4aa3f159f39767de53b49ed871977b8b499bf19b3b0865b1631042aa830598aa", + "line": 10, + "resource_type": "aws_redshift_cluster", + "resource_name": "default1", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default1]", + "search_line": -1, + "search_value": "cluster_subnet_group_name", + "expected_value": "aws_redshift_cluster[default1].cluster_subnet_group_name should be set", + "actual_value": "aws_redshift_cluster[default1].cluster_subnet_group_name is undefined" + }, + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "709853fdb034e451c68825041190bbff098e2893528d91c39d84d31ea93ecae6", + "line": 1, + "resource_type": "aws_redshift_cluster", + "resource_name": "default", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default]", + "search_line": -1, + "search_value": "cluster_subnet_group_name", + "expected_value": "aws_redshift_cluster[default].cluster_subnet_group_name should be set", + "actual_value": "aws_redshift_cluster[default].cluster_subnet_group_name is undefined" + } + ] + }, + { + "query_name": "IAM Access Analyzer Not Enabled", + "query_id": "e592a0c5-5bdb-414c-9066-5dba7cdea370", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/accessanalyzer_analyzer", + "severity": "LOW", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Best Practices", + "experimental": false, + "description": "IAM Access Analyzer should be enabled and configured to continuously monitor resource permissions", + "description_id": "d03e85ae", + "files": [ + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "aa346cd1642a83b40e221f96a43d88dbfacecdf1f8e5314c24145f8d35530197", + "line": 1, + "resource_type": "n/a", + "resource_name": "n/a", + "issue_type": "MissingAttribute", + "search_key": "resource", + "search_line": -1, + "search_value": "", + "expected_value": "'aws_accessanalyzer_analyzer' should be set", + "actual_value": "'aws_accessanalyzer_analyzer' is undefined" + } + ] + }, + { + "query_name": "Redshift Using Default Port", + "query_id": "41abc6cc-dde1-4217-83d3-fb5f0cc09d8f", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/redshift_cluster#port", + "severity": "LOW", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Networking and Firewall", + "experimental": false, + "description": "Redshift should not use the default port (5439) because an attacker can easily guess the port", + "description_id": "e2e48d27", + "files": [ + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "8f5d57a5515ee4c9c5e6d26274b4e7ae5e408e39399caff57aebe5121dc11af6", + "line": 10, + "resource_type": "aws_redshift_cluster", + "resource_name": "default1", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default1]", + "search_line": 10, + "search_value": "", + "expected_value": "aws_redshift_cluster.port should be defined and not null", + "actual_value": "aws_redshift_cluster.port is undefined or null" + }, + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "34ae9f216456678405a82e7419b9b1614ee09a765529f717679e1fa4f4a1ae0a", + "line": 1, + "resource_type": "aws_redshift_cluster", + "resource_name": "default", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default]", + "search_line": 1, + "search_value": "", + "expected_value": "aws_redshift_cluster.port should be defined and not null", + "actual_value": "aws_redshift_cluster.port is undefined or null" + } + ] + }, + { + "query_name": "Resource Not Using Tags", + "query_id": "e38a8e0a-b88b-4902-b3fe-b0fcb17d5c10", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/guides/resource-tagging", + "severity": "INFO", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Best Practices", + "experimental": false, + "description": "AWS services resource tags are an essential part of managing components. As a best practice, the field 'tags' should have additional tags defined other than 'Name'", + "description_id": "09db2d52", + "files": [ + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "b44463ffd0f5c1eadc04ce6649982da68658349ad880daef470250661d3d1512", + "line": 1, + "resource_type": "aws_redshift_cluster", + "resource_name": "default", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[{{default}}]", + "search_line": -1, + "search_value": "", + "expected_value": "aws_redshift_cluster[{{default}}].tags should be defined and not null", + "actual_value": "aws_redshift_cluster[{{default}}].tags is undefined or null" + }, + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "406b71d9fd0edb656a4735df30dde77c5f8a6c4ec3caa3442f986a92832c653b", + "line": 10, + "resource_type": "aws_redshift_cluster", + "resource_name": "default1", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[{{default1}}]", + "search_line": -1, + "search_value": "", + "expected_value": "aws_redshift_cluster[{{default1}}].tags should be defined and not null", + "actual_value": "aws_redshift_cluster[{{default1}}].tags is undefined or null" + } + ] + } + ] +} diff --git a/e2e/fixtures/E2E_CLI_087_RESULT.json b/e2e/fixtures/E2E_CLI_087_RESULT.json new file mode 100644 index 00000000000..42e8e42b67b --- /dev/null +++ b/e2e/fixtures/E2E_CLI_087_RESULT.json @@ -0,0 +1,370 @@ +{ + "kics_version": "development", + "files_scanned": 1, + "lines_scanned": 19, + "files_parsed": 1, + "lines_parsed": 19, + "lines_ignored": 0, + "files_failed_to_scan": 0, + "queries_total": 1045, + "queries_failed_to_execute": 0, + "queries_failed_to_compute_similarity_id": 0, + "scan_id": "console", + "severity_counters": { + "HIGH": 6, + "INFO": 2, + "LOW": 3, + "MEDIUM": 6, + "TRACE": 0 + }, + "total_counter": 17, + "total_bom_resources": 0, + "start": "2024-02-26T10:44:18.4750254Z", + "end": "2024-02-26T10:44:47.1874587Z", + "paths": [ + "/path/e2e/fixtures/samples/terraform.tf" + ], + "queries": [ + { + "query_name": "Passwords And Secrets - Generic Password", + "query_id": "487f4be7-3fd9-4506-a07a-eae252180c08", + "query_url": "https://docs.kics.io/latest/secrets/", + "severity": "HIGH", + "platform": "Common", + "cloud_provider": "COMMON", + "category": "Secret Management", + "experimental": false, + "description": "Query to find passwords and secrets in infrastructure code.", + "description_id": "d69d8a89", + "files": [ + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "9e26d1ce4d2e0f7fa9b77195bd329f18c135b946ba74a13bc05a289dfc3455f1", + "line": 5, + "issue_type": "RedundantAttribute", + "search_key": "", + "search_line": 0, + "search_value": "", + "expected_value": "Hardcoded secret key should not appear in source", + "actual_value": "Hardcoded secret key appears in source" + }, + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "d6a018d85a93d338ed89c82b791f30c1913eff5e743f67cfa52176f5135aea2b", + "line": 14, + "issue_type": "RedundantAttribute", + "search_key": "", + "search_line": 0, + "search_value": "", + "expected_value": "Hardcoded secret key should not appear in source", + "actual_value": "Hardcoded secret key appears in source" + } + ] + }, + { + "query_name": "Redshift Not Encrypted", + "query_id": "cfdcabb0-fc06-427c-865b-c59f13e898ce", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/redshift_cluster#encrypted", + "severity": "HIGH", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Encryption", + "experimental": false, + "description": "AWS Redshift Cluster should be encrypted. Check if 'encrypted' field is false or undefined (default is false)", + "description_id": "2bee4895", + "files": [ + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "bd00cd9cd4edd1015d1a1e89f98bdd8128cdaa51456e605ca2c29bd64888efcd", + "line": 1, + "resource_type": "aws_redshift_cluster", + "resource_name": "default", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default]", + "search_line": 1, + "search_value": "", + "expected_value": "aws_redshift_cluster.encrypted should be defined and not null", + "actual_value": "aws_redshift_cluster.encrypted is undefined or null", + "remediation": "encrypted = true", + "remediation_type": "addition" + }, + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "a5941ee6cc25be94d6a2dfc73fd602e587638d6ad6caf188c09c374b77283917", + "line": 10, + "resource_type": "aws_redshift_cluster", + "resource_name": "default1", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default1]", + "search_line": 10, + "search_value": "", + "expected_value": "aws_redshift_cluster.encrypted should be defined and not null", + "actual_value": "aws_redshift_cluster.encrypted is undefined or null", + "remediation": "encrypted = true", + "remediation_type": "addition" + } + ] + }, + { + "query_name": "Redshift Publicly Accessible", + "query_id": "af173fde-95ea-4584-b904-bb3923ac4bda", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/redshift_cluster", + "severity": "HIGH", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Insecure Configurations", + "experimental": false, + "description": "AWS Redshift Clusters must not be publicly accessible. Check if 'publicly_accessible' field is true or undefined (default is true)", + "description_id": "9a581503", + "files": [ + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "4234052fbe1fed19a465cec7fbed9eb156c22eeae7d97c3ac8096bcc7b39a2fe", + "line": 1, + "resource_type": "aws_redshift_cluster", + "resource_name": "default", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default]", + "search_line": -1, + "search_value": "", + "expected_value": "aws_redshift_cluster.publicly_accessible should be defined and not null", + "actual_value": "aws_redshift_cluster.publicly_accessible is undefined or null", + "remediation": "publicly_accessible = false", + "remediation_type": "addition" + }, + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "7ae2741fb3c480c38776368fbe21412672c6458d490e4648eb1ad1aadc24a741", + "line": 17, + "resource_type": "aws_redshift_cluster", + "resource_name": "default1", + "issue_type": "IncorrectValue", + "search_key": "aws_redshift_cluster[default1].publicly_accessible", + "search_line": -1, + "search_value": "", + "expected_value": "aws_redshift_cluster.publicly_accessible should be set to false", + "actual_value": "aws_redshift_cluster.publicly_accessible is true", + "remediation": "{\"after\":\"false\",\"before\":\"true\"}", + "remediation_type": "replacement" + } + ] + }, + { + "query_name": "Redshift Cluster Logging Disabled", + "query_id": "15ffbacc-fa42-4f6f-a57d-2feac7365caa", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/redshift_cluster#enable", + "severity": "MEDIUM", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Observability", + "experimental": false, + "description": "Make sure Logging is enabled for Redshift Cluster", + "description_id": "458fe7a3", + "files": [ + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "65c5c77aa946123a3434e2508fa5f8c6d37412fd55f4adc3d04b22d7b820822b", + "line": 10, + "resource_type": "aws_redshift_cluster", + "resource_name": "default1", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default1]", + "search_line": 10, + "search_value": "", + "expected_value": "'aws_redshift_cluster.logging' should be true", + "actual_value": "'aws_redshift_cluster.logging' is undefined", + "remediation": "logging {\n\t\tenable = true \n\t}", + "remediation_type": "addition" + }, + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "225c40e04fe9ac2285e2e47a448c8159cde8561762989f936c5cc6967977f664", + "line": 1, + "resource_type": "aws_redshift_cluster", + "resource_name": "default", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default]", + "search_line": 1, + "search_value": "", + "expected_value": "'aws_redshift_cluster.logging' should be true", + "actual_value": "'aws_redshift_cluster.logging' is undefined", + "remediation": "logging {\n\t\tenable = true \n\t}", + "remediation_type": "addition" + } + ] + }, + { + "query_name": "Redshift Cluster Without VPC", + "query_id": "0a494a6a-ebe2-48a0-9d77-cf9d5125e1b3", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/redshift_cluster#vpc_security_group_ids", + "severity": "MEDIUM", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Insecure Configurations", + "experimental": false, + "description": "Redshift Cluster should be configured in VPC (Virtual Private Cloud)", + "description_id": "6fd531fa", + "files": [ + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "83461a5eac8fed2264fac68a6d352d1ed752867a9b0a131afa9ba7e366159b59", + "line": 10, + "resource_type": "aws_redshift_cluster", + "resource_name": "default1", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default1]", + "search_line": -1, + "search_value": "vpc_security_group_ids", + "expected_value": "aws_redshift_cluster[default1].vpc_security_group_ids should be set", + "actual_value": "aws_redshift_cluster[default1].vpc_security_group_ids is undefined" + }, + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "c703e26654dc3e9da1ad3519663f38aed2a29e629b4342f9e75af464a07699e0", + "line": 1, + "resource_type": "aws_redshift_cluster", + "resource_name": "default", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default]", + "search_line": -1, + "search_value": "vpc_security_group_ids", + "expected_value": "aws_redshift_cluster[default].vpc_security_group_ids should be set", + "actual_value": "aws_redshift_cluster[default].vpc_security_group_ids is undefined" + }, + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "4aa3f159f39767de53b49ed871977b8b499bf19b3b0865b1631042aa830598aa", + "line": 10, + "resource_type": "aws_redshift_cluster", + "resource_name": "default1", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default1]", + "search_line": -1, + "search_value": "cluster_subnet_group_name", + "expected_value": "aws_redshift_cluster[default1].cluster_subnet_group_name should be set", + "actual_value": "aws_redshift_cluster[default1].cluster_subnet_group_name is undefined" + }, + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "709853fdb034e451c68825041190bbff098e2893528d91c39d84d31ea93ecae6", + "line": 1, + "resource_type": "aws_redshift_cluster", + "resource_name": "default", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default]", + "search_line": -1, + "search_value": "cluster_subnet_group_name", + "expected_value": "aws_redshift_cluster[default].cluster_subnet_group_name should be set", + "actual_value": "aws_redshift_cluster[default].cluster_subnet_group_name is undefined" + } + ] + }, + { + "query_name": "IAM Access Analyzer Not Enabled", + "query_id": "e592a0c5-5bdb-414c-9066-5dba7cdea370", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/accessanalyzer_analyzer", + "severity": "LOW", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Best Practices", + "experimental": false, + "description": "IAM Access Analyzer should be enabled and configured to continuously monitor resource permissions", + "description_id": "d03e85ae", + "files": [ + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "aa346cd1642a83b40e221f96a43d88dbfacecdf1f8e5314c24145f8d35530197", + "line": 1, + "resource_type": "n/a", + "resource_name": "n/a", + "issue_type": "MissingAttribute", + "search_key": "resource", + "search_line": -1, + "search_value": "", + "expected_value": "'aws_accessanalyzer_analyzer' should be set", + "actual_value": "'aws_accessanalyzer_analyzer' is undefined" + } + ] + }, + { + "query_name": "Redshift Using Default Port", + "query_id": "41abc6cc-dde1-4217-83d3-fb5f0cc09d8f", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/redshift_cluster#port", + "severity": "LOW", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Networking and Firewall", + "experimental": false, + "description": "Redshift should not use the default port (5439) because an attacker can easily guess the port", + "description_id": "e2e48d27", + "files": [ + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "8f5d57a5515ee4c9c5e6d26274b4e7ae5e408e39399caff57aebe5121dc11af6", + "line": 10, + "resource_type": "aws_redshift_cluster", + "resource_name": "default1", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default1]", + "search_line": 10, + "search_value": "", + "expected_value": "aws_redshift_cluster.port should be defined and not null", + "actual_value": "aws_redshift_cluster.port is undefined or null" + }, + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "34ae9f216456678405a82e7419b9b1614ee09a765529f717679e1fa4f4a1ae0a", + "line": 1, + "resource_type": "aws_redshift_cluster", + "resource_name": "default", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default]", + "search_line": 1, + "search_value": "", + "expected_value": "aws_redshift_cluster.port should be defined and not null", + "actual_value": "aws_redshift_cluster.port is undefined or null" + } + ] + }, + { + "query_name": "Resource Not Using Tags", + "query_id": "e38a8e0a-b88b-4902-b3fe-b0fcb17d5c10", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/guides/resource-tagging", + "severity": "INFO", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Best Practices", + "experimental": false, + "description": "AWS services resource tags are an essential part of managing components. As a best practice, the field 'tags' should have additional tags defined other than 'Name'", + "description_id": "09db2d52", + "files": [ + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "b44463ffd0f5c1eadc04ce6649982da68658349ad880daef470250661d3d1512", + "line": 1, + "resource_type": "aws_redshift_cluster", + "resource_name": "default", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[{{default}}]", + "search_line": -1, + "search_value": "", + "expected_value": "aws_redshift_cluster[{{default}}].tags should be defined and not null", + "actual_value": "aws_redshift_cluster[{{default}}].tags is undefined or null" + }, + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "406b71d9fd0edb656a4735df30dde77c5f8a6c4ec3caa3442f986a92832c653b", + "line": 10, + "resource_type": "aws_redshift_cluster", + "resource_name": "default1", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[{{default1}}]", + "search_line": -1, + "search_value": "", + "expected_value": "aws_redshift_cluster[{{default1}}].tags should be defined and not null", + "actual_value": "aws_redshift_cluster[{{default1}}].tags is undefined or null" + } + ] + } + ] +} diff --git a/e2e/fixtures/E2E_CLI_088_RESULT.json b/e2e/fixtures/E2E_CLI_088_RESULT.json new file mode 100644 index 00000000000..42e8e42b67b --- /dev/null +++ b/e2e/fixtures/E2E_CLI_088_RESULT.json @@ -0,0 +1,370 @@ +{ + "kics_version": "development", + "files_scanned": 1, + "lines_scanned": 19, + "files_parsed": 1, + "lines_parsed": 19, + "lines_ignored": 0, + "files_failed_to_scan": 0, + "queries_total": 1045, + "queries_failed_to_execute": 0, + "queries_failed_to_compute_similarity_id": 0, + "scan_id": "console", + "severity_counters": { + "HIGH": 6, + "INFO": 2, + "LOW": 3, + "MEDIUM": 6, + "TRACE": 0 + }, + "total_counter": 17, + "total_bom_resources": 0, + "start": "2024-02-26T10:44:18.4750254Z", + "end": "2024-02-26T10:44:47.1874587Z", + "paths": [ + "/path/e2e/fixtures/samples/terraform.tf" + ], + "queries": [ + { + "query_name": "Passwords And Secrets - Generic Password", + "query_id": "487f4be7-3fd9-4506-a07a-eae252180c08", + "query_url": "https://docs.kics.io/latest/secrets/", + "severity": "HIGH", + "platform": "Common", + "cloud_provider": "COMMON", + "category": "Secret Management", + "experimental": false, + "description": "Query to find passwords and secrets in infrastructure code.", + "description_id": "d69d8a89", + "files": [ + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "9e26d1ce4d2e0f7fa9b77195bd329f18c135b946ba74a13bc05a289dfc3455f1", + "line": 5, + "issue_type": "RedundantAttribute", + "search_key": "", + "search_line": 0, + "search_value": "", + "expected_value": "Hardcoded secret key should not appear in source", + "actual_value": "Hardcoded secret key appears in source" + }, + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "d6a018d85a93d338ed89c82b791f30c1913eff5e743f67cfa52176f5135aea2b", + "line": 14, + "issue_type": "RedundantAttribute", + "search_key": "", + "search_line": 0, + "search_value": "", + "expected_value": "Hardcoded secret key should not appear in source", + "actual_value": "Hardcoded secret key appears in source" + } + ] + }, + { + "query_name": "Redshift Not Encrypted", + "query_id": "cfdcabb0-fc06-427c-865b-c59f13e898ce", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/redshift_cluster#encrypted", + "severity": "HIGH", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Encryption", + "experimental": false, + "description": "AWS Redshift Cluster should be encrypted. Check if 'encrypted' field is false or undefined (default is false)", + "description_id": "2bee4895", + "files": [ + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "bd00cd9cd4edd1015d1a1e89f98bdd8128cdaa51456e605ca2c29bd64888efcd", + "line": 1, + "resource_type": "aws_redshift_cluster", + "resource_name": "default", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default]", + "search_line": 1, + "search_value": "", + "expected_value": "aws_redshift_cluster.encrypted should be defined and not null", + "actual_value": "aws_redshift_cluster.encrypted is undefined or null", + "remediation": "encrypted = true", + "remediation_type": "addition" + }, + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "a5941ee6cc25be94d6a2dfc73fd602e587638d6ad6caf188c09c374b77283917", + "line": 10, + "resource_type": "aws_redshift_cluster", + "resource_name": "default1", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default1]", + "search_line": 10, + "search_value": "", + "expected_value": "aws_redshift_cluster.encrypted should be defined and not null", + "actual_value": "aws_redshift_cluster.encrypted is undefined or null", + "remediation": "encrypted = true", + "remediation_type": "addition" + } + ] + }, + { + "query_name": "Redshift Publicly Accessible", + "query_id": "af173fde-95ea-4584-b904-bb3923ac4bda", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/redshift_cluster", + "severity": "HIGH", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Insecure Configurations", + "experimental": false, + "description": "AWS Redshift Clusters must not be publicly accessible. Check if 'publicly_accessible' field is true or undefined (default is true)", + "description_id": "9a581503", + "files": [ + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "4234052fbe1fed19a465cec7fbed9eb156c22eeae7d97c3ac8096bcc7b39a2fe", + "line": 1, + "resource_type": "aws_redshift_cluster", + "resource_name": "default", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default]", + "search_line": -1, + "search_value": "", + "expected_value": "aws_redshift_cluster.publicly_accessible should be defined and not null", + "actual_value": "aws_redshift_cluster.publicly_accessible is undefined or null", + "remediation": "publicly_accessible = false", + "remediation_type": "addition" + }, + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "7ae2741fb3c480c38776368fbe21412672c6458d490e4648eb1ad1aadc24a741", + "line": 17, + "resource_type": "aws_redshift_cluster", + "resource_name": "default1", + "issue_type": "IncorrectValue", + "search_key": "aws_redshift_cluster[default1].publicly_accessible", + "search_line": -1, + "search_value": "", + "expected_value": "aws_redshift_cluster.publicly_accessible should be set to false", + "actual_value": "aws_redshift_cluster.publicly_accessible is true", + "remediation": "{\"after\":\"false\",\"before\":\"true\"}", + "remediation_type": "replacement" + } + ] + }, + { + "query_name": "Redshift Cluster Logging Disabled", + "query_id": "15ffbacc-fa42-4f6f-a57d-2feac7365caa", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/redshift_cluster#enable", + "severity": "MEDIUM", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Observability", + "experimental": false, + "description": "Make sure Logging is enabled for Redshift Cluster", + "description_id": "458fe7a3", + "files": [ + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "65c5c77aa946123a3434e2508fa5f8c6d37412fd55f4adc3d04b22d7b820822b", + "line": 10, + "resource_type": "aws_redshift_cluster", + "resource_name": "default1", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default1]", + "search_line": 10, + "search_value": "", + "expected_value": "'aws_redshift_cluster.logging' should be true", + "actual_value": "'aws_redshift_cluster.logging' is undefined", + "remediation": "logging {\n\t\tenable = true \n\t}", + "remediation_type": "addition" + }, + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "225c40e04fe9ac2285e2e47a448c8159cde8561762989f936c5cc6967977f664", + "line": 1, + "resource_type": "aws_redshift_cluster", + "resource_name": "default", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default]", + "search_line": 1, + "search_value": "", + "expected_value": "'aws_redshift_cluster.logging' should be true", + "actual_value": "'aws_redshift_cluster.logging' is undefined", + "remediation": "logging {\n\t\tenable = true \n\t}", + "remediation_type": "addition" + } + ] + }, + { + "query_name": "Redshift Cluster Without VPC", + "query_id": "0a494a6a-ebe2-48a0-9d77-cf9d5125e1b3", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/redshift_cluster#vpc_security_group_ids", + "severity": "MEDIUM", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Insecure Configurations", + "experimental": false, + "description": "Redshift Cluster should be configured in VPC (Virtual Private Cloud)", + "description_id": "6fd531fa", + "files": [ + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "83461a5eac8fed2264fac68a6d352d1ed752867a9b0a131afa9ba7e366159b59", + "line": 10, + "resource_type": "aws_redshift_cluster", + "resource_name": "default1", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default1]", + "search_line": -1, + "search_value": "vpc_security_group_ids", + "expected_value": "aws_redshift_cluster[default1].vpc_security_group_ids should be set", + "actual_value": "aws_redshift_cluster[default1].vpc_security_group_ids is undefined" + }, + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "c703e26654dc3e9da1ad3519663f38aed2a29e629b4342f9e75af464a07699e0", + "line": 1, + "resource_type": "aws_redshift_cluster", + "resource_name": "default", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default]", + "search_line": -1, + "search_value": "vpc_security_group_ids", + "expected_value": "aws_redshift_cluster[default].vpc_security_group_ids should be set", + "actual_value": "aws_redshift_cluster[default].vpc_security_group_ids is undefined" + }, + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "4aa3f159f39767de53b49ed871977b8b499bf19b3b0865b1631042aa830598aa", + "line": 10, + "resource_type": "aws_redshift_cluster", + "resource_name": "default1", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default1]", + "search_line": -1, + "search_value": "cluster_subnet_group_name", + "expected_value": "aws_redshift_cluster[default1].cluster_subnet_group_name should be set", + "actual_value": "aws_redshift_cluster[default1].cluster_subnet_group_name is undefined" + }, + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "709853fdb034e451c68825041190bbff098e2893528d91c39d84d31ea93ecae6", + "line": 1, + "resource_type": "aws_redshift_cluster", + "resource_name": "default", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default]", + "search_line": -1, + "search_value": "cluster_subnet_group_name", + "expected_value": "aws_redshift_cluster[default].cluster_subnet_group_name should be set", + "actual_value": "aws_redshift_cluster[default].cluster_subnet_group_name is undefined" + } + ] + }, + { + "query_name": "IAM Access Analyzer Not Enabled", + "query_id": "e592a0c5-5bdb-414c-9066-5dba7cdea370", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/accessanalyzer_analyzer", + "severity": "LOW", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Best Practices", + "experimental": false, + "description": "IAM Access Analyzer should be enabled and configured to continuously monitor resource permissions", + "description_id": "d03e85ae", + "files": [ + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "aa346cd1642a83b40e221f96a43d88dbfacecdf1f8e5314c24145f8d35530197", + "line": 1, + "resource_type": "n/a", + "resource_name": "n/a", + "issue_type": "MissingAttribute", + "search_key": "resource", + "search_line": -1, + "search_value": "", + "expected_value": "'aws_accessanalyzer_analyzer' should be set", + "actual_value": "'aws_accessanalyzer_analyzer' is undefined" + } + ] + }, + { + "query_name": "Redshift Using Default Port", + "query_id": "41abc6cc-dde1-4217-83d3-fb5f0cc09d8f", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/redshift_cluster#port", + "severity": "LOW", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Networking and Firewall", + "experimental": false, + "description": "Redshift should not use the default port (5439) because an attacker can easily guess the port", + "description_id": "e2e48d27", + "files": [ + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "8f5d57a5515ee4c9c5e6d26274b4e7ae5e408e39399caff57aebe5121dc11af6", + "line": 10, + "resource_type": "aws_redshift_cluster", + "resource_name": "default1", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default1]", + "search_line": 10, + "search_value": "", + "expected_value": "aws_redshift_cluster.port should be defined and not null", + "actual_value": "aws_redshift_cluster.port is undefined or null" + }, + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "34ae9f216456678405a82e7419b9b1614ee09a765529f717679e1fa4f4a1ae0a", + "line": 1, + "resource_type": "aws_redshift_cluster", + "resource_name": "default", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default]", + "search_line": 1, + "search_value": "", + "expected_value": "aws_redshift_cluster.port should be defined and not null", + "actual_value": "aws_redshift_cluster.port is undefined or null" + } + ] + }, + { + "query_name": "Resource Not Using Tags", + "query_id": "e38a8e0a-b88b-4902-b3fe-b0fcb17d5c10", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/guides/resource-tagging", + "severity": "INFO", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Best Practices", + "experimental": false, + "description": "AWS services resource tags are an essential part of managing components. As a best practice, the field 'tags' should have additional tags defined other than 'Name'", + "description_id": "09db2d52", + "files": [ + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "b44463ffd0f5c1eadc04ce6649982da68658349ad880daef470250661d3d1512", + "line": 1, + "resource_type": "aws_redshift_cluster", + "resource_name": "default", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[{{default}}]", + "search_line": -1, + "search_value": "", + "expected_value": "aws_redshift_cluster[{{default}}].tags should be defined and not null", + "actual_value": "aws_redshift_cluster[{{default}}].tags is undefined or null" + }, + { + "file_name": "path\\e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "406b71d9fd0edb656a4735df30dde77c5f8a6c4ec3caa3442f986a92832c653b", + "line": 10, + "resource_type": "aws_redshift_cluster", + "resource_name": "default1", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[{{default1}}]", + "search_line": -1, + "search_value": "", + "expected_value": "aws_redshift_cluster[{{default1}}].tags should be defined and not null", + "actual_value": "aws_redshift_cluster[{{default1}}].tags is undefined or null" + } + ] + } + ] +} diff --git a/e2e/fixtures/assets/scan_help b/e2e/fixtures/assets/scan_help index 20994503386..be9ed8edf74 100644 --- a/e2e/fixtures/assets/scan_help +++ b/e2e/fixtures/assets/scan_help @@ -48,6 +48,7 @@ Flags: --no-progress hides the progress bar --output-name string name used on report creations (default "results") -o, --output-path string directory path to store reports + --parallel int number of workers per platform enabled for parallel scanning, set 0 to auto-detect parallelism (default 1) -p, --path strings paths or directories to scan example: "./somepath,somefile.txt" --payload-lines adds line information inside the payload when printing the payload file diff --git a/e2e/fixtures/samples/long_terraform.tf b/e2e/fixtures/samples/long_terraform.tf new file mode 100644 index 00000000000..4fcaec06839 --- /dev/null +++ b/e2e/fixtures/samples/long_terraform.tf @@ -0,0 +1,9012 @@ +provider "aws" { + region = "us-west-2" + access_key = "YOUR_ACCESS_KEY" + secret_key = "YOUR_SECRET_KEY" +} + +resource "aws_key_pair" "deployer" { + key_name = "deployer-key" + public_key = "123123123123123" +} +resource "aws_instance" "example1" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-1" + } +} +resource "aws_instance" "example2" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-2" + } +} +resource "aws_instance" "example3" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-3" + } +} +resource "aws_instance" "example4" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-4" + } +} +resource "aws_instance" "example5" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-5" + } +} +resource "aws_instance" "example6" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-6" + } +} +resource "aws_instance" "example7" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-7" + } +} +resource "aws_instance" "example8" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-8" + } +} +resource "aws_instance" "example9" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-9" + } +} +resource "aws_instance" "example10" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-10" + } +} +resource "aws_instance" "example11" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-11" + } +} +resource "aws_instance" "example12" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-12" + } +} +resource "aws_instance" "example13" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-13" + } +} +resource "aws_instance" "example14" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-14" + } +} +resource "aws_instance" "example15" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-15" + } +} +resource "aws_instance" "example16" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-16" + } +} +resource "aws_instance" "example17" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-17" + } +} +resource "aws_instance" "example18" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-18" + } +} +resource "aws_instance" "example19" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-19" + } +} +resource "aws_instance" "example20" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-20" + } +} +resource "aws_instance" "example21" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-21" + } +} +resource "aws_instance" "example22" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-22" + } +} +resource "aws_instance" "example23" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-23" + } +} +resource "aws_instance" "example24" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-24" + } +} +resource "aws_instance" "example25" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-25" + } +} +resource "aws_instance" "example26" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-26" + } +} +resource "aws_instance" "example27" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-27" + } +} +resource "aws_instance" "example28" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-28" + } +} +resource "aws_instance" "example29" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-29" + } +} +resource "aws_instance" "example30" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-30" + } +} +resource "aws_instance" "example31" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-31" + } +} +resource "aws_instance" "example32" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-32" + } +} +resource "aws_instance" "example33" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-33" + } +} +resource "aws_instance" "example34" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-34" + } +} +resource "aws_instance" "example35" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-35" + } +} +resource "aws_instance" "example36" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-36" + } +} +resource "aws_instance" "example37" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-37" + } +} +resource "aws_instance" "example38" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-38" + } +} +resource "aws_instance" "example39" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-39" + } +} +resource "aws_instance" "example40" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-40" + } +} +resource "aws_instance" "example41" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-41" + } +} +resource "aws_instance" "example42" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-42" + } +} +resource "aws_instance" "example43" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-43" + } +} +resource "aws_instance" "example44" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-44" + } +} +resource "aws_instance" "example45" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-45" + } +} +resource "aws_instance" "example46" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-46" + } +} +resource "aws_instance" "example47" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-47" + } +} +resource "aws_instance" "example48" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-48" + } +} +resource "aws_instance" "example49" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-49" + } +} +resource "aws_instance" "example50" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-50" + } +} +resource "aws_instance" "example51" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-51" + } +} +resource "aws_instance" "example52" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-52" + } +} +resource "aws_instance" "example53" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-53" + } +} +resource "aws_instance" "example54" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-54" + } +} +resource "aws_instance" "example55" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-55" + } +} +resource "aws_instance" "example56" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-56" + } +} +resource "aws_instance" "example57" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-57" + } +} +resource "aws_instance" "example58" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-58" + } +} +resource "aws_instance" "example59" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-59" + } +} +resource "aws_instance" "example60" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-60" + } +} +resource "aws_instance" "example61" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-61" + } +} +resource "aws_instance" "example62" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-62" + } +} +resource "aws_instance" "example63" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-63" + } +} +resource "aws_instance" "example64" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-64" + } +} +resource "aws_instance" "example65" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-65" + } +} +resource "aws_instance" "example66" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-66" + } +} +resource "aws_instance" "example67" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-67" + } +} +resource "aws_instance" "example68" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-68" + } +} +resource "aws_instance" "example69" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-69" + } +} +resource "aws_instance" "example70" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-70" + } +} +resource "aws_instance" "example71" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-71" + } +} +resource "aws_instance" "example72" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-72" + } +} +resource "aws_instance" "example73" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-73" + } +} +resource "aws_instance" "example74" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-74" + } +} +resource "aws_instance" "example75" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-75" + } +} +resource "aws_instance" "example76" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-76" + } +} +resource "aws_instance" "example77" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-77" + } +} +resource "aws_instance" "example78" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-78" + } +} +resource "aws_instance" "example79" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-79" + } +} +resource "aws_instance" "example80" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-80" + } +} +resource "aws_instance" "example81" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-81" + } +} +resource "aws_instance" "example82" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-82" + } +} +resource "aws_instance" "example83" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-83" + } +} +resource "aws_instance" "example84" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-84" + } +} +resource "aws_instance" "example85" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-85" + } +} +resource "aws_instance" "example86" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-86" + } +} +resource "aws_instance" "example87" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-87" + } +} +resource "aws_instance" "example88" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-88" + } +} +resource "aws_instance" "example89" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-89" + } +} +resource "aws_instance" "example90" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-90" + } +} +resource "aws_instance" "example91" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-91" + } +} +resource "aws_instance" "example92" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-92" + } +} +resource "aws_instance" "example93" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-93" + } +} +resource "aws_instance" "example94" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-94" + } +} +resource "aws_instance" "example95" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-95" + } +} +resource "aws_instance" "example96" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-96" + } +} +resource "aws_instance" "example97" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-97" + } +} +resource "aws_instance" "example98" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-98" + } +} +resource "aws_instance" "example99" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-99" + } +} +resource "aws_instance" "example100" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-100" + } +} +resource "aws_instance" "example101" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-101" + } +} +resource "aws_instance" "example102" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-102" + } +} +resource "aws_instance" "example103" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-103" + } +} +resource "aws_instance" "example104" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-104" + } +} +resource "aws_instance" "example105" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-105" + } +} +resource "aws_instance" "example106" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-106" + } +} +resource "aws_instance" "example107" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-107" + } +} +resource "aws_instance" "example108" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-108" + } +} +resource "aws_instance" "example109" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-109" + } +} +resource "aws_instance" "example110" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-110" + } +} +resource "aws_instance" "example111" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-111" + } +} +resource "aws_instance" "example112" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-112" + } +} +resource "aws_instance" "example113" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-113" + } +} +resource "aws_instance" "example114" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-114" + } +} +resource "aws_instance" "example115" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-115" + } +} +resource "aws_instance" "example116" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-116" + } +} +resource "aws_instance" "example117" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-117" + } +} +resource "aws_instance" "example118" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-118" + } +} +resource "aws_instance" "example119" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-119" + } +} +resource "aws_instance" "example120" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-120" + } +} +resource "aws_instance" "example121" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-121" + } +} +resource "aws_instance" "example122" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-122" + } +} +resource "aws_instance" "example123" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-123" + } +} +resource "aws_instance" "example124" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-124" + } +} +resource "aws_instance" "example125" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-125" + } +} +resource "aws_instance" "example126" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-126" + } +} +resource "aws_instance" "example127" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-127" + } +} +resource "aws_instance" "example128" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-128" + } +} +resource "aws_instance" "example129" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-129" + } +} +resource "aws_instance" "example130" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-130" + } +} +resource "aws_instance" "example131" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-131" + } +} +resource "aws_instance" "example132" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-132" + } +} +resource "aws_instance" "example133" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-133" + } +} +resource "aws_instance" "example134" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-134" + } +} +resource "aws_instance" "example135" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-135" + } +} +resource "aws_instance" "example136" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-136" + } +} +resource "aws_instance" "example137" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-137" + } +} +resource "aws_instance" "example138" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-138" + } +} +resource "aws_instance" "example139" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-139" + } +} +resource "aws_instance" "example140" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-140" + } +} +resource "aws_instance" "example141" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-141" + } +} +resource "aws_instance" "example142" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-142" + } +} +resource "aws_instance" "example143" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-143" + } +} +resource "aws_instance" "example144" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-144" + } +} +resource "aws_instance" "example145" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-145" + } +} +resource "aws_instance" "example146" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-146" + } +} +resource "aws_instance" "example147" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-147" + } +} +resource "aws_instance" "example148" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-148" + } +} +resource "aws_instance" "example149" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-149" + } +} +resource "aws_instance" "example150" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-150" + } +} +resource "aws_instance" "example151" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-151" + } +} +resource "aws_instance" "example152" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-152" + } +} +resource "aws_instance" "example153" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-153" + } +} +resource "aws_instance" "example154" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-154" + } +} +resource "aws_instance" "example155" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-155" + } +} +resource "aws_instance" "example156" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-156" + } +} +resource "aws_instance" "example157" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-157" + } +} +resource "aws_instance" "example158" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-158" + } +} +resource "aws_instance" "example159" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-159" + } +} +resource "aws_instance" "example160" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-160" + } +} +resource "aws_instance" "example161" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-161" + } +} +resource "aws_instance" "example162" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-162" + } +} +resource "aws_instance" "example163" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-163" + } +} +resource "aws_instance" "example164" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-164" + } +} +resource "aws_instance" "example165" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-165" + } +} +resource "aws_instance" "example166" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-166" + } +} +resource "aws_instance" "example167" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-167" + } +} +resource "aws_instance" "example168" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-168" + } +} +resource "aws_instance" "example169" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-169" + } +} +resource "aws_instance" "example170" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-170" + } +} +resource "aws_instance" "example171" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-171" + } +} +resource "aws_instance" "example172" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-172" + } +} +resource "aws_instance" "example173" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-173" + } +} +resource "aws_instance" "example174" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-174" + } +} +resource "aws_instance" "example175" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-175" + } +} +resource "aws_instance" "example176" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-176" + } +} +resource "aws_instance" "example177" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-177" + } +} +resource "aws_instance" "example178" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-178" + } +} +resource "aws_instance" "example179" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-179" + } +} +resource "aws_instance" "example180" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-180" + } +} +resource "aws_instance" "example181" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-181" + } +} +resource "aws_instance" "example182" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-182" + } +} +resource "aws_instance" "example183" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-183" + } +} +resource "aws_instance" "example184" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-184" + } +} +resource "aws_instance" "example185" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-185" + } +} +resource "aws_instance" "example186" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-186" + } +} +resource "aws_instance" "example187" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-187" + } +} +resource "aws_instance" "example188" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-188" + } +} +resource "aws_instance" "example189" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-189" + } +} +resource "aws_instance" "example190" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-190" + } +} +resource "aws_instance" "example191" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-191" + } +} +resource "aws_instance" "example192" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-192" + } +} +resource "aws_instance" "example193" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-193" + } +} +resource "aws_instance" "example194" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-194" + } +} +resource "aws_instance" "example195" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-195" + } +} +resource "aws_instance" "example196" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-196" + } +} +resource "aws_instance" "example197" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-197" + } +} +resource "aws_instance" "example198" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-198" + } +} +resource "aws_instance" "example199" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-199" + } +} +resource "aws_instance" "example200" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-200" + } +} +resource "aws_instance" "example201" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-201" + } +} +resource "aws_instance" "example202" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-202" + } +} +resource "aws_instance" "example203" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-203" + } +} +resource "aws_instance" "example204" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-204" + } +} +resource "aws_instance" "example205" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-205" + } +} +resource "aws_instance" "example206" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-206" + } +} +resource "aws_instance" "example207" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-207" + } +} +resource "aws_instance" "example208" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-208" + } +} +resource "aws_instance" "example209" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-209" + } +} +resource "aws_instance" "example210" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-210" + } +} +resource "aws_instance" "example211" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-211" + } +} +resource "aws_instance" "example212" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-212" + } +} +resource "aws_instance" "example213" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-213" + } +} +resource "aws_instance" "example214" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-214" + } +} +resource "aws_instance" "example215" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-215" + } +} +resource "aws_instance" "example216" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-216" + } +} +resource "aws_instance" "example217" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-217" + } +} +resource "aws_instance" "example218" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-218" + } +} +resource "aws_instance" "example219" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-219" + } +} +resource "aws_instance" "example220" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-220" + } +} +resource "aws_instance" "example221" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-221" + } +} +resource "aws_instance" "example222" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-222" + } +} +resource "aws_instance" "example223" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-223" + } +} +resource "aws_instance" "example224" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-224" + } +} +resource "aws_instance" "example225" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-225" + } +} +resource "aws_instance" "example226" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-226" + } +} +resource "aws_instance" "example227" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-227" + } +} +resource "aws_instance" "example228" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-228" + } +} +resource "aws_instance" "example229" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-229" + } +} +resource "aws_instance" "example230" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-230" + } +} +resource "aws_instance" "example231" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-231" + } +} +resource "aws_instance" "example232" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-232" + } +} +resource "aws_instance" "example233" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-233" + } +} +resource "aws_instance" "example234" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-234" + } +} +resource "aws_instance" "example235" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-235" + } +} +resource "aws_instance" "example236" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-236" + } +} +resource "aws_instance" "example237" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-237" + } +} +resource "aws_instance" "example238" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-238" + } +} +resource "aws_instance" "example239" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-239" + } +} +resource "aws_instance" "example240" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-240" + } +} +resource "aws_instance" "example241" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-241" + } +} +resource "aws_instance" "example242" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-242" + } +} +resource "aws_instance" "example243" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-243" + } +} +resource "aws_instance" "example244" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-244" + } +} +resource "aws_instance" "example245" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-245" + } +} +resource "aws_instance" "example246" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-246" + } +} +resource "aws_instance" "example247" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-247" + } +} +resource "aws_instance" "example248" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-248" + } +} +resource "aws_instance" "example249" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-249" + } +} +resource "aws_instance" "example250" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-250" + } +} +resource "aws_instance" "example251" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-251" + } +} +resource "aws_instance" "example252" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-252" + } +} +resource "aws_instance" "example253" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-253" + } +} +resource "aws_instance" "example254" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-254" + } +} +resource "aws_instance" "example255" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-255" + } +} +resource "aws_instance" "example256" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-256" + } +} +resource "aws_instance" "example257" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-257" + } +} +resource "aws_instance" "example258" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-258" + } +} +resource "aws_instance" "example259" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-259" + } +} +resource "aws_instance" "example260" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-260" + } +} +resource "aws_instance" "example261" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-261" + } +} +resource "aws_instance" "example262" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-262" + } +} +resource "aws_instance" "example263" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-263" + } +} +resource "aws_instance" "example264" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-264" + } +} +resource "aws_instance" "example265" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-265" + } +} +resource "aws_instance" "example266" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-266" + } +} +resource "aws_instance" "example267" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-267" + } +} +resource "aws_instance" "example268" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-268" + } +} +resource "aws_instance" "example269" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-269" + } +} +resource "aws_instance" "example270" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-270" + } +} +resource "aws_instance" "example271" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-271" + } +} +resource "aws_instance" "example272" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-272" + } +} +resource "aws_instance" "example273" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-273" + } +} +resource "aws_instance" "example274" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-274" + } +} +resource "aws_instance" "example275" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-275" + } +} +resource "aws_instance" "example276" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-276" + } +} +resource "aws_instance" "example277" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-277" + } +} +resource "aws_instance" "example278" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-278" + } +} +resource "aws_instance" "example279" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-279" + } +} +resource "aws_instance" "example280" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-280" + } +} +resource "aws_instance" "example281" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-281" + } +} +resource "aws_instance" "example282" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-282" + } +} +resource "aws_instance" "example283" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-283" + } +} +resource "aws_instance" "example284" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-284" + } +} +resource "aws_instance" "example285" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-285" + } +} +resource "aws_instance" "example286" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-286" + } +} +resource "aws_instance" "example287" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-287" + } +} +resource "aws_instance" "example288" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-288" + } +} +resource "aws_instance" "example289" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-289" + } +} +resource "aws_instance" "example290" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-290" + } +} +resource "aws_instance" "example291" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-291" + } +} +resource "aws_instance" "example292" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-292" + } +} +resource "aws_instance" "example293" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-293" + } +} +resource "aws_instance" "example294" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-294" + } +} +resource "aws_instance" "example295" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-295" + } +} +resource "aws_instance" "example296" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-296" + } +} +resource "aws_instance" "example297" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-297" + } +} +resource "aws_instance" "example298" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-298" + } +} +resource "aws_instance" "example299" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-299" + } +} +resource "aws_instance" "example300" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-300" + } +} +resource "aws_instance" "example301" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-301" + } +} +resource "aws_instance" "example302" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-302" + } +} +resource "aws_instance" "example303" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-303" + } +} +resource "aws_instance" "example304" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-304" + } +} +resource "aws_instance" "example305" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-305" + } +} +resource "aws_instance" "example306" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-306" + } +} +resource "aws_instance" "example307" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-307" + } +} +resource "aws_instance" "example308" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-308" + } +} +resource "aws_instance" "example309" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-309" + } +} +resource "aws_instance" "example310" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-310" + } +} +resource "aws_instance" "example311" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-311" + } +} +resource "aws_instance" "example312" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-312" + } +} +resource "aws_instance" "example313" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-313" + } +} +resource "aws_instance" "example314" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-314" + } +} +resource "aws_instance" "example315" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-315" + } +} +resource "aws_instance" "example316" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-316" + } +} +resource "aws_instance" "example317" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-317" + } +} +resource "aws_instance" "example318" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-318" + } +} +resource "aws_instance" "example319" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-319" + } +} +resource "aws_instance" "example320" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-320" + } +} +resource "aws_instance" "example321" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-321" + } +} +resource "aws_instance" "example322" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-322" + } +} +resource "aws_instance" "example323" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-323" + } +} +resource "aws_instance" "example324" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-324" + } +} +resource "aws_instance" "example325" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-325" + } +} +resource "aws_instance" "example326" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-326" + } +} +resource "aws_instance" "example327" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-327" + } +} +resource "aws_instance" "example328" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-328" + } +} +resource "aws_instance" "example329" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-329" + } +} +resource "aws_instance" "example330" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-330" + } +} +resource "aws_instance" "example331" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-331" + } +} +resource "aws_instance" "example332" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-332" + } +} +resource "aws_instance" "example333" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-333" + } +} +resource "aws_instance" "example334" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-334" + } +} +resource "aws_instance" "example335" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-335" + } +} +resource "aws_instance" "example336" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-336" + } +} +resource "aws_instance" "example337" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-337" + } +} +resource "aws_instance" "example338" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-338" + } +} +resource "aws_instance" "example339" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-339" + } +} +resource "aws_instance" "example340" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-340" + } +} +resource "aws_instance" "example341" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-341" + } +} +resource "aws_instance" "example342" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-342" + } +} +resource "aws_instance" "example343" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-343" + } +} +resource "aws_instance" "example344" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-344" + } +} +resource "aws_instance" "example345" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-345" + } +} +resource "aws_instance" "example346" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-346" + } +} +resource "aws_instance" "example347" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-347" + } +} +resource "aws_instance" "example348" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-348" + } +} +resource "aws_instance" "example349" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-349" + } +} +resource "aws_instance" "example350" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-350" + } +} +resource "aws_instance" "example351" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-351" + } +} +resource "aws_instance" "example352" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-352" + } +} +resource "aws_instance" "example353" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-353" + } +} +resource "aws_instance" "example354" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-354" + } +} +resource "aws_instance" "example355" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-355" + } +} +resource "aws_instance" "example356" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-356" + } +} +resource "aws_instance" "example357" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-357" + } +} +resource "aws_instance" "example358" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-358" + } +} +resource "aws_instance" "example359" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-359" + } +} +resource "aws_instance" "example360" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-360" + } +} +resource "aws_instance" "example361" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-361" + } +} +resource "aws_instance" "example362" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-362" + } +} +resource "aws_instance" "example363" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-363" + } +} +resource "aws_instance" "example364" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-364" + } +} +resource "aws_instance" "example365" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-365" + } +} +resource "aws_instance" "example366" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-366" + } +} +resource "aws_instance" "example367" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-367" + } +} +resource "aws_instance" "example368" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-368" + } +} +resource "aws_instance" "example369" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-369" + } +} +resource "aws_instance" "example370" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-370" + } +} +resource "aws_instance" "example371" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-371" + } +} +resource "aws_instance" "example372" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-372" + } +} +resource "aws_instance" "example373" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-373" + } +} +resource "aws_instance" "example374" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-374" + } +} +resource "aws_instance" "example375" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-375" + } +} +resource "aws_instance" "example376" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-376" + } +} +resource "aws_instance" "example377" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-377" + } +} +resource "aws_instance" "example378" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-378" + } +} +resource "aws_instance" "example379" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-379" + } +} +resource "aws_instance" "example380" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-380" + } +} +resource "aws_instance" "example381" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-381" + } +} +resource "aws_instance" "example382" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-382" + } +} +resource "aws_instance" "example383" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-383" + } +} +resource "aws_instance" "example384" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-384" + } +} +resource "aws_instance" "example385" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-385" + } +} +resource "aws_instance" "example386" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-386" + } +} +resource "aws_instance" "example387" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-387" + } +} +resource "aws_instance" "example388" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-388" + } +} +resource "aws_instance" "example389" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-389" + } +} +resource "aws_instance" "example390" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-390" + } +} +resource "aws_instance" "example391" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-391" + } +} +resource "aws_instance" "example392" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-392" + } +} +resource "aws_instance" "example393" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-393" + } +} +resource "aws_instance" "example394" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-394" + } +} +resource "aws_instance" "example395" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-395" + } +} +resource "aws_instance" "example396" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-396" + } +} +resource "aws_instance" "example397" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-397" + } +} +resource "aws_instance" "example398" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-398" + } +} +resource "aws_instance" "example399" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-399" + } +} +resource "aws_instance" "example400" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-400" + } +} +resource "aws_instance" "example401" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-401" + } +} +resource "aws_instance" "example402" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-402" + } +} +resource "aws_instance" "example403" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-403" + } +} +resource "aws_instance" "example404" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-404" + } +} +resource "aws_instance" "example405" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-405" + } +} +resource "aws_instance" "example406" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-406" + } +} +resource "aws_instance" "example407" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-407" + } +} +resource "aws_instance" "example408" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-408" + } +} +resource "aws_instance" "example409" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-409" + } +} +resource "aws_instance" "example410" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-410" + } +} +resource "aws_instance" "example411" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-411" + } +} +resource "aws_instance" "example412" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-412" + } +} +resource "aws_instance" "example413" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-413" + } +} +resource "aws_instance" "example414" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-414" + } +} +resource "aws_instance" "example415" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-415" + } +} +resource "aws_instance" "example416" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-416" + } +} +resource "aws_instance" "example417" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-417" + } +} +resource "aws_instance" "example418" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-418" + } +} +resource "aws_instance" "example419" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-419" + } +} +resource "aws_instance" "example420" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-420" + } +} +resource "aws_instance" "example421" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-421" + } +} +resource "aws_instance" "example422" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-422" + } +} +resource "aws_instance" "example423" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-423" + } +} +resource "aws_instance" "example424" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-424" + } +} +resource "aws_instance" "example425" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-425" + } +} +resource "aws_instance" "example426" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-426" + } +} +resource "aws_instance" "example427" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-427" + } +} +resource "aws_instance" "example428" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-428" + } +} +resource "aws_instance" "example429" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-429" + } +} +resource "aws_instance" "example430" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-430" + } +} +resource "aws_instance" "example431" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-431" + } +} +resource "aws_instance" "example432" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-432" + } +} +resource "aws_instance" "example433" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-433" + } +} +resource "aws_instance" "example434" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-434" + } +} +resource "aws_instance" "example435" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-435" + } +} +resource "aws_instance" "example436" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-436" + } +} +resource "aws_instance" "example437" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-437" + } +} +resource "aws_instance" "example438" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-438" + } +} +resource "aws_instance" "example439" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-439" + } +} +resource "aws_instance" "example440" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-440" + } +} +resource "aws_instance" "example441" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-441" + } +} +resource "aws_instance" "example442" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-442" + } +} +resource "aws_instance" "example443" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-443" + } +} +resource "aws_instance" "example444" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-444" + } +} +resource "aws_instance" "example445" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-445" + } +} +resource "aws_instance" "example446" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-446" + } +} +resource "aws_instance" "example447" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-447" + } +} +resource "aws_instance" "example448" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-448" + } +} +resource "aws_instance" "example449" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-449" + } +} +resource "aws_instance" "example450" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-450" + } +} +resource "aws_instance" "example451" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-451" + } +} +resource "aws_instance" "example452" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-452" + } +} +resource "aws_instance" "example453" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-453" + } +} +resource "aws_instance" "example454" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-454" + } +} +resource "aws_instance" "example455" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-455" + } +} +resource "aws_instance" "example456" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-456" + } +} +resource "aws_instance" "example457" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-457" + } +} +resource "aws_instance" "example458" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-458" + } +} +resource "aws_instance" "example459" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-459" + } +} +resource "aws_instance" "example460" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-460" + } +} +resource "aws_instance" "example461" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-461" + } +} +resource "aws_instance" "example462" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-462" + } +} +resource "aws_instance" "example463" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-463" + } +} +resource "aws_instance" "example464" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-464" + } +} +resource "aws_instance" "example465" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-465" + } +} +resource "aws_instance" "example466" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-466" + } +} +resource "aws_instance" "example467" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-467" + } +} +resource "aws_instance" "example468" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-468" + } +} +resource "aws_instance" "example469" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-469" + } +} +resource "aws_instance" "example470" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-470" + } +} +resource "aws_instance" "example471" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-471" + } +} +resource "aws_instance" "example472" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-472" + } +} +resource "aws_instance" "example473" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-473" + } +} +resource "aws_instance" "example474" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-474" + } +} +resource "aws_instance" "example475" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-475" + } +} +resource "aws_instance" "example476" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-476" + } +} +resource "aws_instance" "example477" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-477" + } +} +resource "aws_instance" "example478" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-478" + } +} +resource "aws_instance" "example479" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-479" + } +} +resource "aws_instance" "example480" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-480" + } +} +resource "aws_instance" "example481" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-481" + } +} +resource "aws_instance" "example482" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-482" + } +} +resource "aws_instance" "example483" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-483" + } +} +resource "aws_instance" "example484" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-484" + } +} +resource "aws_instance" "example485" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-485" + } +} +resource "aws_instance" "example486" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-486" + } +} +resource "aws_instance" "example487" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-487" + } +} +resource "aws_instance" "example488" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-488" + } +} +resource "aws_instance" "example489" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-489" + } +} +resource "aws_instance" "example490" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-490" + } +} +resource "aws_instance" "example491" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-491" + } +} +resource "aws_instance" "example492" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-492" + } +} +resource "aws_instance" "example493" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-493" + } +} +resource "aws_instance" "example494" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-494" + } +} +resource "aws_instance" "example495" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-495" + } +} +resource "aws_instance" "example496" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-496" + } +} +resource "aws_instance" "example497" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-497" + } +} +resource "aws_instance" "example498" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-498" + } +} +resource "aws_instance" "example499" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-499" + } +} +resource "aws_instance" "example500" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-500" + } +} +resource "aws_instance" "example501" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-501" + } +} +resource "aws_instance" "example502" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-502" + } +} +resource "aws_instance" "example503" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-503" + } +} +resource "aws_instance" "example504" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-504" + } +} +resource "aws_instance" "example505" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-505" + } +} +resource "aws_instance" "example506" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-506" + } +} +resource "aws_instance" "example507" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-507" + } +} +resource "aws_instance" "example508" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-508" + } +} +resource "aws_instance" "example509" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-509" + } +} +resource "aws_instance" "example510" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-510" + } +} +resource "aws_instance" "example511" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-511" + } +} +resource "aws_instance" "example512" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-512" + } +} +resource "aws_instance" "example513" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-513" + } +} +resource "aws_instance" "example514" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-514" + } +} +resource "aws_instance" "example515" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-515" + } +} +resource "aws_instance" "example516" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-516" + } +} +resource "aws_instance" "example517" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-517" + } +} +resource "aws_instance" "example518" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-518" + } +} +resource "aws_instance" "example519" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-519" + } +} +resource "aws_instance" "example520" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-520" + } +} +resource "aws_instance" "example521" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-521" + } +} +resource "aws_instance" "example522" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-522" + } +} +resource "aws_instance" "example523" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-523" + } +} +resource "aws_instance" "example524" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-524" + } +} +resource "aws_instance" "example525" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-525" + } +} +resource "aws_instance" "example526" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-526" + } +} +resource "aws_instance" "example527" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-527" + } +} +resource "aws_instance" "example528" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-528" + } +} +resource "aws_instance" "example529" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-529" + } +} +resource "aws_instance" "example530" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-530" + } +} +resource "aws_instance" "example531" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-531" + } +} +resource "aws_instance" "example532" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-532" + } +} +resource "aws_instance" "example533" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-533" + } +} +resource "aws_instance" "example534" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-534" + } +} +resource "aws_instance" "example535" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-535" + } +} +resource "aws_instance" "example536" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-536" + } +} +resource "aws_instance" "example537" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-537" + } +} +resource "aws_instance" "example538" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-538" + } +} +resource "aws_instance" "example539" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-539" + } +} +resource "aws_instance" "example540" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-540" + } +} +resource "aws_instance" "example541" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-541" + } +} +resource "aws_instance" "example542" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-542" + } +} +resource "aws_instance" "example543" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-543" + } +} +resource "aws_instance" "example544" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-544" + } +} +resource "aws_instance" "example545" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-545" + } +} +resource "aws_instance" "example546" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-546" + } +} +resource "aws_instance" "example547" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-547" + } +} +resource "aws_instance" "example548" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-548" + } +} +resource "aws_instance" "example549" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-549" + } +} +resource "aws_instance" "example550" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-550" + } +} +resource "aws_instance" "example551" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-551" + } +} +resource "aws_instance" "example552" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-552" + } +} +resource "aws_instance" "example553" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-553" + } +} +resource "aws_instance" "example554" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-554" + } +} +resource "aws_instance" "example555" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-555" + } +} +resource "aws_instance" "example556" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-556" + } +} +resource "aws_instance" "example557" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-557" + } +} +resource "aws_instance" "example558" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-558" + } +} +resource "aws_instance" "example559" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-559" + } +} +resource "aws_instance" "example560" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-560" + } +} +resource "aws_instance" "example561" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-561" + } +} +resource "aws_instance" "example562" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-562" + } +} +resource "aws_instance" "example563" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-563" + } +} +resource "aws_instance" "example564" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-564" + } +} +resource "aws_instance" "example565" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-565" + } +} +resource "aws_instance" "example566" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-566" + } +} +resource "aws_instance" "example567" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-567" + } +} +resource "aws_instance" "example568" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-568" + } +} +resource "aws_instance" "example569" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-569" + } +} +resource "aws_instance" "example570" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-570" + } +} +resource "aws_instance" "example571" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-571" + } +} +resource "aws_instance" "example572" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-572" + } +} +resource "aws_instance" "example573" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-573" + } +} +resource "aws_instance" "example574" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-574" + } +} +resource "aws_instance" "example575" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-575" + } +} +resource "aws_instance" "example576" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-576" + } +} +resource "aws_instance" "example577" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-577" + } +} +resource "aws_instance" "example578" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-578" + } +} +resource "aws_instance" "example579" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-579" + } +} +resource "aws_instance" "example580" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-580" + } +} +resource "aws_instance" "example581" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-581" + } +} +resource "aws_instance" "example582" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-582" + } +} +resource "aws_instance" "example583" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-583" + } +} +resource "aws_instance" "example584" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-584" + } +} +resource "aws_instance" "example585" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-585" + } +} +resource "aws_instance" "example586" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-586" + } +} +resource "aws_instance" "example587" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-587" + } +} +resource "aws_instance" "example588" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-588" + } +} +resource "aws_instance" "example589" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-589" + } +} +resource "aws_instance" "example590" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-590" + } +} +resource "aws_instance" "example591" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-591" + } +} +resource "aws_instance" "example592" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-592" + } +} +resource "aws_instance" "example593" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-593" + } +} +resource "aws_instance" "example594" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-594" + } +} +resource "aws_instance" "example595" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-595" + } +} +resource "aws_instance" "example596" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-596" + } +} +resource "aws_instance" "example597" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-597" + } +} +resource "aws_instance" "example598" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-598" + } +} +resource "aws_instance" "example599" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-599" + } +} +resource "aws_instance" "example600" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-600" + } +} +resource "aws_instance" "example601" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-601" + } +} +resource "aws_instance" "example602" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-602" + } +} +resource "aws_instance" "example603" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-603" + } +} +resource "aws_instance" "example604" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-604" + } +} +resource "aws_instance" "example605" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-605" + } +} +resource "aws_instance" "example606" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-606" + } +} +resource "aws_instance" "example607" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-607" + } +} +resource "aws_instance" "example608" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-608" + } +} +resource "aws_instance" "example609" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-609" + } +} +resource "aws_instance" "example610" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-610" + } +} +resource "aws_instance" "example611" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-611" + } +} +resource "aws_instance" "example612" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-612" + } +} +resource "aws_instance" "example613" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-613" + } +} +resource "aws_instance" "example614" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-614" + } +} +resource "aws_instance" "example615" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-615" + } +} +resource "aws_instance" "example616" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-616" + } +} +resource "aws_instance" "example617" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-617" + } +} +resource "aws_instance" "example618" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-618" + } +} +resource "aws_instance" "example619" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-619" + } +} +resource "aws_instance" "example620" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-620" + } +} +resource "aws_instance" "example621" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-621" + } +} +resource "aws_instance" "example622" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-622" + } +} +resource "aws_instance" "example623" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-623" + } +} +resource "aws_instance" "example624" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-624" + } +} +resource "aws_instance" "example625" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-625" + } +} +resource "aws_instance" "example626" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-626" + } +} +resource "aws_instance" "example627" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-627" + } +} +resource "aws_instance" "example628" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-628" + } +} +resource "aws_instance" "example629" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-629" + } +} +resource "aws_instance" "example630" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-630" + } +} +resource "aws_instance" "example631" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-631" + } +} +resource "aws_instance" "example632" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-632" + } +} +resource "aws_instance" "example633" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-633" + } +} +resource "aws_instance" "example634" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-634" + } +} +resource "aws_instance" "example635" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-635" + } +} +resource "aws_instance" "example636" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-636" + } +} +resource "aws_instance" "example637" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-637" + } +} +resource "aws_instance" "example638" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-638" + } +} +resource "aws_instance" "example639" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-639" + } +} +resource "aws_instance" "example640" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-640" + } +} +resource "aws_instance" "example641" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-641" + } +} +resource "aws_instance" "example642" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-642" + } +} +resource "aws_instance" "example643" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-643" + } +} +resource "aws_instance" "example644" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-644" + } +} +resource "aws_instance" "example645" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-645" + } +} +resource "aws_instance" "example646" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-646" + } +} +resource "aws_instance" "example647" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-647" + } +} +resource "aws_instance" "example648" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-648" + } +} +resource "aws_instance" "example649" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-649" + } +} +resource "aws_instance" "example650" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-650" + } +} +resource "aws_instance" "example651" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-651" + } +} +resource "aws_instance" "example652" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-652" + } +} +resource "aws_instance" "example653" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-653" + } +} +resource "aws_instance" "example654" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-654" + } +} +resource "aws_instance" "example655" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-655" + } +} +resource "aws_instance" "example656" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-656" + } +} +resource "aws_instance" "example657" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-657" + } +} +resource "aws_instance" "example658" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-658" + } +} +resource "aws_instance" "example659" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-659" + } +} +resource "aws_instance" "example660" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-660" + } +} +resource "aws_instance" "example661" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-661" + } +} +resource "aws_instance" "example662" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-662" + } +} +resource "aws_instance" "example663" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-663" + } +} +resource "aws_instance" "example664" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-664" + } +} +resource "aws_instance" "example665" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-665" + } +} +resource "aws_instance" "example666" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-666" + } +} +resource "aws_instance" "example667" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-667" + } +} +resource "aws_instance" "example668" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-668" + } +} +resource "aws_instance" "example669" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-669" + } +} +resource "aws_instance" "example670" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-670" + } +} +resource "aws_instance" "example671" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-671" + } +} +resource "aws_instance" "example672" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-672" + } +} +resource "aws_instance" "example673" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-673" + } +} +resource "aws_instance" "example674" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-674" + } +} +resource "aws_instance" "example675" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-675" + } +} +resource "aws_instance" "example676" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-676" + } +} +resource "aws_instance" "example677" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-677" + } +} +resource "aws_instance" "example678" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-678" + } +} +resource "aws_instance" "example679" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-679" + } +} +resource "aws_instance" "example680" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-680" + } +} +resource "aws_instance" "example681" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-681" + } +} +resource "aws_instance" "example682" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-682" + } +} +resource "aws_instance" "example683" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-683" + } +} +resource "aws_instance" "example684" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-684" + } +} +resource "aws_instance" "example685" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-685" + } +} +resource "aws_instance" "example686" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-686" + } +} +resource "aws_instance" "example687" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-687" + } +} +resource "aws_instance" "example688" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-688" + } +} +resource "aws_instance" "example689" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-689" + } +} +resource "aws_instance" "example690" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-690" + } +} +resource "aws_instance" "example691" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-691" + } +} +resource "aws_instance" "example692" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-692" + } +} +resource "aws_instance" "example693" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-693" + } +} +resource "aws_instance" "example694" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-694" + } +} +resource "aws_instance" "example695" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-695" + } +} +resource "aws_instance" "example696" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-696" + } +} +resource "aws_instance" "example697" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-697" + } +} +resource "aws_instance" "example698" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-698" + } +} +resource "aws_instance" "example699" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-699" + } +} +resource "aws_instance" "example700" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-700" + } +} +resource "aws_instance" "example701" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-701" + } +} +resource "aws_instance" "example702" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-702" + } +} +resource "aws_instance" "example703" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-703" + } +} +resource "aws_instance" "example704" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-704" + } +} +resource "aws_instance" "example705" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-705" + } +} +resource "aws_instance" "example706" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-706" + } +} +resource "aws_instance" "example707" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-707" + } +} +resource "aws_instance" "example708" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-708" + } +} +resource "aws_instance" "example709" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-709" + } +} +resource "aws_instance" "example710" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-710" + } +} +resource "aws_instance" "example711" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-711" + } +} +resource "aws_instance" "example712" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-712" + } +} +resource "aws_instance" "example713" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-713" + } +} +resource "aws_instance" "example714" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-714" + } +} +resource "aws_instance" "example715" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-715" + } +} +resource "aws_instance" "example716" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-716" + } +} +resource "aws_instance" "example717" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-717" + } +} +resource "aws_instance" "example718" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-718" + } +} +resource "aws_instance" "example719" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-719" + } +} +resource "aws_instance" "example720" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-720" + } +} +resource "aws_instance" "example721" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-721" + } +} +resource "aws_instance" "example722" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-722" + } +} +resource "aws_instance" "example723" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-723" + } +} +resource "aws_instance" "example724" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-724" + } +} +resource "aws_instance" "example725" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-725" + } +} +resource "aws_instance" "example726" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-726" + } +} +resource "aws_instance" "example727" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-727" + } +} +resource "aws_instance" "example728" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-728" + } +} +resource "aws_instance" "example729" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-729" + } +} +resource "aws_instance" "example730" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-730" + } +} +resource "aws_instance" "example731" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-731" + } +} +resource "aws_instance" "example732" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-732" + } +} +resource "aws_instance" "example733" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-733" + } +} +resource "aws_instance" "example734" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-734" + } +} +resource "aws_instance" "example735" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-735" + } +} +resource "aws_instance" "example736" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-736" + } +} +resource "aws_instance" "example737" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-737" + } +} +resource "aws_instance" "example738" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-738" + } +} +resource "aws_instance" "example739" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-739" + } +} +resource "aws_instance" "example740" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-740" + } +} +resource "aws_instance" "example741" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-741" + } +} +resource "aws_instance" "example742" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-742" + } +} +resource "aws_instance" "example743" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-743" + } +} +resource "aws_instance" "example744" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-744" + } +} +resource "aws_instance" "example745" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-745" + } +} +resource "aws_instance" "example746" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-746" + } +} +resource "aws_instance" "example747" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-747" + } +} +resource "aws_instance" "example748" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-748" + } +} +resource "aws_instance" "example749" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-749" + } +} +resource "aws_instance" "example750" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-750" + } +} +resource "aws_instance" "example751" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-751" + } +} +resource "aws_instance" "example752" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-752" + } +} +resource "aws_instance" "example753" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-753" + } +} +resource "aws_instance" "example754" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-754" + } +} +resource "aws_instance" "example755" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-755" + } +} +resource "aws_instance" "example756" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-756" + } +} +resource "aws_instance" "example757" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-757" + } +} +resource "aws_instance" "example758" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-758" + } +} +resource "aws_instance" "example759" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-759" + } +} +resource "aws_instance" "example760" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-760" + } +} +resource "aws_instance" "example761" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-761" + } +} +resource "aws_instance" "example762" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-762" + } +} +resource "aws_instance" "example763" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-763" + } +} +resource "aws_instance" "example764" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-764" + } +} +resource "aws_instance" "example765" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-765" + } +} +resource "aws_instance" "example766" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-766" + } +} +resource "aws_instance" "example767" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-767" + } +} +resource "aws_instance" "example768" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-768" + } +} +resource "aws_instance" "example769" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-769" + } +} +resource "aws_instance" "example770" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-770" + } +} +resource "aws_instance" "example771" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-771" + } +} +resource "aws_instance" "example772" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-772" + } +} +resource "aws_instance" "example773" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-773" + } +} +resource "aws_instance" "example774" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-774" + } +} +resource "aws_instance" "example775" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-775" + } +} +resource "aws_instance" "example776" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-776" + } +} +resource "aws_instance" "example777" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-777" + } +} +resource "aws_instance" "example778" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-778" + } +} +resource "aws_instance" "example779" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-779" + } +} +resource "aws_instance" "example780" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-780" + } +} +resource "aws_instance" "example781" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-781" + } +} +resource "aws_instance" "example782" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-782" + } +} +resource "aws_instance" "example783" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-783" + } +} +resource "aws_instance" "example784" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-784" + } +} +resource "aws_instance" "example785" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-785" + } +} +resource "aws_instance" "example786" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-786" + } +} +resource "aws_instance" "example787" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-787" + } +} +resource "aws_instance" "example788" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-788" + } +} +resource "aws_instance" "example789" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-789" + } +} +resource "aws_instance" "example790" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-790" + } +} +resource "aws_instance" "example791" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-791" + } +} +resource "aws_instance" "example792" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-792" + } +} +resource "aws_instance" "example793" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-793" + } +} +resource "aws_instance" "example794" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-794" + } +} +resource "aws_instance" "example795" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-795" + } +} +resource "aws_instance" "example796" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-796" + } +} +resource "aws_instance" "example797" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-797" + } +} +resource "aws_instance" "example798" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-798" + } +} +resource "aws_instance" "example799" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-799" + } +} +resource "aws_instance" "example800" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-800" + } +} +resource "aws_instance" "example801" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-801" + } +} +resource "aws_instance" "example802" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-802" + } +} +resource "aws_instance" "example803" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-803" + } +} +resource "aws_instance" "example804" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-804" + } +} +resource "aws_instance" "example805" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-805" + } +} +resource "aws_instance" "example806" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-806" + } +} +resource "aws_instance" "example807" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-807" + } +} +resource "aws_instance" "example808" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-808" + } +} +resource "aws_instance" "example809" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-809" + } +} +resource "aws_instance" "example810" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-810" + } +} +resource "aws_instance" "example811" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-811" + } +} +resource "aws_instance" "example812" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-812" + } +} +resource "aws_instance" "example813" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-813" + } +} +resource "aws_instance" "example814" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-814" + } +} +resource "aws_instance" "example815" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-815" + } +} +resource "aws_instance" "example816" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-816" + } +} +resource "aws_instance" "example817" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-817" + } +} +resource "aws_instance" "example818" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-818" + } +} +resource "aws_instance" "example819" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-819" + } +} +resource "aws_instance" "example820" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-820" + } +} +resource "aws_instance" "example821" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-821" + } +} +resource "aws_instance" "example822" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-822" + } +} +resource "aws_instance" "example823" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-823" + } +} +resource "aws_instance" "example824" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-824" + } +} +resource "aws_instance" "example825" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-825" + } +} +resource "aws_instance" "example826" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-826" + } +} +resource "aws_instance" "example827" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-827" + } +} +resource "aws_instance" "example828" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-828" + } +} +resource "aws_instance" "example829" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-829" + } +} +resource "aws_instance" "example830" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-830" + } +} +resource "aws_instance" "example831" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-831" + } +} +resource "aws_instance" "example832" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-832" + } +} +resource "aws_instance" "example833" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-833" + } +} +resource "aws_instance" "example834" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-834" + } +} +resource "aws_instance" "example835" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-835" + } +} +resource "aws_instance" "example836" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-836" + } +} +resource "aws_instance" "example837" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-837" + } +} +resource "aws_instance" "example838" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-838" + } +} +resource "aws_instance" "example839" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-839" + } +} +resource "aws_instance" "example840" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-840" + } +} +resource "aws_instance" "example841" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-841" + } +} +resource "aws_instance" "example842" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-842" + } +} +resource "aws_instance" "example843" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-843" + } +} +resource "aws_instance" "example844" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-844" + } +} +resource "aws_instance" "example845" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-845" + } +} +resource "aws_instance" "example846" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-846" + } +} +resource "aws_instance" "example847" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-847" + } +} +resource "aws_instance" "example848" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-848" + } +} +resource "aws_instance" "example849" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-849" + } +} +resource "aws_instance" "example850" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-850" + } +} +resource "aws_instance" "example851" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-851" + } +} +resource "aws_instance" "example852" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-852" + } +} +resource "aws_instance" "example853" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-853" + } +} +resource "aws_instance" "example854" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-854" + } +} +resource "aws_instance" "example855" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-855" + } +} +resource "aws_instance" "example856" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-856" + } +} +resource "aws_instance" "example857" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-857" + } +} +resource "aws_instance" "example858" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-858" + } +} +resource "aws_instance" "example859" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-859" + } +} +resource "aws_instance" "example860" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-860" + } +} +resource "aws_instance" "example861" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-861" + } +} +resource "aws_instance" "example862" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-862" + } +} +resource "aws_instance" "example863" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-863" + } +} +resource "aws_instance" "example864" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-864" + } +} +resource "aws_instance" "example865" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-865" + } +} +resource "aws_instance" "example866" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-866" + } +} +resource "aws_instance" "example867" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-867" + } +} +resource "aws_instance" "example868" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-868" + } +} +resource "aws_instance" "example869" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-869" + } +} +resource "aws_instance" "example870" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-870" + } +} +resource "aws_instance" "example871" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-871" + } +} +resource "aws_instance" "example872" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-872" + } +} +resource "aws_instance" "example873" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-873" + } +} +resource "aws_instance" "example874" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-874" + } +} +resource "aws_instance" "example875" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-875" + } +} +resource "aws_instance" "example876" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-876" + } +} +resource "aws_instance" "example877" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-877" + } +} +resource "aws_instance" "example878" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-878" + } +} +resource "aws_instance" "example879" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-879" + } +} +resource "aws_instance" "example880" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-880" + } +} +resource "aws_instance" "example881" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-881" + } +} +resource "aws_instance" "example882" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-882" + } +} +resource "aws_instance" "example883" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-883" + } +} +resource "aws_instance" "example884" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-884" + } +} +resource "aws_instance" "example885" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-885" + } +} +resource "aws_instance" "example886" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-886" + } +} +resource "aws_instance" "example887" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-887" + } +} +resource "aws_instance" "example888" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-888" + } +} +resource "aws_instance" "example889" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-889" + } +} +resource "aws_instance" "example890" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-890" + } +} +resource "aws_instance" "example891" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-891" + } +} +resource "aws_instance" "example892" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-892" + } +} +resource "aws_instance" "example893" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-893" + } +} +resource "aws_instance" "example894" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-894" + } +} +resource "aws_instance" "example895" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-895" + } +} +resource "aws_instance" "example896" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-896" + } +} +resource "aws_instance" "example897" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-897" + } +} +resource "aws_instance" "example898" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-898" + } +} +resource "aws_instance" "example899" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-899" + } +} +resource "aws_instance" "example900" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-900" + } +} +resource "aws_instance" "example901" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-901" + } +} +resource "aws_instance" "example902" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-902" + } +} +resource "aws_instance" "example903" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-903" + } +} +resource "aws_instance" "example904" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-904" + } +} +resource "aws_instance" "example905" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-905" + } +} +resource "aws_instance" "example906" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-906" + } +} +resource "aws_instance" "example907" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-907" + } +} +resource "aws_instance" "example908" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-908" + } +} +resource "aws_instance" "example909" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-909" + } +} +resource "aws_instance" "example910" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-910" + } +} +resource "aws_instance" "example911" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-911" + } +} +resource "aws_instance" "example912" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-912" + } +} +resource "aws_instance" "example913" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-913" + } +} +resource "aws_instance" "example914" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-914" + } +} +resource "aws_instance" "example915" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-915" + } +} +resource "aws_instance" "example916" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-916" + } +} +resource "aws_instance" "example917" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-917" + } +} +resource "aws_instance" "example918" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-918" + } +} +resource "aws_instance" "example919" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-919" + } +} +resource "aws_instance" "example920" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-920" + } +} +resource "aws_instance" "example921" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-921" + } +} +resource "aws_instance" "example922" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-922" + } +} +resource "aws_instance" "example923" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-923" + } +} +resource "aws_instance" "example924" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-924" + } +} +resource "aws_instance" "example925" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-925" + } +} +resource "aws_instance" "example926" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-926" + } +} +resource "aws_instance" "example927" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-927" + } +} +resource "aws_instance" "example928" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-928" + } +} +resource "aws_instance" "example929" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-929" + } +} +resource "aws_instance" "example930" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-930" + } +} +resource "aws_instance" "example931" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-931" + } +} +resource "aws_instance" "example932" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-932" + } +} +resource "aws_instance" "example933" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-933" + } +} +resource "aws_instance" "example934" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-934" + } +} +resource "aws_instance" "example935" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-935" + } +} +resource "aws_instance" "example936" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-936" + } +} +resource "aws_instance" "example937" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-937" + } +} +resource "aws_instance" "example938" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-938" + } +} +resource "aws_instance" "example939" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-939" + } +} +resource "aws_instance" "example940" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-940" + } +} +resource "aws_instance" "example941" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-941" + } +} +resource "aws_instance" "example942" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-942" + } +} +resource "aws_instance" "example943" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-943" + } +} +resource "aws_instance" "example944" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-944" + } +} +resource "aws_instance" "example945" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-945" + } +} +resource "aws_instance" "example946" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-946" + } +} +resource "aws_instance" "example947" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-947" + } +} +resource "aws_instance" "example948" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-948" + } +} +resource "aws_instance" "example949" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-949" + } +} +resource "aws_instance" "example950" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-950" + } +} +resource "aws_instance" "example951" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-951" + } +} +resource "aws_instance" "example952" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-952" + } +} +resource "aws_instance" "example953" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-953" + } +} +resource "aws_instance" "example954" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-954" + } +} +resource "aws_instance" "example955" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-955" + } +} +resource "aws_instance" "example956" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-956" + } +} +resource "aws_instance" "example957" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-957" + } +} +resource "aws_instance" "example958" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-958" + } +} +resource "aws_instance" "example959" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-959" + } +} +resource "aws_instance" "example960" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-960" + } +} +resource "aws_instance" "example961" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-961" + } +} +resource "aws_instance" "example962" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-962" + } +} +resource "aws_instance" "example963" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-963" + } +} +resource "aws_instance" "example964" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-964" + } +} +resource "aws_instance" "example965" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-965" + } +} +resource "aws_instance" "example966" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-966" + } +} +resource "aws_instance" "example967" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-967" + } +} +resource "aws_instance" "example968" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-968" + } +} +resource "aws_instance" "example969" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-969" + } +} +resource "aws_instance" "example970" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-970" + } +} +resource "aws_instance" "example971" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-971" + } +} +resource "aws_instance" "example972" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-972" + } +} +resource "aws_instance" "example973" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-973" + } +} +resource "aws_instance" "example974" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-974" + } +} +resource "aws_instance" "example975" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-975" + } +} +resource "aws_instance" "example976" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-976" + } +} +resource "aws_instance" "example977" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-977" + } +} +resource "aws_instance" "example978" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-978" + } +} +resource "aws_instance" "example979" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-979" + } +} +resource "aws_instance" "example980" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-980" + } +} +resource "aws_instance" "example981" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-981" + } +} +resource "aws_instance" "example982" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-982" + } +} +resource "aws_instance" "example983" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-983" + } +} +resource "aws_instance" "example984" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-984" + } +} +resource "aws_instance" "example985" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-985" + } +} +resource "aws_instance" "example986" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-986" + } +} +resource "aws_instance" "example987" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-987" + } +} +resource "aws_instance" "example988" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-988" + } +} +resource "aws_instance" "example989" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-989" + } +} +resource "aws_instance" "example990" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-990" + } +} +resource "aws_instance" "example991" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-991" + } +} +resource "aws_instance" "example992" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-992" + } +} +resource "aws_instance" "example993" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-993" + } +} +resource "aws_instance" "example994" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-994" + } +} +resource "aws_instance" "example995" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-995" + } +} +resource "aws_instance" "example996" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-996" + } +} +resource "aws_instance" "example997" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-997" + } +} +resource "aws_instance" "example998" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-998" + } +} +resource "aws_instance" "example999" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-999" + } +} +resource "aws_instance" "example1000" { + ami = "ami-0c94855ba95c574c8" + instance_type = "t2.micro" + key_name = aws_key_pair.deployer.key_name + + tags = { + Name = "example-instance-1000" + } +} + + diff --git a/e2e/testcases/e2e-cli-086_parallel_scan_default.go b/e2e/testcases/e2e-cli-086_parallel_scan_default.go new file mode 100644 index 00000000000..f37dd8fd9b1 --- /dev/null +++ b/e2e/testcases/e2e-cli-086_parallel_scan_default.go @@ -0,0 +1,27 @@ +package testcases + +// E2E-CLI-086 - KICS scan +// should perform a scan, finishing successfully and return exit code 0 +func init() { //nolint + testSample := TestCase{ + Name: "should perform a scan and finish successfully [E2E-CLI-086]", + Args: args{ + Args: []cmdArgs{ + []string{"scan", "-o", "/path/e2e/output", + "--output-name", "E2E_CLI_086_RESULT", + "-p", "\"/path/e2e/fixtures/samples/terraform.tf\"", + "--parallel", "0", + }, + }, + ExpectedResult: []ResultsValidation{ + { + ResultsFile: "E2E_CLI_086_RESULT", + ResultsFormats: []string{"json"}, + }, + }, + }, + WantStatus: []int{50}, + } + + Tests = append(Tests, testSample) +} diff --git a/e2e/testcases/e2e-cli-087_parallel_scan_sequential.go b/e2e/testcases/e2e-cli-087_parallel_scan_sequential.go new file mode 100644 index 00000000000..45d569e045b --- /dev/null +++ b/e2e/testcases/e2e-cli-087_parallel_scan_sequential.go @@ -0,0 +1,27 @@ +package testcases + +// E2E-CLI-087 - KICS scan +// should perform a scan, finishing successfully and return exit code 0 +func init() { //nolint + testSample := TestCase{ + Name: "should perform a scan and finish successfully [E2E-CLI-087]", + Args: args{ + Args: []cmdArgs{ + []string{"scan", "-o", "/path/e2e/output", + "--output-name", "E2E_CLI_087_RESULT", + "-p", "\"/path/e2e/fixtures/samples/terraform.tf\"", + "--parallel", "1", + }, + }, + ExpectedResult: []ResultsValidation{ + { + ResultsFile: "E2E_CLI_087_RESULT", + ResultsFormats: []string{"json"}, + }, + }, + }, + WantStatus: []int{50}, + } + + Tests = append(Tests, testSample) +} diff --git a/e2e/testcases/e2e-cli-088_parallel_scan_6_workers.go b/e2e/testcases/e2e-cli-088_parallel_scan_6_workers.go new file mode 100644 index 00000000000..7d05e3d17d7 --- /dev/null +++ b/e2e/testcases/e2e-cli-088_parallel_scan_6_workers.go @@ -0,0 +1,27 @@ +package testcases + +// E2E-CLI-088 - KICS scan +// should perform a scan, finishing successfully and return exit code 0 +func init() { //nolint + testSample := TestCase{ + Name: "should perform a scan and finish successfully [E2E-CLI-088]", + Args: args{ + Args: []cmdArgs{ + []string{"scan", "-o", "/path/e2e/output", + "--output-name", "E2E_CLI_088_RESULT", + "-p", "\"/path/e2e/fixtures/samples/terraform.tf\"", + "--parallel", "6", + }, + }, + ExpectedResult: []ResultsValidation{ + { + ResultsFile: "E2E_CLI_088_RESULT", + ResultsFormats: []string{"json"}, + }, + }, + }, + WantStatus: []int{50}, + } + + Tests = append(Tests, testSample) +} diff --git a/internal/console/assets/scan-flags.json b/internal/console/assets/scan-flags.json index 81422eccdcf..abd6f955c15 100644 --- a/internal/console/assets/scan-flags.json +++ b/internal/console/assets/scan-flags.json @@ -209,6 +209,13 @@ "defaultValue": "false", "usage": "resolve the file reference, on OpenAPI files" }, + "parallel": { + "flagType": "int", + "shorthandFlag": "", + "defaultValue": "1", + "usage": "number of workers per platform enabled for parallel scanning, set 0 to auto-detect parallelism", + "validation": "validateWorkersFlag" + }, "max-file-size": { "flagType": "int", "shorthandFlag": "", diff --git a/internal/console/flags/scan_flags.go b/internal/console/flags/scan_flags.go index 3a9a9c4677b..933e66d36f1 100644 --- a/internal/console/flags/scan_flags.go +++ b/internal/console/flags/scan_flags.go @@ -35,5 +35,6 @@ const ( SecretsRegexesPathFlag = "secrets-regexes-path" //nolint:gosec ExcludeGitIgnore = "exclude-gitignore" OpenAPIReferencesFlag = "enable-openapi-refs" + ParallelScanFile = "parallel" MaxFileSizeFlag = "max-file-size" ) diff --git a/internal/console/flags/validate.go b/internal/console/flags/validate.go index 8b4322b92d9..275464f6426 100644 --- a/internal/console/flags/validate.go +++ b/internal/console/flags/validate.go @@ -9,6 +9,7 @@ var flagValidationFuncs = flagValidationFuncsMap{ "validateMultiStrEnum": validateMultiStrEnum, "validateStrEnum": validateStrEnum, "allQueriesID": allQueriesID, + "validateWorkersFlag": validateWorkersFlag, "validatePath": validatePath, } diff --git a/internal/console/flags/validate_multi_str.go b/internal/console/flags/validate_multi_str.go index 1e9d19db6b2..940bdf8aad4 100644 --- a/internal/console/flags/validate_multi_str.go +++ b/internal/console/flags/validate_multi_str.go @@ -3,7 +3,9 @@ package flags import ( "fmt" "regexp" + "runtime" "strings" + "time" "github.com/Checkmarx/kics/internal/console/helpers" "github.com/Checkmarx/kics/internal/constants" @@ -65,3 +67,17 @@ func validateMultiStrEnum(flagName string) error { } return nil } + +func validateWorkersFlag(flagName string) error { + workers := GetIntFlag(flagName) + if workers < 0 { + return fmt.Errorf("invalid argument --%s: value must be greater or equal to 0", flagName) + } + if workers > runtime.GOMAXPROCS(-1) { + now := time.Now() + timeStr := now.Format("03:04PM") + fmt.Println("\x1b[90m" + timeStr + " \x1b[31mWRN\x1b[0m Number of workers is greater than the number of logical CPUs") + return nil + } + return nil +} diff --git a/internal/console/flags/validate_multi_str_test.go b/internal/console/flags/validate_multi_str_test.go index 4975dd15278..b3cde89d23f 100644 --- a/internal/console/flags/validate_multi_str_test.go +++ b/internal/console/flags/validate_multi_str_test.go @@ -123,3 +123,42 @@ func TestFlags_allQueriesID(t *testing.T) { }) } } + +func TestFlags_ValidateWorkersFlag(t *testing.T) { + tests := []struct { + name string + flagName string + flagValue int + wantErr bool + }{ + { + name: "should execute fine", + flagName: "parallel", + flagValue: 1, + wantErr: false, + }, + { + name: "should execute fine", + flagName: "parallel", + flagValue: 0, + wantErr: false, + }, + { + name: "should return an error when an the number of workers is less than 0", + flagName: "parallel", + flagValue: -1, + wantErr: true, + }, + } + for _, test := range tests { + flagsIntReferences[test.flagName] = &test.flagValue + t.Run(test.name, func(t *testing.T) { + gotErr := validateWorkersFlag(test.flagName) + if !test.wantErr { + require.NoError(t, gotErr) + } else { + require.Error(t, gotErr) + } + }) + } +} diff --git a/internal/console/kics_test.go b/internal/console/kics_test.go index 410821410e1..ce1dff02302 100644 --- a/internal/console/kics_test.go +++ b/internal/console/kics_test.go @@ -2,9 +2,12 @@ package console import ( "fmt" + "github.com/stretchr/testify/require" "os" "path/filepath" + "runtime" "testing" + "time" ) func TestConsole_Execute(t *testing.T) { //nolint @@ -248,6 +251,66 @@ func TestConsole_Execute(t *testing.T) { //nolint } } +func TestScanPerformance(t *testing.T) { //nolint + + tests := []struct { + name string + firstExecArgs []string + secondExecArgs []string + }{ + { + name: "test_kics", + firstExecArgs: []string{"kics", + "scan", + "--disable-secrets", "-s", + "--path", filepath.FromSlash("../../e2e/fixtures/samples/long_terraform.tf"), + "-q", + filepath.FromSlash("../../assets/queries/"), + "--ignore-on-exit", "all", + }, + secondExecArgs: []string{"kics", + "scan", + "--disable-secrets", "-s", + "--path", filepath.FromSlash("../../e2e/fixtures/samples/long_terraform.tf"), + "-q", + filepath.FromSlash("../../assets/queries/"), + "--ignore-on-exit", "all", + "--parallel", "0", + }, + }, + } + + for _, tt := range tests { + //check the number of cpus available - if it's 1, then skip this test + numCPUs := runtime.GOMAXPROCS(-1) + if numCPUs == 1 { + t.Skip("Skipping test since only 1 cpu available") + } + t.Run(tt.name, func(t *testing.T) { + //calling the command with a silent mode would nullify the standard output + tmpStdout := os.Stdout + defer func() { os.Stdout = tmpStdout }() + os.Args = tt.firstExecArgs + startTime1Worker := time.Now() + err := Execute() + elapsedTime1Worker := time.Since(startTime1Worker) + t.Logf("Time taken with numWorkers=1: %s\n", elapsedTime1Worker) + if err != nil { + t.Errorf("Execute() = %v", err) + } + os.Args = tt.secondExecArgs + startTime2Workers := time.Now() + err = Execute() + elapsedTimeMultiWorkers := time.Since(startTime2Workers) + t.Logf("Time taken with numWorkers=%d: %s\n", numCPUs, elapsedTimeMultiWorkers) + if err != nil { + t.Errorf("Execute() = %v", err) + } + require.Greater(t, elapsedTime1Worker, elapsedTimeMultiWorkers) + }) + } +} + func rewriteRemediateTestFile() error { d1 := []byte("resource \"alicloud_ram_account_password_policy\" \"corporate1\" {\n\t\trequire_lowercase_characters = false\n\t\trequire_uppercase_characters = false\n\t\trequire_numbers = false\n\t\trequire_symbols = false\n\t\thard_expiry = true\n\t\tpassword_reuse_prevention = 5\n\t\tmax_login_attempts = 3\n\t}\n\nresource \"alicloud_ram_account_password_policy\" \"corporate2\" {\n\t\tminimum_password_length = 14\n\t\trequire_lowercase_characters = false\n\t\trequire_uppercase_characters = false\n\t\trequire_numbers = false\n\t\trequire_symbols = false\n\t\thard_expiry = true\n\t\tpassword_reuse_prevention = 5\n\t\tmax_login_attempts = 3\n\t}") err := os.WriteFile(filepath.FromSlash("../../test/assets/auto_remediation_sample.tf"), d1, 0666) diff --git a/internal/console/scan.go b/internal/console/scan.go index ae4fe9191eb..76f9db7b1da 100644 --- a/internal/console/scan.go +++ b/internal/console/scan.go @@ -140,6 +140,7 @@ func getScanParameters(changedDefaultQueryPath, changedDefaultLibrariesPath bool BillOfMaterials: flags.GetBoolFlag(flags.BomFlag), ExcludeGitIgnore: flags.GetBoolFlag(flags.ExcludeGitIgnore), OpenAPIResolveReferences: flags.GetBoolFlag(flags.OpenAPIReferencesFlag), + ParallelScanFlag: flags.GetIntFlag(flags.ParallelScanFile), MaxFileSizeFlag: flags.GetIntFlag(flags.MaxFileSizeFlag), } @@ -149,10 +150,6 @@ func getScanParameters(changedDefaultQueryPath, changedDefaultLibrariesPath bool func executeScan(scanParams *scan.Parameters) error { log.Debug().Msg("console.scan()") - for _, warn := range warnings { - log.Warn().Msgf(warn) - } - console := newConsole() console.preScan() diff --git a/path/e2e/output/E2E_CLI_086_RESULT.json b/path/e2e/output/E2E_CLI_086_RESULT.json new file mode 100644 index 00000000000..0981deb1a19 --- /dev/null +++ b/path/e2e/output/E2E_CLI_086_RESULT.json @@ -0,0 +1,370 @@ +{ + "kics_version": "development", + "files_scanned": 1, + "lines_scanned": 19, + "files_parsed": 1, + "lines_parsed": 19, + "lines_ignored": 0, + "files_failed_to_scan": 0, + "queries_total": 1045, + "queries_failed_to_execute": 0, + "queries_failed_to_compute_similarity_id": 0, + "scan_id": "console", + "severity_counters": { + "HIGH": 6, + "INFO": 2, + "LOW": 3, + "MEDIUM": 6, + "TRACE": 0 + }, + "total_counter": 17, + "total_bom_resources": 0, + "start": "2024-02-26T10:44:18.4750254Z", + "end": "2024-02-26T10:44:47.1874587Z", + "paths": [ + "e2e/fixtures/samples/terraform.tf" + ], + "queries": [ + { + "query_name": "Passwords And Secrets - Generic Password", + "query_id": "487f4be7-3fd9-4506-a07a-eae252180c08", + "query_url": "https://docs.kics.io/latest/secrets/", + "severity": "HIGH", + "platform": "Common", + "cloud_provider": "COMMON", + "category": "Secret Management", + "experimental": false, + "description": "Query to find passwords and secrets in infrastructure code.", + "description_id": "d69d8a89", + "files": [ + { + "file_name": "e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "9e26d1ce4d2e0f7fa9b77195bd329f18c135b946ba74a13bc05a289dfc3455f1", + "line": 5, + "issue_type": "RedundantAttribute", + "search_key": "", + "search_line": 0, + "search_value": "", + "expected_value": "Hardcoded secret key should not appear in source", + "actual_value": "Hardcoded secret key appears in source" + }, + { + "file_name": "e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "d6a018d85a93d338ed89c82b791f30c1913eff5e743f67cfa52176f5135aea2b", + "line": 14, + "issue_type": "RedundantAttribute", + "search_key": "", + "search_line": 0, + "search_value": "", + "expected_value": "Hardcoded secret key should not appear in source", + "actual_value": "Hardcoded secret key appears in source" + } + ] + }, + { + "query_name": "Redshift Not Encrypted", + "query_id": "cfdcabb0-fc06-427c-865b-c59f13e898ce", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/redshift_cluster#encrypted", + "severity": "HIGH", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Encryption", + "experimental": false, + "description": "AWS Redshift Cluster should be encrypted. Check if 'encrypted' field is false or undefined (default is false)", + "description_id": "2bee4895", + "files": [ + { + "file_name": "e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "bd00cd9cd4edd1015d1a1e89f98bdd8128cdaa51456e605ca2c29bd64888efcd", + "line": 1, + "resource_type": "aws_redshift_cluster", + "resource_name": "default", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default]", + "search_line": 1, + "search_value": "", + "expected_value": "aws_redshift_cluster.encrypted should be defined and not null", + "actual_value": "aws_redshift_cluster.encrypted is undefined or null", + "remediation": "encrypted = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "a5941ee6cc25be94d6a2dfc73fd602e587638d6ad6caf188c09c374b77283917", + "line": 10, + "resource_type": "aws_redshift_cluster", + "resource_name": "default1", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default1]", + "search_line": 10, + "search_value": "", + "expected_value": "aws_redshift_cluster.encrypted should be defined and not null", + "actual_value": "aws_redshift_cluster.encrypted is undefined or null", + "remediation": "encrypted = true", + "remediation_type": "addition" + } + ] + }, + { + "query_name": "Redshift Publicly Accessible", + "query_id": "af173fde-95ea-4584-b904-bb3923ac4bda", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/redshift_cluster", + "severity": "HIGH", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Insecure Configurations", + "experimental": false, + "description": "AWS Redshift Clusters must not be publicly accessible. Check if 'publicly_accessible' field is true or undefined (default is true)", + "description_id": "9a581503", + "files": [ + { + "file_name": "e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "4234052fbe1fed19a465cec7fbed9eb156c22eeae7d97c3ac8096bcc7b39a2fe", + "line": 1, + "resource_type": "aws_redshift_cluster", + "resource_name": "default", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default]", + "search_line": -1, + "search_value": "", + "expected_value": "aws_redshift_cluster.publicly_accessible should be defined and not null", + "actual_value": "aws_redshift_cluster.publicly_accessible is undefined or null", + "remediation": "publicly_accessible = false", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "7ae2741fb3c480c38776368fbe21412672c6458d490e4648eb1ad1aadc24a741", + "line": 17, + "resource_type": "aws_redshift_cluster", + "resource_name": "default1", + "issue_type": "IncorrectValue", + "search_key": "aws_redshift_cluster[default1].publicly_accessible", + "search_line": -1, + "search_value": "", + "expected_value": "aws_redshift_cluster.publicly_accessible should be set to false", + "actual_value": "aws_redshift_cluster.publicly_accessible is true", + "remediation": "{\"after\":\"false\",\"before\":\"true\"}", + "remediation_type": "replacement" + } + ] + }, + { + "query_name": "Redshift Cluster Logging Disabled", + "query_id": "15ffbacc-fa42-4f6f-a57d-2feac7365caa", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/redshift_cluster#enable", + "severity": "MEDIUM", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Observability", + "experimental": false, + "description": "Make sure Logging is enabled for Redshift Cluster", + "description_id": "458fe7a3", + "files": [ + { + "file_name": "e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "65c5c77aa946123a3434e2508fa5f8c6d37412fd55f4adc3d04b22d7b820822b", + "line": 10, + "resource_type": "aws_redshift_cluster", + "resource_name": "default1", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default1]", + "search_line": 10, + "search_value": "", + "expected_value": "'aws_redshift_cluster.logging' should be true", + "actual_value": "'aws_redshift_cluster.logging' is undefined", + "remediation": "logging {\n\t\tenable = true \n\t}", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "225c40e04fe9ac2285e2e47a448c8159cde8561762989f936c5cc6967977f664", + "line": 1, + "resource_type": "aws_redshift_cluster", + "resource_name": "default", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default]", + "search_line": 1, + "search_value": "", + "expected_value": "'aws_redshift_cluster.logging' should be true", + "actual_value": "'aws_redshift_cluster.logging' is undefined", + "remediation": "logging {\n\t\tenable = true \n\t}", + "remediation_type": "addition" + } + ] + }, + { + "query_name": "Redshift Cluster Without VPC", + "query_id": "0a494a6a-ebe2-48a0-9d77-cf9d5125e1b3", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/redshift_cluster#vpc_security_group_ids", + "severity": "MEDIUM", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Insecure Configurations", + "experimental": false, + "description": "Redshift Cluster should be configured in VPC (Virtual Private Cloud)", + "description_id": "6fd531fa", + "files": [ + { + "file_name": "e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "83461a5eac8fed2264fac68a6d352d1ed752867a9b0a131afa9ba7e366159b59", + "line": 10, + "resource_type": "aws_redshift_cluster", + "resource_name": "default1", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default1]", + "search_line": -1, + "search_value": "vpc_security_group_ids", + "expected_value": "aws_redshift_cluster[default1].vpc_security_group_ids should be set", + "actual_value": "aws_redshift_cluster[default1].vpc_security_group_ids is undefined" + }, + { + "file_name": "e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "c703e26654dc3e9da1ad3519663f38aed2a29e629b4342f9e75af464a07699e0", + "line": 1, + "resource_type": "aws_redshift_cluster", + "resource_name": "default", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default]", + "search_line": -1, + "search_value": "vpc_security_group_ids", + "expected_value": "aws_redshift_cluster[default].vpc_security_group_ids should be set", + "actual_value": "aws_redshift_cluster[default].vpc_security_group_ids is undefined" + }, + { + "file_name": "e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "4aa3f159f39767de53b49ed871977b8b499bf19b3b0865b1631042aa830598aa", + "line": 10, + "resource_type": "aws_redshift_cluster", + "resource_name": "default1", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default1]", + "search_line": -1, + "search_value": "cluster_subnet_group_name", + "expected_value": "aws_redshift_cluster[default1].cluster_subnet_group_name should be set", + "actual_value": "aws_redshift_cluster[default1].cluster_subnet_group_name is undefined" + }, + { + "file_name": "e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "709853fdb034e451c68825041190bbff098e2893528d91c39d84d31ea93ecae6", + "line": 1, + "resource_type": "aws_redshift_cluster", + "resource_name": "default", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default]", + "search_line": -1, + "search_value": "cluster_subnet_group_name", + "expected_value": "aws_redshift_cluster[default].cluster_subnet_group_name should be set", + "actual_value": "aws_redshift_cluster[default].cluster_subnet_group_name is undefined" + } + ] + }, + { + "query_name": "IAM Access Analyzer Not Enabled", + "query_id": "e592a0c5-5bdb-414c-9066-5dba7cdea370", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/accessanalyzer_analyzer", + "severity": "LOW", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Best Practices", + "experimental": false, + "description": "IAM Access Analyzer should be enabled and configured to continuously monitor resource permissions", + "description_id": "d03e85ae", + "files": [ + { + "file_name": "e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "aa346cd1642a83b40e221f96a43d88dbfacecdf1f8e5314c24145f8d35530197", + "line": 1, + "resource_type": "n/a", + "resource_name": "n/a", + "issue_type": "MissingAttribute", + "search_key": "resource", + "search_line": -1, + "search_value": "", + "expected_value": "'aws_accessanalyzer_analyzer' should be set", + "actual_value": "'aws_accessanalyzer_analyzer' is undefined" + } + ] + }, + { + "query_name": "Redshift Using Default Port", + "query_id": "41abc6cc-dde1-4217-83d3-fb5f0cc09d8f", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/redshift_cluster#port", + "severity": "LOW", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Networking and Firewall", + "experimental": false, + "description": "Redshift should not use the default port (5439) because an attacker can easily guess the port", + "description_id": "e2e48d27", + "files": [ + { + "file_name": "e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "8f5d57a5515ee4c9c5e6d26274b4e7ae5e408e39399caff57aebe5121dc11af6", + "line": 10, + "resource_type": "aws_redshift_cluster", + "resource_name": "default1", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default1]", + "search_line": 10, + "search_value": "", + "expected_value": "aws_redshift_cluster.port should be defined and not null", + "actual_value": "aws_redshift_cluster.port is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "34ae9f216456678405a82e7419b9b1614ee09a765529f717679e1fa4f4a1ae0a", + "line": 1, + "resource_type": "aws_redshift_cluster", + "resource_name": "default", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[default]", + "search_line": 1, + "search_value": "", + "expected_value": "aws_redshift_cluster.port should be defined and not null", + "actual_value": "aws_redshift_cluster.port is undefined or null" + } + ] + }, + { + "query_name": "Resource Not Using Tags", + "query_id": "e38a8e0a-b88b-4902-b3fe-b0fcb17d5c10", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/guides/resource-tagging", + "severity": "INFO", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Best Practices", + "experimental": false, + "description": "AWS services resource tags are an essential part of managing components. As a best practice, the field 'tags' should have additional tags defined other than 'Name'", + "description_id": "09db2d52", + "files": [ + { + "file_name": "e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "b44463ffd0f5c1eadc04ce6649982da68658349ad880daef470250661d3d1512", + "line": 1, + "resource_type": "aws_redshift_cluster", + "resource_name": "default", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[{{default}}]", + "search_line": -1, + "search_value": "", + "expected_value": "aws_redshift_cluster[{{default}}].tags should be defined and not null", + "actual_value": "aws_redshift_cluster[{{default}}].tags is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\terraform.tf", + "similarity_id": "406b71d9fd0edb656a4735df30dde77c5f8a6c4ec3caa3442f986a92832c653b", + "line": 10, + "resource_type": "aws_redshift_cluster", + "resource_name": "default1", + "issue_type": "MissingAttribute", + "search_key": "aws_redshift_cluster[{{default1}}]", + "search_line": -1, + "search_value": "", + "expected_value": "aws_redshift_cluster[{{default1}}].tags should be defined and not null", + "actual_value": "aws_redshift_cluster[{{default1}}].tags is undefined or null" + } + ] + } + ] +} diff --git a/pkg/engine/inspector.go b/pkg/engine/inspector.go index cf26def1487..0d876bdba20 100644 --- a/pkg/engine/inspector.go +++ b/pkg/engine/inspector.go @@ -5,7 +5,10 @@ import ( "context" "encoding/json" "fmt" + + "runtime" "strings" + "sync" "time" "github.com/Checkmarx/kics/internal/metrics" @@ -76,6 +79,7 @@ type Inspector struct { enableCoverageReport bool coverageReport cover.Report queryExecTimeout time.Duration + numWorkers int } // QueryContext contains the context where the query is executed, which scan it belongs, basic information of query, @@ -96,6 +100,15 @@ var ( } ) +func adjustNumWorkers(workers int) int { + // for the case in which the end user decides to use num workers as "auto-detected" + // we will set the number of workers to the number of CPUs available based on GOMAXPROCS value + if workers == 0 { + return runtime.GOMAXPROCS(-1) + } + return workers +} + // NewInspector initializes a inspector, compiling and loading queries for scan and its tracker func NewInspector( ctx context.Context, @@ -105,7 +118,8 @@ func NewInspector( queryParameters *source.QueryInspectorParameters, excludeResults map[string]bool, queryTimeout int, - needsLog bool) (*Inspector, error) { + needsLog bool, + numWorkers int) (*Inspector, error) { log.Debug().Msg("engine.NewInspector()") metrics.Metric.Start("get_queries") @@ -156,6 +170,7 @@ func NewInspector( excludeResults: excludeResults, detector: lineDetector, queryExecTimeout: queryExecTimeout, + numWorkers: adjustNumWorkers(numWorkers), }, nil } @@ -181,7 +196,62 @@ func getPlatformLibraries(queriesSource source.QueriesSource, queries []model.Qu return platformLibraries } -// Inspect scan files and return the a list of vulnerabilities found on the process +type InspectionJob struct { + queryID int +} + +type QueryResult struct { + vulnerabilities []model.Vulnerability + err error + queryID int +} + +// This function creates an inspection task and sends it to the jobs channel +func (c *Inspector) createInspectionJobs(jobs chan<- InspectionJob, queries []model.QueryMetadata) { + defer close(jobs) + for i := range queries { + jobs <- InspectionJob{queryID: i} + } +} + +// This function performs an inspection job and sends the result to the results channel +func (c *Inspector) performInspection(ctx context.Context, scanID string, files model.FileMetadatas, + astPayload ast.Value, baseScanPaths []string, currentQuery chan<- int64, + jobs <-chan InspectionJob, results chan<- QueryResult, queries []model.QueryMetadata) { + for job := range jobs { + currentQuery <- 1 + + queryOpa, err := c.QueryLoader.LoadQuery(ctx, &queries[job.queryID]) + if err != nil { + continue + } + + log.Debug().Msgf("Starting to run query %s", queries[job.queryID].Query) + queryStartTime := time.Now() + + query := &PreparedQuery{ + OpaQuery: *queryOpa, + Metadata: queries[job.queryID], + } + + queryContext := &QueryContext{ + Ctx: ctx, + scanID: scanID, + Files: files.ToMap(), + Query: query, + payload: &astPayload, + BaseScanPaths: baseScanPaths, + } + + vuls, err := c.doRun(queryContext) + if err == nil { + log.Debug().Msgf("Finished to run query %s after %v", queries[job.queryID].Query, time.Since(queryStartTime)) + c.tracker.TrackQueryExecution(query.Metadata.Aggregation) + } + results <- QueryResult{vulnerabilities: vuls, err: err, queryID: job.queryID} + } +} + func (c *Inspector) Inspect( ctx context.Context, scanID string, @@ -213,54 +283,52 @@ func (c *Inspector) Inspect( queries := c.getQueriesByPlat(platforms) - for i, queryMeta := range queries { - currentQuery <- 1 + // Create a channel to collect the results + results := make(chan QueryResult, len(queries)) - queryOpa, err := c.QueryLoader.LoadQuery(ctx, &queries[i]) - if err != nil { - continue - } + // Create a channel for inspection jobs + jobs := make(chan InspectionJob, len(queries)) - log.Debug().Msgf("Starting to run query %s", queryMeta.Query) - queryStartTime := time.Now() + var wg sync.WaitGroup - query := &PreparedQuery{ - OpaQuery: *queryOpa, - Metadata: queryMeta, - } + // Start a goroutine for each worker + for w := 0; w < c.numWorkers; w++ { + wg.Add(1) - queryContext := &QueryContext{ - Ctx: ctx, - scanID: scanID, - Files: files.ToMap(), - Query: query, - payload: &astPayload, - BaseScanPaths: baseScanPaths, - } + go func() { + // Decrement the counter when the goroutine completes + defer wg.Done() + c.performInspection(ctx, scanID, files, astPayload, baseScanPaths, currentQuery, jobs, results, queries) + }() + } + // Start a goroutine to create inspection jobs + go c.createInspectionJobs(jobs, queries) - vuls, err := c.doRun(queryContext) + go func() { + // Wait for all jobs to finish + wg.Wait() + // Then close the results channel + close(results) + }() - if err != nil { + // Collect all the results + for result := range results { + if result.err != nil { fmt.Println() sentryReport.ReportSentry(&sentryReport.Report{ - Message: fmt.Sprintf("Inspector. query executed with error, query=%s", query.Metadata.Query), - Err: err, + Message: fmt.Sprintf("Inspector. query executed with error, query=%s", queries[result.queryID].Query), + Err: result.err, Location: "func Inspect()", - Platform: query.Metadata.Platform, - Metadata: query.Metadata.Metadata, - Query: query.Metadata.Query, + Platform: queries[result.queryID].Platform, + Metadata: queries[result.queryID].Metadata, + Query: queries[result.queryID].Query, }, true) - c.failedQueries[query.Metadata.Query] = err + c.failedQueries[queries[result.queryID].Query] = result.err continue } - - log.Debug().Msgf("Finished to run query %s after %v", queryMeta.Query, time.Since(queryStartTime)) - - vulnerabilities = append(vulnerabilities, vuls...) - - c.tracker.TrackQueryExecution(query.Metadata.Aggregation) + vulnerabilities = append(vulnerabilities, result.vulnerabilities...) } return vulnerabilities, nil } diff --git a/pkg/engine/inspector_test.go b/pkg/engine/inspector_test.go index fe41bc20626..d357a0e4f09 100644 --- a/pkg/engine/inspector_test.go +++ b/pkg/engine/inspector_test.go @@ -319,6 +319,7 @@ func TestInspect(t *testing.T) { //nolint excludeResults: tt.fields.excludeResults, detector: inspDetector, queryExecTimeout: time.Duration(60) * time.Second, + numWorkers: 1, } got, err := c.Inspect(tt.args.ctx, tt.args.scanID, tt.args.files, []string{filepath.FromSlash("assets/queries/")}, []string{"Dockerfile"}, currentQuery) @@ -405,6 +406,7 @@ func TestNewInspector(t *testing.T) { //nolint excludeResults map[string]bool queryExecTimeout int needsLog bool + numWorkers int } tests := []struct { name string @@ -431,6 +433,7 @@ func TestNewInspector(t *testing.T) { //nolint excludeResults: map[string]bool{}, queryExecTimeout: 60, needsLog: true, + numWorkers: 1, }, want: &Inspector{ vb: vbs, @@ -451,7 +454,8 @@ func TestNewInspector(t *testing.T) { //nolint &tt.args.queryFilter, tt.args.excludeResults, tt.args.queryExecTimeout, - tt.args.needsLog) + tt.args.needsLog, + tt.args.numWorkers) if (err != nil) != tt.wantErr { t.Errorf("NewInspector() error: got = %v,\n wantErr = %v", err, tt.wantErr) @@ -766,7 +770,7 @@ func newInspectorInstance(t *testing.T, queryPath []string) *Inspector { vb, &tracker.CITracker{}, &source.QueryInspectorParameters{}, - map[string]bool{}, 60, true, + map[string]bool{}, 60, true, 1, ) require.NoError(t, err) return ins diff --git a/pkg/remediation/scan.go b/pkg/remediation/scan.go index eabe6e3568a..3a06ea98184 100644 --- a/pkg/remediation/scan.go +++ b/pkg/remediation/scan.go @@ -240,6 +240,7 @@ func initScan(queryID string) (*engine.Inspector, error) { make(map[string]bool), c.ScanParams.QueryExecTimeout, false, + c.ScanParams.ParallelScanFlag, ) return inspector, err diff --git a/pkg/scan/client.go b/pkg/scan/client.go index 4b82d5bf375..df8e34c57d9 100644 --- a/pkg/scan/client.go +++ b/pkg/scan/client.go @@ -45,6 +45,7 @@ type Parameters struct { BillOfMaterials bool ExcludeGitIgnore bool OpenAPIResolveReferences bool + ParallelScanFlag int MaxFileSizeFlag int } diff --git a/pkg/scan/scan.go b/pkg/scan/scan.go index 168c72361fa..30f01be82e4 100644 --- a/pkg/scan/scan.go +++ b/pkg/scan/scan.go @@ -72,6 +72,7 @@ func (c *Client) initScan(ctx context.Context) (*executeScanParameters, error) { c.ExcludeResultsMap, c.ScanParams.QueryExecTimeout, true, + c.ScanParams.ParallelScanFlag, ) if err != nil { return nil, err diff --git a/pkg/scanner/scanner_test.go b/pkg/scanner/scanner_test.go index 5dddffaff5a..f2a45e248b8 100644 --- a/pkg/scanner/scanner_test.go +++ b/pkg/scanner/scanner_test.go @@ -101,7 +101,7 @@ func createServices(types, cloudProviders []string) (serviceSlice, *storage.Memo inspector, err := engine.NewInspector(context.Background(), querySource, engine.DefaultVulnerabilityBuilder, - t, &source.QueryInspectorParameters{}, map[string]bool{}, 60, true) + t, &source.QueryInspectorParameters{}, map[string]bool{}, 60, true, 1) if err != nil { return nil, nil, err } diff --git a/res/E2E_CLI_081_RESULT.json b/res/E2E_CLI_081_RESULT.json new file mode 100644 index 00000000000..9842056b70d --- /dev/null +++ b/res/E2E_CLI_081_RESULT.json @@ -0,0 +1,69189 @@ +{ + "kics_version": "development", + "files_scanned": 1, + "lines_scanned": 9013, + "files_parsed": 1, + "lines_parsed": 9013, + "lines_ignored": 0, + "files_failed_to_scan": 0, + "queries_total": 1045, + "queries_failed_to_execute": 0, + "queries_failed_to_compute_similarity_id": 0, + "scan_id": "console", + "severity_counters": { + "HIGH": 1002, + "INFO": 3001, + "LOW": 1, + "MEDIUM": 1000, + "TRACE": 0 + }, + "total_counter": 5004, + "total_bom_resources": 0, + "start": "2024-02-09T11:04:11.1427065Z", + "end": "2024-02-09T11:05:03.5369016Z", + "paths": [ + "e2e/fixtures/samples/long_terraform.tf" + ], + "queries": [ + { + "query_name": "EC2 Instance Has Public IP", + "query_id": "5a2486aa-facf-477d-a5c1-b010789459ce", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/instance#associate_public_ip_address", + "severity": "HIGH", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Networking and Firewall", + "experimental": false, + "description": "EC2 Instance should not have a public IP address.", + "description_id": "c6f1d1f4", + "files": [ + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9251fe0799f98f30b8485ffd0434f877afd9e543b3364cfbc17267b68ffc990b", + "line": 2072, + "resource_type": "aws_instance", + "resource_name": "example-instance-230", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example230", + "search_line": 2072, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "558d2aea703f48fb906cfe6a03d8dced91545ecc7e927e6c498c00fc3362cb5c", + "line": 3539, + "resource_type": "aws_instance", + "resource_name": "example-instance-393", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example393", + "search_line": 3539, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9e89f8c6fd8dc6a278cfb60fac0fc34f1c8e987aaf0806e1b34b18644b57af02", + "line": 7580, + "resource_type": "aws_instance", + "resource_name": "example-instance-842", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example842", + "search_line": 7580, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7faf6637eb65f50c4d703e2f6b87ef9a980b16c9c6d18e1d31a5979a9bddad9f", + "line": 5195, + "resource_type": "aws_instance", + "resource_name": "example-instance-577", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example577", + "search_line": 5195, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "93aef707bba5fb93caf404e223a3d9b162b8f8caa80bd51a7f193fde440735ff", + "line": 6131, + "resource_type": "aws_instance", + "resource_name": "example-instance-681", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example681", + "search_line": 6131, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0f16c650cc96e81ab0d8d49f12055799397cdc0e3460e500a9f9e94d2bae11f1", + "line": 6923, + "resource_type": "aws_instance", + "resource_name": "example-instance-769", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example769", + "search_line": 6923, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1300d1685890ab6f6942b3a1c59c306e4bea3e7f86a431f7c78909ffb424111c", + "line": 4664, + "resource_type": "aws_instance", + "resource_name": "example-instance-518", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example518", + "search_line": 4664, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "869249ac007e45af19545eaf4c4afb8007be1ad481047a0a17006b7a838e1fd6", + "line": 7931, + "resource_type": "aws_instance", + "resource_name": "example-instance-881", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example881", + "search_line": 7931, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "00c6be6915cd2b9a10df87822f2abc4c336103ed2ff41628489fc9f6402d6f32", + "line": 2747, + "resource_type": "aws_instance", + "resource_name": "example-instance-305", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example305", + "search_line": 2747, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ecadcf2fc16619f0c0b6d67bb001a6095681919cb4a5d703ac48d16bb222b8e5", + "line": 5231, + "resource_type": "aws_instance", + "resource_name": "example-instance-581", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example581", + "search_line": 5231, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0512372d5f073a19813e96ebad904337062248680c115aba026de0e6e44e1d26", + "line": 2513, + "resource_type": "aws_instance", + "resource_name": "example-instance-279", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example279", + "search_line": 2513, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "050390937f03acc574317e0b504cf940266c1b5aad6213ac65d55b3904a0f5f9", + "line": 7157, + "resource_type": "aws_instance", + "resource_name": "example-instance-795", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example795", + "search_line": 7157, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2545dfaccdb0aeb681da9723f676a4ea041c7b77f0f5107d5a96cecbd5009824", + "line": 4943, + "resource_type": "aws_instance", + "resource_name": "example-instance-549", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example549", + "search_line": 4943, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c8f4d9156235b8d338d9cb0ec3b62df59fd9fc17fbbcc3dfaa4e4e2e048b7f79", + "line": 2315, + "resource_type": "aws_instance", + "resource_name": "example-instance-257", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example257", + "search_line": 2315, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "170b77a34e9bc9f87fc6b6923241d1c98e746dcdfd3b50aab35713a4a55195bd", + "line": 2036, + "resource_type": "aws_instance", + "resource_name": "example-instance-226", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example226", + "search_line": 2036, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c23eb09f9e5641442ac27c46c85144be5b996225075b9c347903218475eb9e10", + "line": 20, + "resource_type": "aws_instance", + "resource_name": "example-instance-2", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example2", + "search_line": 20, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3eb8ae35f1dadc50a4aeb56ee6c4da0887ec4da6455c9d58d98fa12253921420", + "line": 5015, + "resource_type": "aws_instance", + "resource_name": "example-instance-557", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example557", + "search_line": 5015, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "67477e2ceae7a4d4b13d918b3f9a567dd77dd0cd8c1b804c497e1430ae4cbde4", + "line": 7634, + "resource_type": "aws_instance", + "resource_name": "example-instance-848", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example848", + "search_line": 7634, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f52159a6ebf9f0463bfc4982c83665235237779b96a05ccc68fbf5ed2bc2dc0c", + "line": 3629, + "resource_type": "aws_instance", + "resource_name": "example-instance-403", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example403", + "search_line": 3629, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e3d334c19e5a95c3729aa4b3c28872db0b7d0c45edb4d9bcd0058373fa3ada8c", + "line": 3845, + "resource_type": "aws_instance", + "resource_name": "example-instance-427", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example427", + "search_line": 3845, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4cc4dba23292833f63478abd16e5e676687f0ee931b35154a407642631cd0192", + "line": 6041, + "resource_type": "aws_instance", + "resource_name": "example-instance-671", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example671", + "search_line": 6041, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9ace5f0aa4216423982264d8fae6f07bf146a60bb5a2b507ff6a0d6ebf2fd449", + "line": 2045, + "resource_type": "aws_instance", + "resource_name": "example-instance-227", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example227", + "search_line": 2045, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9988efbed3cbffeb14a0efc2d73fd363bb2714d7051c50f9a62e3896dcbcac19", + "line": 7571, + "resource_type": "aws_instance", + "resource_name": "example-instance-841", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example841", + "search_line": 7571, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "af8d67ee6ae36c64af2ce7e1ece400a67ff2385f8af5671b24b09d6fc70d643e", + "line": 5834, + "resource_type": "aws_instance", + "resource_name": "example-instance-648", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example648", + "search_line": 5834, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "880894512c1d994d7891600da18c959ecefdbded3523a81770a77aef79faefdc", + "line": 6338, + "resource_type": "aws_instance", + "resource_name": "example-instance-704", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example704", + "search_line": 6338, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3d44e5341e523f070157f97c315070bbddcb819b08cec6e0ef13bb9ab9de4780", + "line": 389, + "resource_type": "aws_instance", + "resource_name": "example-instance-43", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example43", + "search_line": 389, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c314a439da3a86a6ce0d64e7109a6e71db951093d053ece716f23c15f189ef8d", + "line": 5501, + "resource_type": "aws_instance", + "resource_name": "example-instance-611", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example611", + "search_line": 5501, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5608a76d007049a229d4c4330bb191204e2badbff70ce97fd45bf68191f184f2", + "line": 578, + "resource_type": "aws_instance", + "resource_name": "example-instance-64", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example64", + "search_line": 578, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5112053960f4381128453c1ee6e64bb711f40db6053f071eeef28bbc6bf6ed4e", + "line": 1019, + "resource_type": "aws_instance", + "resource_name": "example-instance-113", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example113", + "search_line": 1019, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "23a262c51d0d8b7c215a9d1199d5419d1c2eebfa11aeee345f5fc3a3926eedcb", + "line": 8570, + "resource_type": "aws_instance", + "resource_name": "example-instance-952", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example952", + "search_line": 8570, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cc23cf8774708b229e7747c43b360eef24d3e9099359efecaab000917c8970ad", + "line": 7481, + "resource_type": "aws_instance", + "resource_name": "example-instance-831", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example831", + "search_line": 7481, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e4b1e5c4a1c1cfe0931bb68ba4bc897356883c261aef7d582575031e25d8741a", + "line": 4511, + "resource_type": "aws_instance", + "resource_name": "example-instance-501", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example501", + "search_line": 4511, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ba861ef41ffa717a1dd812ca697c6edf0bc3eb74f98684e3e83a9e411ca8f6ca", + "line": 3611, + "resource_type": "aws_instance", + "resource_name": "example-instance-401", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example401", + "search_line": 3611, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3c0faaec5f5c40a8a85f33592f83f758d8949037958a2d5d5589d465534a037c", + "line": 6203, + "resource_type": "aws_instance", + "resource_name": "example-instance-689", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example689", + "search_line": 6203, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "227789618748b61b4bcc801dd7d4084f0edcb842ce4c294fa74bbffcf8826385", + "line": 2495, + "resource_type": "aws_instance", + "resource_name": "example-instance-277", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example277", + "search_line": 2495, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bc9eb73778d63dcc065dea4a96c2fae07d6613a3055834295f50b86224912360", + "line": 5240, + "resource_type": "aws_instance", + "resource_name": "example-instance-582", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example582", + "search_line": 5240, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f60e48d1129969eb018bff9f0af441920e37a4360115e3013c4c2a86991413c4", + "line": 3008, + "resource_type": "aws_instance", + "resource_name": "example-instance-334", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example334", + "search_line": 3008, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9895af9923b8e465cd10234811ec337f4e9f52270f2f10f07f3ffa6393b82fa2", + "line": 5888, + "resource_type": "aws_instance", + "resource_name": "example-instance-654", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example654", + "search_line": 5888, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4b252bd52daca56f3a95ecee535bf9f2e574ebe85f0c636659cf98aef083c4d5", + "line": 4412, + "resource_type": "aws_instance", + "resource_name": "example-instance-490", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example490", + "search_line": 4412, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "95208aa69e08d7749cd72e5600829a47cada67b1ef4a0c81894f17e0e3c379a8", + "line": 4988, + "resource_type": "aws_instance", + "resource_name": "example-instance-554", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example554", + "search_line": 4988, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9ccb2a1940aebfd830992749ad52390a323f10a4889d14e44ef774df1d471d2a", + "line": 7220, + "resource_type": "aws_instance", + "resource_name": "example-instance-802", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example802", + "search_line": 7220, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c80631ffad5a0cf7888ab6efb75ccc36053af94414fa83895542666ec5af06a1", + "line": 2801, + "resource_type": "aws_instance", + "resource_name": "example-instance-311", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example311", + "search_line": 2801, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d92aa4704e1532ae01881e323ce512da5ed404c6214e021692f6dc3d89aaf247", + "line": 5366, + "resource_type": "aws_instance", + "resource_name": "example-instance-596", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example596", + "search_line": 5366, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "51cf54b56df947ce20546931a362efed611ff19bf5bca7dc2cac43d4901cc051", + "line": 4952, + "resource_type": "aws_instance", + "resource_name": "example-instance-550", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example550", + "search_line": 4952, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f333e88d6bf343ca4745ba634afd3fcaeaea1ce7de73b378a049e649d6656a79", + "line": 8246, + "resource_type": "aws_instance", + "resource_name": "example-instance-916", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example916", + "search_line": 8246, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "16ca4e75cbb2724af4b0e297282eadd54eed2976d4f6e3f506a34e62ab0fc86c", + "line": 1037, + "resource_type": "aws_instance", + "resource_name": "example-instance-115", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example115", + "search_line": 1037, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e0bafc551812a2817cd28c7083ecce885e3ee14583e119b65a2d04b714499275", + "line": 8822, + "resource_type": "aws_instance", + "resource_name": "example-instance-980", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example980", + "search_line": 8822, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "87da6d08b60ec6f29a59b27eccc81d8d5ea932ee303a28c9fd3a6f0fc642dbe7", + "line": 3170, + "resource_type": "aws_instance", + "resource_name": "example-instance-352", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example352", + "search_line": 3170, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "033534971954b662a56ee2374997c442f63bf6bd47f5b47f65b2a77ac87fbfaf", + "line": 992, + "resource_type": "aws_instance", + "resource_name": "example-instance-110", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example110", + "search_line": 992, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "13c02af5271892db50c0fe657d03c5608b7d43a8e5c553535dbba22de67a2795", + "line": 2603, + "resource_type": "aws_instance", + "resource_name": "example-instance-289", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example289", + "search_line": 2603, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ff38ba18be93edfef62c36d24d49cecd213be5382ae2a3a54727547c87de4795", + "line": 5420, + "resource_type": "aws_instance", + "resource_name": "example-instance-602", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example602", + "search_line": 5420, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e5cc48b0827130b361f80126810fb14bcff02560de6e210b740ada73af54fc11", + "line": 4520, + "resource_type": "aws_instance", + "resource_name": "example-instance-502", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example502", + "search_line": 4520, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f68128e4e726c1e0ef068352027d5289c5374bbe4a0a7df324ab17917e50c5cd", + "line": 7607, + "resource_type": "aws_instance", + "resource_name": "example-instance-845", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example845", + "search_line": 7607, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2eab51589ceb3792f8904c209d2803fe8141dacd54a626eba3dff3618a49b734", + "line": 7832, + "resource_type": "aws_instance", + "resource_name": "example-instance-870", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example870", + "search_line": 7832, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2ce20773d9752af158240c36e9c161e1bdf1af9acd2eb473db794252000b7f65", + "line": 1874, + "resource_type": "aws_instance", + "resource_name": "example-instance-208", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example208", + "search_line": 1874, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7ee57b8f36fd71017aca48bc3c6e5f0208d5800dd99cfb007759f9ec9dd57899", + "line": 4853, + "resource_type": "aws_instance", + "resource_name": "example-instance-539", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example539", + "search_line": 4853, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "71b5dfd8be333febd427557d92b50f261e61593ee3403a662a089c45ea67c270", + "line": 6761, + "resource_type": "aws_instance", + "resource_name": "example-instance-751", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example751", + "search_line": 6761, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "178b7d24a9306b463b223c9f9bc0591d976defa851497529d52e4199c7f185fd", + "line": 8156, + "resource_type": "aws_instance", + "resource_name": "example-instance-906", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example906", + "search_line": 8156, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "81a33e6d673a6bf07f66b7eb6f8447f5706e4419fb2517fd611ddea8626871dd", + "line": 1802, + "resource_type": "aws_instance", + "resource_name": "example-instance-200", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example200", + "search_line": 1802, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "84d30535950a4492707476e60de6054666062f1f378cd36248eb050768298763", + "line": 2828, + "resource_type": "aws_instance", + "resource_name": "example-instance-314", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example314", + "search_line": 2828, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a290785daddbe74c75657927c4c46c72b05c8d88e54ce088ce9db3a0318a74ed", + "line": 1172, + "resource_type": "aws_instance", + "resource_name": "example-instance-130", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example130", + "search_line": 1172, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6d0b3e7f706918e79a4352e2f1b0416a07164a5d2503b19429ecd06fc3e36fca", + "line": 2414, + "resource_type": "aws_instance", + "resource_name": "example-instance-268", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example268", + "search_line": 2414, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9b6d470a5fd6e1487abc7ac6cf81c595e17d2a8076eec244cd59415d05e43b2c", + "line": 5096, + "resource_type": "aws_instance", + "resource_name": "example-instance-566", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example566", + "search_line": 5096, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "695aaab2afa0ec10664bf14ccd2aaf81821fc1674370600d59905904f2b82c95", + "line": 5726, + "resource_type": "aws_instance", + "resource_name": "example-instance-636", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example636", + "search_line": 5726, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8eebfad88212266cee3e259af248d2f0d69aea734e416ef5846916f1077ec9b7", + "line": 5798, + "resource_type": "aws_instance", + "resource_name": "example-instance-644", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example644", + "search_line": 5798, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9a2426da97107cb0addd7c7e984b21aa49ec118a418580e3c49a1a35a7a28668", + "line": 3179, + "resource_type": "aws_instance", + "resource_name": "example-instance-353", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example353", + "search_line": 3179, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f311b695908e216a5fbea647ad14b656b2ea7b6daa228ca2859059e46cca3f4a", + "line": 3287, + "resource_type": "aws_instance", + "resource_name": "example-instance-365", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example365", + "search_line": 3287, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "36fff5e6816edb310ea4e4790a9dcb61e51f1097c589e8e53faf55d036ffe91d", + "line": 920, + "resource_type": "aws_instance", + "resource_name": "example-instance-102", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example102", + "search_line": 920, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b2c1b94709252784326080be8b668295c31dfc6e711039c5669b71aa3a95ac67", + "line": 1325, + "resource_type": "aws_instance", + "resource_name": "example-instance-147", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example147", + "search_line": 1325, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "583192e9435c2c7853bfd934e1228dbd702325298a40ab6f5d760736429f6f4a", + "line": 4034, + "resource_type": "aws_instance", + "resource_name": "example-instance-448", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example448", + "search_line": 4034, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "10b1ef1044415d0c2f6ee996f2becb25dac13d7535a86b7a374c60690f28485a", + "line": 7733, + "resource_type": "aws_instance", + "resource_name": "example-instance-859", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example859", + "search_line": 7733, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "205bd90937940b7614af9ee0518be17f7a1bfad02dd84930075f380beaf5716a", + "line": 1334, + "resource_type": "aws_instance", + "resource_name": "example-instance-148", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example148", + "search_line": 1334, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a19d43c490bd119752e78f5cae445140a1818bb552d4670b076f862b95717a48", + "line": 3386, + "resource_type": "aws_instance", + "resource_name": "example-instance-376", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example376", + "search_line": 3386, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6743a7508a7d6db3d319bdd7714edb2cb31a70c69b6e20765aa94b2dba4a2000", + "line": 6185, + "resource_type": "aws_instance", + "resource_name": "example-instance-687", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example687", + "search_line": 6185, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "87bc7484cb492f638de59e5c288de2c0298dcb58479f515e6410d7c9850978f0", + "line": 101, + "resource_type": "aws_instance", + "resource_name": "example-instance-11", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example11", + "search_line": 101, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a4db3d4642f33c5d6289b253ef0f4c5529a13dad5ed10ffe9bb0c53fd3cab4c5", + "line": 4817, + "resource_type": "aws_instance", + "resource_name": "example-instance-535", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example535", + "search_line": 4817, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3b0de9858668fd51ffac7432fde381690a9f31e2e55592fca84c6c16f5543bce", + "line": 5078, + "resource_type": "aws_instance", + "resource_name": "example-instance-564", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example564", + "search_line": 5078, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d7cddcd7772fe9f52ca23cb1c9b77ca13ed2a1b60d3764852753644ce65e18d9", + "line": 6545, + "resource_type": "aws_instance", + "resource_name": "example-instance-727", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example727", + "search_line": 6545, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "444a56329ee153df501a6b9adbb48a967b3f468a051bbc8021a290694dca9d03", + "line": 7094, + "resource_type": "aws_instance", + "resource_name": "example-instance-788", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example788", + "search_line": 7094, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "da072fde0327b36f56c8975cb77b7e6990bf627d147b4db8499ef5085fd129ad", + "line": 6941, + "resource_type": "aws_instance", + "resource_name": "example-instance-771", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example771", + "search_line": 6941, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a715fd27f36be9cf9fabfe3c026623898dfd6a5ba7a671326990e42efc70e734", + "line": 4844, + "resource_type": "aws_instance", + "resource_name": "example-instance-538", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example538", + "search_line": 4844, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "76d6809cb8279aeee4e729505ad6b275cb3319a493fce09697049f38470fff21", + "line": 6014, + "resource_type": "aws_instance", + "resource_name": "example-instance-668", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example668", + "search_line": 6014, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0a856adfcd15b72b862409b4f0692b5d2d90f85f29daf1d9a67168866abb572b", + "line": 1514, + "resource_type": "aws_instance", + "resource_name": "example-instance-168", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example168", + "search_line": 1514, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "867c18c1ab26b9fd53fe080c73569fb21116b94994388be524a4a37ba840a41b", + "line": 7544, + "resource_type": "aws_instance", + "resource_name": "example-instance-838", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example838", + "search_line": 7544, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1654af6abcdb36befe3534f8a83496c909ec3ebd92b44524bbe360294ada58d1", + "line": 3827, + "resource_type": "aws_instance", + "resource_name": "example-instance-425", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example425", + "search_line": 3827, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c1cabd0b8e381034907012fb145fadfbe6078884624ce02dcfb64510a2173737", + "line": 8327, + "resource_type": "aws_instance", + "resource_name": "example-instance-925", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example925", + "search_line": 8327, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c73ca1965f2f02a675dd83fec6649aa6ebf96829cc1480105cf1b1c301616a63", + "line": 1208, + "resource_type": "aws_instance", + "resource_name": "example-instance-134", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example134", + "search_line": 1208, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "734f88c5499165395ef604c3a2864ab0ad26e943a3f018e3c0f2b60b4d0acc7b", + "line": 4259, + "resource_type": "aws_instance", + "resource_name": "example-instance-473", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example473", + "search_line": 4259, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f3b2fcbba6ee76ed8990eb336548e420bf8c45bef468201b8f2b22cba5f1b326", + "line": 2189, + "resource_type": "aws_instance", + "resource_name": "example-instance-243", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example243", + "search_line": 2189, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0a1fdd021b53cae9a276aab01377cfe06db9a770630f243d7b6e845f53337eab", + "line": 6302, + "resource_type": "aws_instance", + "resource_name": "example-instance-700", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example700", + "search_line": 6302, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "91c85904ae0de0be9aaa206ba3f37660adedc0b4e7977813e89fa6bf9ae36ff1", + "line": 6626, + "resource_type": "aws_instance", + "resource_name": "example-instance-736", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example736", + "search_line": 6626, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0b334ccd684213f77d25c25fe2e04af055bbf8bc8111b00edf411e591204bff5", + "line": 8948, + "resource_type": "aws_instance", + "resource_name": "example-instance-994", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example994", + "search_line": 8948, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "881cc3dc0cfb8a4fa744b5be4d91dff19eb47871ee6e491b7d9bb71f2852bd1b", + "line": 8930, + "resource_type": "aws_instance", + "resource_name": "example-instance-992", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example992", + "search_line": 8930, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8940dd9149c1ddb94335b276721c22e0e216d0f7eefc39b51478dab669764253", + "line": 4043, + "resource_type": "aws_instance", + "resource_name": "example-instance-449", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example449", + "search_line": 4043, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8a53a4ed3cc01074fa9f3d7ffb30f664e4a568ff9021a99f0dc5bcb45890f805", + "line": 4808, + "resource_type": "aws_instance", + "resource_name": "example-instance-534", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example534", + "search_line": 4808, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "18dfda2b852f8047489fc873d26e692ef6277f1ebd72fc7ae1768397ad606c7f", + "line": 1532, + "resource_type": "aws_instance", + "resource_name": "example-instance-170", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example170", + "search_line": 1532, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f0a96678df73bf5e7f7a18baa32a6c7f4924df1c5d6655d56d2d82254707f898", + "line": 8687, + "resource_type": "aws_instance", + "resource_name": "example-instance-965", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example965", + "search_line": 8687, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3c0eef321b64a893abd41de294aa8346e3ef36b97014dc4dea84f2474dd7c187", + "line": 4268, + "resource_type": "aws_instance", + "resource_name": "example-instance-474", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example474", + "search_line": 4268, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7458e7f115f3a5b54bca09ebb96de02221915c3fb0da72afe052beb46cf58c0b", + "line": 2180, + "resource_type": "aws_instance", + "resource_name": "example-instance-242", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example242", + "search_line": 2180, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9cea1149ef125e1533a2a018766301bcc2fc6321a9373e1259c3c05359cc5566", + "line": 3098, + "resource_type": "aws_instance", + "resource_name": "example-instance-344", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example344", + "search_line": 3098, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5ce4b403fe6765b4217accef88cd7d0daf72acba7a10bd597879218b7d1e4768", + "line": 4646, + "resource_type": "aws_instance", + "resource_name": "example-instance-516", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example516", + "search_line": 4646, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3f68bd47778b681632c985bd0fe383c5952e762f15682c46959a41cf9c4d1def", + "line": 3485, + "resource_type": "aws_instance", + "resource_name": "example-instance-387", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example387", + "search_line": 3485, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8ae159bbcd16da31e59f238e85d4c9869b2906a44aca74dc6973e645b1118a8b", + "line": 5285, + "resource_type": "aws_instance", + "resource_name": "example-instance-587", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example587", + "search_line": 5285, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "42f4ed9e7cb293945ec69442eac2e4c5f5e78339be213a6b2067d439cf9fcb2e", + "line": 8993, + "resource_type": "aws_instance", + "resource_name": "example-instance-999", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example999", + "search_line": 8993, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "59acbf325e5cc77bd4c9c00f38789caa7b2b1053ca8833c8f5d222b3e62f2bda", + "line": 1667, + "resource_type": "aws_instance", + "resource_name": "example-instance-185", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example185", + "search_line": 1667, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "36a871555b8c1633ad3f82284c7070feac7d15362c642866e274898a645e990d", + "line": 2756, + "resource_type": "aws_instance", + "resource_name": "example-instance-306", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example306", + "search_line": 2756, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "996ab442e69576104883c4f79193cb80e455ea177e41d2238294fc54bb218a84", + "line": 3260, + "resource_type": "aws_instance", + "resource_name": "example-instance-362", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example362", + "search_line": 3260, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4119bc9ee1e51432b47337e12deda55d08d5309cf2286d03d992958ebcc4c2f3", + "line": 812, + "resource_type": "aws_instance", + "resource_name": "example-instance-90", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example90", + "search_line": 812, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "828308798d8abadf9121c464b5941f7358080c91bca8f2f24faf3eacfdc1f4cb", + "line": 6023, + "resource_type": "aws_instance", + "resource_name": "example-instance-669", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example669", + "search_line": 6023, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bf24ff3f4c5f7fb0db0313dfc0e6c6e053ea2590e8540abffcfc07418e21458b", + "line": 2126, + "resource_type": "aws_instance", + "resource_name": "example-instance-236", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example236", + "search_line": 2126, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e4defa2ee22a46f20042b7dca24a79eb00f3704955fb62ba290479d68e35ee5f", + "line": 4241, + "resource_type": "aws_instance", + "resource_name": "example-instance-471", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example471", + "search_line": 4241, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "61c3fb442fe5abf2c99f1384d09fa34e500383f1df44342f27bc5dcad65100f1", + "line": 6851, + "resource_type": "aws_instance", + "resource_name": "example-instance-761", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example761", + "search_line": 6851, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5ceb70d7bca35891df511a1e210c4a897f7c357db4a0ee771aa91fea17698d3b", + "line": 4772, + "resource_type": "aws_instance", + "resource_name": "example-instance-530", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example530", + "search_line": 4772, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "569283e9d154d8d0eec4ad7a389e3d733d723847d77c87de0f52c56f86b46b63", + "line": 2648, + "resource_type": "aws_instance", + "resource_name": "example-instance-294", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example294", + "search_line": 2648, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c31b67bb75745747b35b3ee46cfaf41c0c1910db5c6642a9ddb5c1db1cc43c3b", + "line": 6446, + "resource_type": "aws_instance", + "resource_name": "example-instance-716", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example716", + "search_line": 6446, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6f1834b01872b08cd18e54ff7fe3ae6c068d1477dda5a7f09c6e8209a09d83d0", + "line": 6806, + "resource_type": "aws_instance", + "resource_name": "example-instance-756", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example756", + "search_line": 6806, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7908e05a8ad9bfe81f47900397176eca7b01e4e73adadd6314f7f0eb70fac8e5", + "line": 47, + "resource_type": "aws_instance", + "resource_name": "example-instance-5", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example5", + "search_line": 47, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fcb2f8e0fa331b0fbd0de3ec082210e8b4b1beb85b6477d1934cda8f73df6dce", + "line": 5276, + "resource_type": "aws_instance", + "resource_name": "example-instance-586", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example586", + "search_line": 5276, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4041000a1eb9bd2946f042c804c1bd4ac29f2684252832ff0a005410e4c24444", + "line": 776, + "resource_type": "aws_instance", + "resource_name": "example-instance-86", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example86", + "search_line": 776, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c7ed29ecd1c79c1f68da342979d654cfdc0061cb78a6d8f0bc143e60291c6700", + "line": 200, + "resource_type": "aws_instance", + "resource_name": "example-instance-22", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example22", + "search_line": 200, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "426914766131c2b4a63c977c57b6f893ed10933ed08587519773c0a76ec07c2e", + "line": 4304, + "resource_type": "aws_instance", + "resource_name": "example-instance-478", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example478", + "search_line": 4304, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3e94d45fb8787f3bbfd940c9df6bb076999d8feb6f299f90d00524364f93ae23", + "line": 7058, + "resource_type": "aws_instance", + "resource_name": "example-instance-784", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example784", + "search_line": 7058, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b6cb2d2accf66903557f368bcdc27f2baf1a6be230525b6693f6b9ce06a29270", + "line": 4889, + "resource_type": "aws_instance", + "resource_name": "example-instance-543", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example543", + "search_line": 4889, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f02df1d43b2d2ecbd5069448591b625681dd00eb17a40f09336058c7c1f48e4d", + "line": 6779, + "resource_type": "aws_instance", + "resource_name": "example-instance-753", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example753", + "search_line": 6779, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cca205fbf7a8c5f79a2cf74be38de852fcc0a7e72c220692a354a03d38253c25", + "line": 3305, + "resource_type": "aws_instance", + "resource_name": "example-instance-367", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example367", + "search_line": 3305, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7570e5090f6557c84dcf7705007d7b343e3c80573025b00dbcc8cdec9fe37eda", + "line": 7391, + "resource_type": "aws_instance", + "resource_name": "example-instance-821", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example821", + "search_line": 7391, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ec0a5aab4d54fd9ca90a0ff7f89e75ea20bcca75fa21e876f8fd698d48a7d1a4", + "line": 3836, + "resource_type": "aws_instance", + "resource_name": "example-instance-426", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example426", + "search_line": 3836, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ed104bed969279bcacadeb9903c36ed821829adac8ac2c6bd9e722561eb5e825", + "line": 3917, + "resource_type": "aws_instance", + "resource_name": "example-instance-435", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example435", + "search_line": 3917, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c1f0bfa023de4d91a87b242261c5aa40aa8089a2a4955d6e1a658abd30a7058c", + "line": 767, + "resource_type": "aws_instance", + "resource_name": "example-instance-85", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example85", + "search_line": 767, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "102c28d76fa7b7fe0dc99ac20ee85824e740de399e8a2c44baa421f00cead4f7", + "line": 8021, + "resource_type": "aws_instance", + "resource_name": "example-instance-891", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example891", + "search_line": 8021, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "685f6dcb95d6b8e42c4cbcf8cd33f95505de2c8d11958d21370039faa09b6dc4", + "line": 2738, + "resource_type": "aws_instance", + "resource_name": "example-instance-304", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example304", + "search_line": 2738, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "75ac30a58dfbf51ff26704b74260e6a28686d58434da67c82809de09ce8eda7c", + "line": 740, + "resource_type": "aws_instance", + "resource_name": "example-instance-82", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example82", + "search_line": 740, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "82f6846a01bc7599e03c18fcd1a7a8ef15303a056c85a175116157b6c97ffb46", + "line": 6005, + "resource_type": "aws_instance", + "resource_name": "example-instance-667", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example667", + "search_line": 6005, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f047c040f969a96952c9024582c9f2729dd3fec90f6357081be24cd34ec6a805", + "line": 7940, + "resource_type": "aws_instance", + "resource_name": "example-instance-882", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example882", + "search_line": 7940, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8eac576d8983037f3c5a23fcc1b6c04f89e511e0b6be76144e501a1734ea20b4", + "line": 2270, + "resource_type": "aws_instance", + "resource_name": "example-instance-252", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example252", + "search_line": 2270, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7a87dbbb94890d92fae672a718eb39ca651fec7e6618bfc92e2ec0430fe4cb8c", + "line": 8714, + "resource_type": "aws_instance", + "resource_name": "example-instance-968", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example968", + "search_line": 8714, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3947b91c8fe81b1ed6d0092aa0f41aeac418c9767dec63377be5a48a490615ad", + "line": 3935, + "resource_type": "aws_instance", + "resource_name": "example-instance-437", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example437", + "search_line": 3935, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "676121820ebf9858ceb2625889d70967238d9e40486486c0185d3b4bee0d025b", + "line": 1001, + "resource_type": "aws_instance", + "resource_name": "example-instance-111", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example111", + "search_line": 1001, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "958baae3b3675f0bb673ca909e5ea519007cf23b8cbe2df468a67a4d4329420e", + "line": 4502, + "resource_type": "aws_instance", + "resource_name": "example-instance-500", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example500", + "search_line": 4502, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dc9814c6b118bf8e97833eece3ff55ec9ecd4e77240be2f91316c98ab467bc6d", + "line": 3269, + "resource_type": "aws_instance", + "resource_name": "example-instance-363", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example363", + "search_line": 3269, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6604defc9c6c88a0775911d87bdb87f20b1592871b49af91e8ab31999e0fb212", + "line": 1460, + "resource_type": "aws_instance", + "resource_name": "example-instance-162", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example162", + "search_line": 1460, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "21ded73eb4c71d9811d7d8444cd2d96d773f93e1b5ffb2fee58fab3950af57b6", + "line": 4358, + "resource_type": "aws_instance", + "resource_name": "example-instance-484", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example484", + "search_line": 4358, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8ca307fb2470fe3715bbef81eed098c490c1eb257e7bb4677f08b4ba65a6c715", + "line": 8777, + "resource_type": "aws_instance", + "resource_name": "example-instance-975", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example975", + "search_line": 8777, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0a61e7eb6631385de6640d9cf3d9190416d37a69a06545e5bf6fbc26ee9e9672", + "line": 1154, + "resource_type": "aws_instance", + "resource_name": "example-instance-128", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example128", + "search_line": 1154, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ac2a38818fded3a29654bf788115aa45d2ab90745e2c4fae9376a2e4a147189d", + "line": 2477, + "resource_type": "aws_instance", + "resource_name": "example-instance-275", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example275", + "search_line": 2477, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5d926906ba8863260f118cc4de5d2a50ac66e8721a5c50caa10a932465ceb3e7", + "line": 8669, + "resource_type": "aws_instance", + "resource_name": "example-instance-963", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example963", + "search_line": 8669, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "de79f6854e144127565f62fce6fe2f467ed7f89ac5d06f4eaf608938f3825ec3", + "line": 4124, + "resource_type": "aws_instance", + "resource_name": "example-instance-458", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example458", + "search_line": 4124, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6c4ae26c5da422c75bc2fa963d089232728ee258d8de5355168faf685db874b6", + "line": 2009, + "resource_type": "aws_instance", + "resource_name": "example-instance-223", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example223", + "search_line": 2009, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "eecc503a323e748a34cfc42b50f7dcb23eba38f25bdb6a6cb42dc0eed4bca772", + "line": 713, + "resource_type": "aws_instance", + "resource_name": "example-instance-79", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example79", + "search_line": 713, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7e86bc087096f805c7405486bb8b417b02be34bf99b82defa69ed0a0431b657b", + "line": 7715, + "resource_type": "aws_instance", + "resource_name": "example-instance-857", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example857", + "search_line": 7715, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "882ceaabd9fa7118d4d6da7cf837820bda98d72fb6dc85db07e41def82477064", + "line": 3332, + "resource_type": "aws_instance", + "resource_name": "example-instance-370", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example370", + "search_line": 3332, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5258276fe7325d1dfb53a05095993d0053c97dc2736740660745ac478a9c69d3", + "line": 1136, + "resource_type": "aws_instance", + "resource_name": "example-instance-126", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example126", + "search_line": 1136, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "85fb1d7830678e619f061958d3a4a72d332734c2c7a8cba61dce50d2f9458e3e", + "line": 6329, + "resource_type": "aws_instance", + "resource_name": "example-instance-703", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example703", + "search_line": 6329, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cf53b17c3d266de817fb8b36fb48810a495e7186e6113bf64d4ad540cbe85ff7", + "line": 5492, + "resource_type": "aws_instance", + "resource_name": "example-instance-610", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example610", + "search_line": 5492, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7b4ba3c5b190c1c0974eaf4f2063961779335a7a50990366878b8aff3a0a4e86", + "line": 6167, + "resource_type": "aws_instance", + "resource_name": "example-instance-685", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example685", + "search_line": 6167, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4b91dd3a17cc34d205e2cac5e6f13580adffbaae428096c894d13cfe2c89f274", + "line": 1964, + "resource_type": "aws_instance", + "resource_name": "example-instance-218", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example218", + "search_line": 1964, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2434c074b8b5dd9e695b1bf8d2412253ad8d99e0be09287b9303572fb80e810c", + "line": 4079, + "resource_type": "aws_instance", + "resource_name": "example-instance-453", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example453", + "search_line": 4079, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2d16512348c56c5f3425a8f8920bbad593866ea5e4e93beb772df06b254adf01", + "line": 1379, + "resource_type": "aws_instance", + "resource_name": "example-instance-153", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example153", + "search_line": 1379, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e50c58c10147f62aa879ac6c9b910758dd3a1d0c59e241605bd1160d49ec907e", + "line": 1595, + "resource_type": "aws_instance", + "resource_name": "example-instance-177", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example177", + "search_line": 1595, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "866ce940813282f6ef586b1eb50a8a67acdc1d02d8bfa328bef8f1e39d99575c", + "line": 5771, + "resource_type": "aws_instance", + "resource_name": "example-instance-641", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example641", + "search_line": 5771, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6ec776378064dc72098b9117d1c3bef77c1e445856938f46f54516f2056ae92c", + "line": 6410, + "resource_type": "aws_instance", + "resource_name": "example-instance-712", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example712", + "search_line": 6410, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6f0ad1068fc1a0e9836bc49c2be90b88e822477feb61f18dfea9f1a389bec891", + "line": 8192, + "resource_type": "aws_instance", + "resource_name": "example-instance-910", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example910", + "search_line": 8192, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "145ebee1c2a638add21da7306af5b3b494fa35b822039c10caca3688f8fe0b20", + "line": 8696, + "resource_type": "aws_instance", + "resource_name": "example-instance-966", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example966", + "search_line": 8696, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d4f94fa62944b5bf462bab76aa4cf1daa136e43e73cdd23b087f822d693debef", + "line": 8606, + "resource_type": "aws_instance", + "resource_name": "example-instance-956", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example956", + "search_line": 8606, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2b53570f2be06bf308a79dfe04b3e623d7b19f74a1e7ac8041c8b19fb18533dd", + "line": 1730, + "resource_type": "aws_instance", + "resource_name": "example-instance-192", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example192", + "search_line": 1730, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "540916e37ec90028caafecb3973be40600d1557662bd6779dbf74db4f9638e09", + "line": 902, + "resource_type": "aws_instance", + "resource_name": "example-instance-100", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example100", + "search_line": 902, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "445250b6377e2fb9b33372935402204ed6c465d5142541da763f956805ae6815", + "line": 659, + "resource_type": "aws_instance", + "resource_name": "example-instance-73", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example73", + "search_line": 659, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b83379c846360256d2f9edf6292a49f506637ea442cefc35881eeae0e96dc0bb", + "line": 695, + "resource_type": "aws_instance", + "resource_name": "example-instance-77", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example77", + "search_line": 695, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "877ababc2751872a6fe1fe8494e644c50bc9be8953bd618122469768d626d7d0", + "line": 6950, + "resource_type": "aws_instance", + "resource_name": "example-instance-772", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example772", + "search_line": 6950, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8c5e0c70c1f1a12ec23dbe59136a9a618bc56348a8da0b398cae321bb1c23afe", + "line": 4619, + "resource_type": "aws_instance", + "resource_name": "example-instance-513", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example513", + "search_line": 4619, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "01d40445a9a050298b7ecb8a77d2028276e2931f655e68a7cbf3582153445601", + "line": 2567, + "resource_type": "aws_instance", + "resource_name": "example-instance-285", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example285", + "search_line": 2567, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6b2d19cd57f169241db5baa5b289172d9209b9b1636f8946ee033db12adf14fa", + "line": 8624, + "resource_type": "aws_instance", + "resource_name": "example-instance-958", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example958", + "search_line": 8624, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9c893c65f2614f8abd7d1942f1ca1d9747637bda3ac22914e10234f0fd54cce1", + "line": 5141, + "resource_type": "aws_instance", + "resource_name": "example-instance-571", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example571", + "search_line": 5141, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9a9c6158e003a9186a9e19af0a25089a02fb5948b07490d622722b7dbbdd41fc", + "line": 3125, + "resource_type": "aws_instance", + "resource_name": "example-instance-347", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example347", + "search_line": 3125, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d2bbaf0893167e0b22fac54a3899d2fb34f7400a2590e3c81066c88fdc264fff", + "line": 6734, + "resource_type": "aws_instance", + "resource_name": "example-instance-748", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example748", + "search_line": 6734, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "afbf5214d7c809a425c342ba2b1e77d63050fd3ac7d48d1c94eba07ec64eecdd", + "line": 3791, + "resource_type": "aws_instance", + "resource_name": "example-instance-421", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example421", + "search_line": 3791, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0191c10582dda00722cdf68966ad43341b9b67a58b4c93e3a7fde414a2402e47", + "line": 5069, + "resource_type": "aws_instance", + "resource_name": "example-instance-563", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example563", + "search_line": 5069, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "866d371d927db8c5b1ba2dcd64d76dae1f6059075bfd43056a9e0b123152cd2a", + "line": 3719, + "resource_type": "aws_instance", + "resource_name": "example-instance-413", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example413", + "search_line": 3719, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "87eccdf1c417168531b10fcd4dbe2125effc1a4e8742e04b2cc71df4d4c2604a", + "line": 4691, + "resource_type": "aws_instance", + "resource_name": "example-instance-521", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example521", + "search_line": 4691, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ba3bc570250d0690947b14bc344925937fe6b8330d42b74ccf42dc1bb24bd9f9", + "line": 2396, + "resource_type": "aws_instance", + "resource_name": "example-instance-266", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example266", + "search_line": 2396, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cd5a63726fe802336fce3cf0529fe9f0b809c5fdd4c7f100214a0a8db677f34e", + "line": 6149, + "resource_type": "aws_instance", + "resource_name": "example-instance-683", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example683", + "search_line": 6149, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3506dd488b0828ab8c365f2f2ab7611ca8471ee662e0bdfca9ba591e9f9c0a40", + "line": 5321, + "resource_type": "aws_instance", + "resource_name": "example-instance-591", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example591", + "search_line": 5321, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bb434a339e2cd5245c5db62a6ee2c50fbf22dc16916f7122b40a616b0a364eae", + "line": 5960, + "resource_type": "aws_instance", + "resource_name": "example-instance-662", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example662", + "search_line": 5960, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "61a06497f56625def69fad9504deaa0ac6a585b3882b8c98717989621c7ca6e4", + "line": 4376, + "resource_type": "aws_instance", + "resource_name": "example-instance-486", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example486", + "search_line": 4376, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "324adc3374cea9b298520732041ba3dc45b885b94519e2ad964815047a961ef2", + "line": 7319, + "resource_type": "aws_instance", + "resource_name": "example-instance-813", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example813", + "search_line": 7319, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4d32c4d6bf8aef23fa1896897bf52136e662aad97e6201757a8d8412738a526f", + "line": 6032, + "resource_type": "aws_instance", + "resource_name": "example-instance-670", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example670", + "search_line": 6032, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1190df5699b908922ddcd7fbeb4a0611daa481ba1776c623cbcbf7d03222e5ac", + "line": 5474, + "resource_type": "aws_instance", + "resource_name": "example-instance-608", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example608", + "search_line": 5474, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "251501bc837956fef322b077bc4816328838dfa4d58ac87d030a08677af0454a", + "line": 254, + "resource_type": "aws_instance", + "resource_name": "example-instance-28", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example28", + "search_line": 254, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ce4c1e10b9bb98a9d11a9fdb80fb524a6f9828c9277f601f4d90db76cf3e3f78", + "line": 4979, + "resource_type": "aws_instance", + "resource_name": "example-instance-553", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example553", + "search_line": 4979, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0305cdf0e7dace420f33e1b02fc451509e46f84592e0b24c60bbbecef35c691b", + "line": 1361, + "resource_type": "aws_instance", + "resource_name": "example-instance-151", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example151", + "search_line": 1361, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1a4f643dae4a22440018a390788efe3e86c8e91585876a6374a0947c502f497b", + "line": 4187, + "resource_type": "aws_instance", + "resource_name": "example-instance-465", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example465", + "search_line": 4187, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "582fb8983e8c08e7a1764bf85852544a6bccb57eb5d3610680948831209a5a3e", + "line": 4925, + "resource_type": "aws_instance", + "resource_name": "example-instance-547", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example547", + "search_line": 4925, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c8059948d84d832a95c037ae07951f1b84715d0f5940e5a919bac0b39cdfc853", + "line": 6896, + "resource_type": "aws_instance", + "resource_name": "example-instance-766", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example766", + "search_line": 6896, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ae7e4cfe3d98a0dca67c76b1bab266f51ae07e17fc3011e2c30b7a56ebda1605", + "line": 110, + "resource_type": "aws_instance", + "resource_name": "example-instance-12", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example12", + "search_line": 110, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "69a0b8240672aff026bc9cd112ed75dde3cf955cc4a30cf1b50fce96d772e815", + "line": 1865, + "resource_type": "aws_instance", + "resource_name": "example-instance-207", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example207", + "search_line": 1865, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5fcd916faf19ce8330bde06be4f629680f3103402368852f5cf62cc0d9aaaffe", + "line": 1064, + "resource_type": "aws_instance", + "resource_name": "example-instance-118", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example118", + "search_line": 1064, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4a6ca04da4d6bb972a59133a7ad273db19328c6b6ddd79a2d3916a0b941f5417", + "line": 7589, + "resource_type": "aws_instance", + "resource_name": "example-instance-843", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example843", + "search_line": 7589, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "476c6777f30a893a74d98d1e1afccaf776ba69508494c3a41103bab0721e6bc6", + "line": 5654, + "resource_type": "aws_instance", + "resource_name": "example-instance-628", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example628", + "search_line": 5654, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e478ffcc8b8ab24dbc0ec8dd97701351e2e7d032c43674f0b62c368dae4abe59", + "line": 8363, + "resource_type": "aws_instance", + "resource_name": "example-instance-929", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example929", + "search_line": 8363, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2fe65c3a4ed8b2765ec8d82e27e342b25e1fa87e53218487efa4cb6a9948fc67", + "line": 4610, + "resource_type": "aws_instance", + "resource_name": "example-instance-512", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example512", + "search_line": 4610, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "811cac540a55dcd95658750a9ff2a132a4b3489fab633a271babfddddd751d22", + "line": 8264, + "resource_type": "aws_instance", + "resource_name": "example-instance-918", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example918", + "search_line": 8264, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e23def5fe96dea8baab7ae570d20a64e950520a8364e318b467609537405c93a", + "line": 7805, + "resource_type": "aws_instance", + "resource_name": "example-instance-867", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example867", + "search_line": 7805, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "15421b8d4e9be6de2b248cddcce0de2f7914aa6a962c9081e344e9ee320ce158", + "line": 6239, + "resource_type": "aws_instance", + "resource_name": "example-instance-693", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example693", + "search_line": 6239, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "79d9ac5a5fcc08b0cbb5abe0c3f3ac1359fc58bc0291fa2a9e76f9e4873caf83", + "line": 1118, + "resource_type": "aws_instance", + "resource_name": "example-instance-124", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example124", + "search_line": 1118, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e886d467b7f1ab62353b730e7d251825cbf492ccb9fda0bd583980f1f8babaf9", + "line": 2594, + "resource_type": "aws_instance", + "resource_name": "example-instance-288", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example288", + "search_line": 2594, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "88fbc7d145e804963b39cd9a5ff2a7bb71bf017f8235948a4abbfe2740fe25d4", + "line": 3665, + "resource_type": "aws_instance", + "resource_name": "example-instance-407", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example407", + "search_line": 3665, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9e30544184a7abc91374c974f9ffcd8a3e582cb9c179636f40fbdbec35f89f4c", + "line": 1685, + "resource_type": "aws_instance", + "resource_name": "example-instance-187", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example187", + "search_line": 1685, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "354906115b10c9a7aff16d77086a47842955e182e546ee1ec765650a09443d27", + "line": 8615, + "resource_type": "aws_instance", + "resource_name": "example-instance-957", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example957", + "search_line": 8615, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "be29693df2146b17a3f37a85c40eb11b80ee8b104dc1cd86ae4736e82ffc9327", + "line": 1712, + "resource_type": "aws_instance", + "resource_name": "example-instance-190", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example190", + "search_line": 1712, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2b642f0761071cff263bc6b3bb3698dc7b46efac4c349fa625c4dce6836c86cf", + "line": 2252, + "resource_type": "aws_instance", + "resource_name": "example-instance-250", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example250", + "search_line": 2252, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5c910334fadf01b4dad008f7788a1512ded1654c4c0cc97e6f477dbc38649c08", + "line": 7166, + "resource_type": "aws_instance", + "resource_name": "example-instance-796", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example796", + "search_line": 7166, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "99bd0c0fb9831f05ae0fa6713790104059ab41b005750e35234c27068cc5896a", + "line": 4682, + "resource_type": "aws_instance", + "resource_name": "example-instance-520", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example520", + "search_line": 4682, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "87aac6401081e6d5b44f3a9cbef58a84c0c353b9bb9d2549ee75faa9779cb75c", + "line": 4763, + "resource_type": "aws_instance", + "resource_name": "example-instance-529", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example529", + "search_line": 4763, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "88e66e1001cc5437a8eda7f95d71c27bb12bb08616ae6481481776efe1f19adf", + "line": 2675, + "resource_type": "aws_instance", + "resource_name": "example-instance-297", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example297", + "search_line": 2675, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d4c43212b1ef6907c748f793f800ce2c44eddfde367b420e0b5d916981731095", + "line": 6158, + "resource_type": "aws_instance", + "resource_name": "example-instance-684", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example684", + "search_line": 6158, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3f2122f41e88c4d2588c3898186e47a71e883b8995a031659a65f89ca15595f0", + "line": 8084, + "resource_type": "aws_instance", + "resource_name": "example-instance-898", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example898", + "search_line": 8084, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "12a15822585ce87ffb28647585388ad0fd635f662b2779ddab97aed35cc5f7b2", + "line": 6518, + "resource_type": "aws_instance", + "resource_name": "example-instance-724", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example724", + "search_line": 6518, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dabb4dc5f3756dc1d9285e6970cf91bfccf7f29f80aee185b0a80e8dc7db5782", + "line": 7373, + "resource_type": "aws_instance", + "resource_name": "example-instance-819", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example819", + "search_line": 7373, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c53c463d18db6515f9d07c418adddcd03db21215c7caafa1cbf12b8e0744c6c3", + "line": 8210, + "resource_type": "aws_instance", + "resource_name": "example-instance-912", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example912", + "search_line": 8210, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ff0cf3d685db4beeea1683b066f5a76819cdd0093fd06b207bf8446b89a6521e", + "line": 3692, + "resource_type": "aws_instance", + "resource_name": "example-instance-410", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example410", + "search_line": 3692, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "71bebf2292389883c474553b803c71c3942b87327ada20295458b0625bcebb81", + "line": 7553, + "resource_type": "aws_instance", + "resource_name": "example-instance-839", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example839", + "search_line": 7553, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d1ab172262d8ac4a57c3b1ed19f6e3bb18becd00e9106bf9f16f7919cc75275b", + "line": 3404, + "resource_type": "aws_instance", + "resource_name": "example-instance-378", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example378", + "search_line": 3404, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7debdfd3bd267896eb5a05f19531396d58afe8ce7403ad370f3b747811e5a74b", + "line": 4169, + "resource_type": "aws_instance", + "resource_name": "example-instance-463", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example463", + "search_line": 4169, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a9224dd1cf8603659327edd0ff82d56a781b6bcb577292d784f689c6baf1ab48", + "line": 6437, + "resource_type": "aws_instance", + "resource_name": "example-instance-715", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example715", + "search_line": 6437, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "66d3e48bf8541bae44c892de69bdbc3809a3379a380aa0b74788d669749ec93d", + "line": 3026, + "resource_type": "aws_instance", + "resource_name": "example-instance-336", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example336", + "search_line": 3026, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ed6b17afbfa0da88928bf9fe40e6134028f1c6eb05af83a94038245b72dce24f", + "line": 5150, + "resource_type": "aws_instance", + "resource_name": "example-instance-572", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example572", + "search_line": 5150, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2dc3e5deb3e0b96c553e825560ea1bf427d54b79cbb73497036d6485b55574a6", + "line": 317, + "resource_type": "aws_instance", + "resource_name": "example-instance-35", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example35", + "search_line": 317, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "219088c34c43b962dee30b8bc394a81984ba1bad9faa0007b0aee03a6be0c274", + "line": 7436, + "resource_type": "aws_instance", + "resource_name": "example-instance-826", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example826", + "search_line": 7436, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "588917efac120659e2455fe97d6f85c454b2cbfaca18121b88777ec522ce3e15", + "line": 2612, + "resource_type": "aws_instance", + "resource_name": "example-instance-290", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example290", + "search_line": 2612, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "946a373b40055cb274d43f1822fa0686ca6f07d7454c0fff66aba9473b2848dd", + "line": 4934, + "resource_type": "aws_instance", + "resource_name": "example-instance-548", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example548", + "search_line": 4934, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6f55a84acb0064fd4b8b47ffec84f66f65cba5b7d6dc0a73a131df7810a312cd", + "line": 3143, + "resource_type": "aws_instance", + "resource_name": "example-instance-349", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example349", + "search_line": 3143, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3a64c689547c34ed0298811388fc70ae942e570357bb4139e610119445d1be8e", + "line": 8759, + "resource_type": "aws_instance", + "resource_name": "example-instance-973", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example973", + "search_line": 8759, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f01ca69c2faeb2fa07b57aa7c1c36508e76a7e78869446721d762138deba3925", + "line": 2405, + "resource_type": "aws_instance", + "resource_name": "example-instance-267", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example267", + "search_line": 2405, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "894f89a0dc6705fe18141818fdb89d2ae0ac23d9fade10ae4dfde2bf7b4b1d50", + "line": 4718, + "resource_type": "aws_instance", + "resource_name": "example-instance-524", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example524", + "search_line": 4718, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "31dad8434adca04cde051816fe077cbf0f002488ce2e50bf4820b69acd76d50e", + "line": 38, + "resource_type": "aws_instance", + "resource_name": "example-instance-4", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example4", + "search_line": 38, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9403cc4028c75cf199e556bb28432ecb8f601c172791aa4b8cadb7d788f5691f", + "line": 1253, + "resource_type": "aws_instance", + "resource_name": "example-instance-139", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example139", + "search_line": 1253, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1155639ff8ed81ead0a180a10d8379bdbc8aa9ad02f563687d50be8491f1d86c", + "line": 4475, + "resource_type": "aws_instance", + "resource_name": "example-instance-497", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example497", + "search_line": 4475, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2b9e4fcee5d5fb462fed10cd56ec6b085a165c0305754952c14ad3bbbf4e3dc6", + "line": 5177, + "resource_type": "aws_instance", + "resource_name": "example-instance-575", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example575", + "search_line": 5177, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a989d060d6cc33a8eccaec1240908454849718ca08f0ac0c26a2128a61b15663", + "line": 8660, + "resource_type": "aws_instance", + "resource_name": "example-instance-962", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example962", + "search_line": 8660, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3ab1b77c9482b75fdec267575ffefacd97f11581d057c566e409227e17026f51", + "line": 5258, + "resource_type": "aws_instance", + "resource_name": "example-instance-584", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example584", + "search_line": 5258, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "44c39cd7d46138a9549ba156f02574a5eba19a807bb345bf6a8ba3a590b5132d", + "line": 8417, + "resource_type": "aws_instance", + "resource_name": "example-instance-935", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example935", + "search_line": 8417, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "042f6962a53887b1f2f770973907e4911f599b7ddd34694d7dfe65f0e3e39030", + "line": 1910, + "resource_type": "aws_instance", + "resource_name": "example-instance-212", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example212", + "search_line": 1910, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6748466c7ac42b00f550bc3dbc8bd63721579e9a149296a9066016834cabdd74", + "line": 5564, + "resource_type": "aws_instance", + "resource_name": "example-instance-618", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example618", + "search_line": 5564, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7b5d70d6ade6e9d8ee44595500fdb3f1c2bf624f2ef65acbcec7871ce2cc680a", + "line": 8129, + "resource_type": "aws_instance", + "resource_name": "example-instance-903", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example903", + "search_line": 8129, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7593357bca728476d4bf04d1502d2de19c2f21a389eb9d8c1ea77d8b0efbdb11", + "line": 443, + "resource_type": "aws_instance", + "resource_name": "example-instance-49", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example49", + "search_line": 443, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8ff9319c213707629700d8d20dcd0a31fa791932926bfe41a15d1eff72fc9167", + "line": 2441, + "resource_type": "aws_instance", + "resource_name": "example-instance-271", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example271", + "search_line": 2441, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9fdc088fb7e566318d159b5fa2926c9dc269da3981d05247674eeaca2f4cfce2", + "line": 8048, + "resource_type": "aws_instance", + "resource_name": "example-instance-894", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example894", + "search_line": 8048, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "23ba3276943d3b4ec9ff2232b04f2765a01619e07b8645169a147eb1123fd7a1", + "line": 2954, + "resource_type": "aws_instance", + "resource_name": "example-instance-328", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example328", + "search_line": 2954, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "310a95569bf26bec18683e16df54ac9a298052ff09196c3c73375adbfe219a28", + "line": 1388, + "resource_type": "aws_instance", + "resource_name": "example-instance-154", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example154", + "search_line": 1388, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1a6023cd8b95538a554d95d3576d07b9d3c22eb229a67bf7379251b842778af4", + "line": 452, + "resource_type": "aws_instance", + "resource_name": "example-instance-50", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example50", + "search_line": 452, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "80e9dfa5193d7a5e6198c5fb8586334f7a36169cd18e78f71e24273534a4c813", + "line": 8399, + "resource_type": "aws_instance", + "resource_name": "example-instance-933", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example933", + "search_line": 8399, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "28289aa5beecc668b61efe275d2be4d3b4e4afe21b85e7ed05ef5500f942a690", + "line": 4115, + "resource_type": "aws_instance", + "resource_name": "example-instance-457", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example457", + "search_line": 4115, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8e93dccd5b21aba61dd47993bc826072968b9cde86f335a4b6daad2e70f6b508", + "line": 1757, + "resource_type": "aws_instance", + "resource_name": "example-instance-195", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example195", + "search_line": 1757, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d261a410caf6445916a28004740211159aecabe52935c3eb42ac20da3afc84c6", + "line": 4907, + "resource_type": "aws_instance", + "resource_name": "example-instance-545", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example545", + "search_line": 4907, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d720db606e3748808754695a793c11eecb3d58247d108a6e0d1d1448499dd59e", + "line": 7238, + "resource_type": "aws_instance", + "resource_name": "example-instance-804", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example804", + "search_line": 7238, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "100909c97dbf3e38acb2640ca8a6cedf601916d644f4e556f61670738633b892", + "line": 6275, + "resource_type": "aws_instance", + "resource_name": "example-instance-697", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example697", + "search_line": 6275, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b1da6b17c78d023672ea8b7f301a65a39103f4acb8fa837d14b08c51bc323186", + "line": 6590, + "resource_type": "aws_instance", + "resource_name": "example-instance-732", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example732", + "search_line": 6590, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c21d9ab6e80d130936a0ef0f42de957fc87281d46a684dc7944a67173e572db0", + "line": 1937, + "resource_type": "aws_instance", + "resource_name": "example-instance-215", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example215", + "search_line": 1937, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4c9cfa86eec849afccc3985f32cfa4e9ba031892bed3fda63dacd3e4802d379b", + "line": 8147, + "resource_type": "aws_instance", + "resource_name": "example-instance-905", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example905", + "search_line": 8147, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dfec8cfe94e12ca7f2b0ce39d3dfb7f0af32707a5efd7f460a1f8c04d739bd3e", + "line": 1703, + "resource_type": "aws_instance", + "resource_name": "example-instance-189", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example189", + "search_line": 1703, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d3fb0bab855a436dd6ca4f46a00403b5a40e4dbba45dba83a75a21ac0bbb062c", + "line": 1541, + "resource_type": "aws_instance", + "resource_name": "example-instance-171", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example171", + "search_line": 1541, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bec8295d8762f34f368c21a80fdb36bc87ce40da100a1af8ffc68a9ee23a09ba", + "line": 1577, + "resource_type": "aws_instance", + "resource_name": "example-instance-175", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example175", + "search_line": 1577, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "19dd0a083281a85475b172cf42c9bb5d561fc9343d7d59aadd9adb8477e8fa7f", + "line": 7121, + "resource_type": "aws_instance", + "resource_name": "example-instance-791", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example791", + "search_line": 7121, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d1f087c2c92d0a4b3afb9faa1811341eb358957e398fa52feee8beb5743b3fc1", + "line": 1289, + "resource_type": "aws_instance", + "resource_name": "example-instance-143", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example143", + "search_line": 1289, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b35bfda34b3f676a1a390241ba5b28a095ea8882ab944e37f50d912c8a2e4218", + "line": 8498, + "resource_type": "aws_instance", + "resource_name": "example-instance-944", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example944", + "search_line": 8498, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "27de6d933ed76b7a2d2e60de0e0f6605bdec9104ebc4a40701d7ce3803aeb347", + "line": 641, + "resource_type": "aws_instance", + "resource_name": "example-instance-71", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example71", + "search_line": 641, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d5cad096536345ab18a3df0682135baaa83860d1a1d02f157491a837da23f119", + "line": 3764, + "resource_type": "aws_instance", + "resource_name": "example-instance-418", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example418", + "search_line": 3764, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bea6998417f4b4f534fd3ee783c72238790612690a32369208bcc8af5b8ea006", + "line": 542, + "resource_type": "aws_instance", + "resource_name": "example-instance-60", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example60", + "search_line": 542, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7288c8d7c1d5b7ef7e720f3d86ebe70fc3659708ad33b1f1c6464366d72e4b50", + "line": 5906, + "resource_type": "aws_instance", + "resource_name": "example-instance-656", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example656", + "search_line": 5906, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "aa6ed71d93a16934d34c0632978a3b65b224d5402a813a0d0efe7800abcdef99", + "line": 7103, + "resource_type": "aws_instance", + "resource_name": "example-instance-789", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example789", + "search_line": 7103, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "803a364a3113579f1dedf0a1e66aa7971a761c7289244f16206a3a4eb571d647", + "line": 6248, + "resource_type": "aws_instance", + "resource_name": "example-instance-694", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example694", + "search_line": 6248, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ede653a34745fe30331e408198c00d084d13243ebfbd6a6f05c291263d7fa7e5", + "line": 4286, + "resource_type": "aws_instance", + "resource_name": "example-instance-476", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example476", + "search_line": 4286, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1cbd0a80883c44a3680b116ad233bc0f41376e62d64414b712e1095fde187320", + "line": 7688, + "resource_type": "aws_instance", + "resource_name": "example-instance-854", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example854", + "search_line": 7688, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a3453c68ab1ad833ee6dac4ad7db7b9bb3a727f90ab085780d082dc5f085e7ec", + "line": 7859, + "resource_type": "aws_instance", + "resource_name": "example-instance-873", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example873", + "search_line": 7859, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a81534b6680a9f0712bf727b563f11d3bfbf9208696584c3234f1ceb1b7c812d", + "line": 8804, + "resource_type": "aws_instance", + "resource_name": "example-instance-978", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example978", + "search_line": 8804, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5abeb730a993ab482037bde2534c467d4e9ed053f3ca6943414c2b3be7eb888b", + "line": 2423, + "resource_type": "aws_instance", + "resource_name": "example-instance-269", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example269", + "search_line": 2423, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "26a0909cef1019267ba548768cfce73bd89611f67b80ac11f47b0c547875e8f4", + "line": 8174, + "resource_type": "aws_instance", + "resource_name": "example-instance-908", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example908", + "search_line": 8174, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8301e93e557f6197c5f02ca05cdd6a5e0a1370f2600018a3c9cdcdbd3c7cdf1c", + "line": 137, + "resource_type": "aws_instance", + "resource_name": "example-instance-15", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example15", + "search_line": 137, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7840973112e295428f37925c1844797013c6930e67d6d009e702d7157281504e", + "line": 182, + "resource_type": "aws_instance", + "resource_name": "example-instance-20", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example20", + "search_line": 182, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e37038857ffa88c3118f221372ea32d7967f2c50dd4a2e67df45312a5ad1b554", + "line": 2522, + "resource_type": "aws_instance", + "resource_name": "example-instance-280", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example280", + "search_line": 2522, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bb5ece19672462be0a6c5bbf9af1a326e00c57d7a54047593bedb8e48812cf86", + "line": 7949, + "resource_type": "aws_instance", + "resource_name": "example-instance-883", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example883", + "search_line": 7949, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ae0ccdcbb7870928bde38dabe97ce136ca03b8b1f925fe1ec489aa0c2951e686", + "line": 1748, + "resource_type": "aws_instance", + "resource_name": "example-instance-194", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example194", + "search_line": 1748, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bec7fd0210cbb3690052cae12c9f029394259bc513a35bd41c4044586c9f33c0", + "line": 308, + "resource_type": "aws_instance", + "resource_name": "example-instance-34", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example34", + "search_line": 308, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "66a57d5d63000775b6fe6278b6cb52c1bb87c15c36fecdda459ea532b0608a8a", + "line": 344, + "resource_type": "aws_instance", + "resource_name": "example-instance-38", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example38", + "search_line": 344, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b2ec8d4f90b883ce65bdec1f976164a14a81370ed4c0e53603784129cd9545f1", + "line": 2153, + "resource_type": "aws_instance", + "resource_name": "example-instance-239", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example239", + "search_line": 2153, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9dc2dce03f78082179be7d0df0e3067b616f875fa46f5b27aa3c02508e0a468b", + "line": 7787, + "resource_type": "aws_instance", + "resource_name": "example-instance-865", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example865", + "search_line": 7787, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4c71d27055700859aa3ddd106ae0f39263f175c48aaab3487bc5c68c5cc3a0b8", + "line": 6284, + "resource_type": "aws_instance", + "resource_name": "example-instance-698", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example698", + "search_line": 6284, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5e8882eda41b68da5ef850ac2d079ed2d0f96a277d84827389579971e1c5180c", + "line": 7409, + "resource_type": "aws_instance", + "resource_name": "example-instance-823", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example823", + "search_line": 7409, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bcd1ee2a971348777fed6cafec848b06e2c2268f727bb100903e547de5e1735b", + "line": 731, + "resource_type": "aws_instance", + "resource_name": "example-instance-81", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example81", + "search_line": 731, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "673040bf459aa01db279eb261c969cfe7511c710bf24ece2b5d7bdb1ca19c3a6", + "line": 8390, + "resource_type": "aws_instance", + "resource_name": "example-instance-932", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example932", + "search_line": 8390, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5ab095acff964de5e4be71d3c8e1ad9e451adb11ae09a23e0953547425cc2c71", + "line": 1199, + "resource_type": "aws_instance", + "resource_name": "example-instance-133", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example133", + "search_line": 1199, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2f11e0b663fc71a447c91a65596255dbe3d42b9ca44411a0c4733133fb067a12", + "line": 3215, + "resource_type": "aws_instance", + "resource_name": "example-instance-357", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example357", + "search_line": 3215, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2aef9954281dc85cc4b3d83cccedf6ef283820cf87858b32df0ce5133a490190", + "line": 6995, + "resource_type": "aws_instance", + "resource_name": "example-instance-777", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example777", + "search_line": 6995, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c0c3400b375ecce8e65728ad1449e312f34009a5268499902800b80f337f4f60", + "line": 416, + "resource_type": "aws_instance", + "resource_name": "example-instance-46", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example46", + "search_line": 416, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6d3f3c015277b6085f66d00be9da8bddd54ca6510cb384799d5b2182eb0c30fd", + "line": 677, + "resource_type": "aws_instance", + "resource_name": "example-instance-75", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example75", + "search_line": 677, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fdb53cf4c38abfa708119ed31e315f254f7ca63f88d1e2aa208f57c590458122", + "line": 2639, + "resource_type": "aws_instance", + "resource_name": "example-instance-293", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example293", + "search_line": 2639, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5f94e12355d3c790175375291d0ac4bc17d844cab7df6876f74ea9d68a16acaf", + "line": 3971, + "resource_type": "aws_instance", + "resource_name": "example-instance-441", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example441", + "search_line": 3971, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3cf222c4f5738aafa35845942fb4f6227ef055658e5ef0ea86c86df49059cf0b", + "line": 8588, + "resource_type": "aws_instance", + "resource_name": "example-instance-954", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example954", + "search_line": 8588, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f304a1e02db6a198be12b8e26ab19c6d96ecb6b07b2fb2fafd6d8b47d51aa47a", + "line": 686, + "resource_type": "aws_instance", + "resource_name": "example-instance-76", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example76", + "search_line": 686, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "59210cfa11a1a73077435cdcc8b39ac17ff34acdba3ca7076ccc2ab2971d9e20", + "line": 1847, + "resource_type": "aws_instance", + "resource_name": "example-instance-205", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example205", + "search_line": 1847, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e6169ba640694a601ecd56ebe258d64076e2399bb15dfeb0978b34c114fbf28a", + "line": 650, + "resource_type": "aws_instance", + "resource_name": "example-instance-72", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example72", + "search_line": 650, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ac170d40fb0b919be3a3d67c4d80aa1d5a42499a76802314cae00e2d9adf3efa", + "line": 281, + "resource_type": "aws_instance", + "resource_name": "example-instance-31", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example31", + "search_line": 281, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1434843f4082666ff50d4c6117ea30cd254ccdfb241bcee7f67a25463128ae82", + "line": 5204, + "resource_type": "aws_instance", + "resource_name": "example-instance-578", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example578", + "search_line": 5204, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b1ed3f5874fc6e2bbb5381d23bbf7e4e048ae62c63ed5c37b182b7e4da5f5c62", + "line": 8318, + "resource_type": "aws_instance", + "resource_name": "example-instance-924", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example924", + "search_line": 8318, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a1428ce08782fc17f78c8680e526a948cfb796fb950a1a6638b025c6a981a756", + "line": 2945, + "resource_type": "aws_instance", + "resource_name": "example-instance-327", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example327", + "search_line": 2945, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "944b4d0563f234b6b16c9e5bd53ed2e266edbfb2bef0dae6605aaeea38333984", + "line": 3458, + "resource_type": "aws_instance", + "resource_name": "example-instance-384", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example384", + "search_line": 3458, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "45c905079a49c0d7a5d790e2509d067f11793911cf04c95b78ed1c98f12c3e06", + "line": 2855, + "resource_type": "aws_instance", + "resource_name": "example-instance-317", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example317", + "search_line": 2855, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d431626fa19b2e01768827fdbf23fb5818bb0a92084e2cd38e0b0ff60c1aeb28", + "line": 236, + "resource_type": "aws_instance", + "resource_name": "example-instance-26", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example26", + "search_line": 236, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a9c73c1553cea0b7bbe29630bace6b6d81a3a563c375ab981e36dc0b3a91f68d", + "line": 4394, + "resource_type": "aws_instance", + "resource_name": "example-instance-488", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example488", + "search_line": 4394, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "305553ab9363d5339bdeb68cfe7dcd675f8441ce3de0e6d30faa37268da2856c", + "line": 1784, + "resource_type": "aws_instance", + "resource_name": "example-instance-198", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example198", + "search_line": 1784, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1a8823f562d2d486f70aa02ed930970d42eb8bcf85c3cbf6f7981c85f7d9265e", + "line": 4835, + "resource_type": "aws_instance", + "resource_name": "example-instance-537", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example537", + "search_line": 4835, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "175c1b175e727cac521b5406f75f205d9cb2b7f709b550d312235d22d6274cd2", + "line": 3593, + "resource_type": "aws_instance", + "resource_name": "example-instance-399", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example399", + "search_line": 3593, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c295ec7b6cdc94ab15c1f5d6e7b4d2f8dca452cbc8a59609b9d4e272cc201f71", + "line": 5951, + "resource_type": "aws_instance", + "resource_name": "example-instance-661", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example661", + "search_line": 5951, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fcb1b6b82fa39f871fffc77a5eafc0af0571eada2e633679b9bdfb9c91ff0f4d", + "line": 1955, + "resource_type": "aws_instance", + "resource_name": "example-instance-217", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example217", + "search_line": 1955, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fe7719f8350cf3d5b8a56920e1a61cca209125141fe45cbb743f114d6cef1656", + "line": 569, + "resource_type": "aws_instance", + "resource_name": "example-instance-63", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example63", + "search_line": 569, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5e2e28f87445088030bdceed1f8d1377909b17daf4956d871e89812ba913f587", + "line": 2207, + "resource_type": "aws_instance", + "resource_name": "example-instance-245", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example245", + "search_line": 2207, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e042d2522689e2dc003b93f03444bf218f797d7888f708a3934d305108779361", + "line": 290, + "resource_type": "aws_instance", + "resource_name": "example-instance-32", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example32", + "search_line": 290, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "84b445cbd890e605c6bd7265197b74a31c5c418d7b36fe961ac5f722394a6db9", + "line": 3440, + "resource_type": "aws_instance", + "resource_name": "example-instance-382", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example382", + "search_line": 3440, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3651f5336335d80ee532a648c23878fc3411061c302b98ccc03c49d29b4fbb1e", + "line": 7067, + "resource_type": "aws_instance", + "resource_name": "example-instance-785", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example785", + "search_line": 7067, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a548510b9e3677ac2a1ed8e4a1baec400c694954a89c395cf9bd7a0cd9751043", + "line": 5528, + "resource_type": "aws_instance", + "resource_name": "example-instance-614", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example614", + "search_line": 5528, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "68765cb50eb2b6c68445ddd937d9073c38ca65d8d7d132d7150bda4bce8da4ca", + "line": 371, + "resource_type": "aws_instance", + "resource_name": "example-instance-41", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example41", + "search_line": 371, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fee76daf5df91f7483df1bb04404190dbab413dc7478e01e1aaf3e188e0f736c", + "line": 299, + "resource_type": "aws_instance", + "resource_name": "example-instance-33", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example33", + "search_line": 299, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "71afa67e19698f74eaa65ea6563703e8e084bb794520a547194c0b1e479fea32", + "line": 6050, + "resource_type": "aws_instance", + "resource_name": "example-instance-672", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example672", + "search_line": 6050, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fc3d8c515dbd74c45cca3385fc8ad01e67ea23526fe6a6c04b08b58e8ec7bb75", + "line": 7256, + "resource_type": "aws_instance", + "resource_name": "example-instance-806", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example806", + "search_line": 7256, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5800dfdeb87afa750b336a889f2e8f8a1467b042384f971d0bb988bad779ceaa", + "line": 6788, + "resource_type": "aws_instance", + "resource_name": "example-instance-754", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example754", + "search_line": 6788, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3eda2cb961d8d1c215e9b823b147d78b8aa3e71f28ce046c00631c6c9b1d536c", + "line": 2360, + "resource_type": "aws_instance", + "resource_name": "example-instance-262", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example262", + "search_line": 2360, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4a4dbeb5a461a562570acde049556caedcbefc5a8fc940a1b211f8f5c225490f", + "line": 5060, + "resource_type": "aws_instance", + "resource_name": "example-instance-562", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example562", + "search_line": 5060, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7965b337a6ae640d053bce29e1327729f55936bdf7c03af4bff8aa6ed35ce772", + "line": 5051, + "resource_type": "aws_instance", + "resource_name": "example-instance-561", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example561", + "search_line": 5051, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e5ad15dce0686450d4db509832703e79a3c8289d1669f981cd1b203a70f0c2f8", + "line": 8894, + "resource_type": "aws_instance", + "resource_name": "example-instance-988", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example988", + "search_line": 8894, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "58451eb0fbc5c455c75073be21b3a12be7030934b8edb482b55e3d35a90801ac", + "line": 5753, + "resource_type": "aws_instance", + "resource_name": "example-instance-639", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example639", + "search_line": 5753, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a0bfe9c38861addcfacc307771a13b71030c577464abb0db91e9630086be1c8a", + "line": 8300, + "resource_type": "aws_instance", + "resource_name": "example-instance-922", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example922", + "search_line": 8300, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fce94c9f1c9c43aef8bce9a20bf0e5aaa1a6e47d78612ac093d0ba9dd158c47a", + "line": 5447, + "resource_type": "aws_instance", + "resource_name": "example-instance-605", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example605", + "search_line": 5447, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a1000ec75a6cf633604d4843ff9b7b8f8f512e07a1278ee96a52476500a1bb55", + "line": 7031, + "resource_type": "aws_instance", + "resource_name": "example-instance-781", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example781", + "search_line": 7031, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "00a1d55497b29ba6262baf231057d488fbde76d0de4bc148fc1eeccd23adcb15", + "line": 5348, + "resource_type": "aws_instance", + "resource_name": "example-instance-594", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example594", + "search_line": 5348, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c91d4f2896ef02b8934fabdf144fa72776011d41498126d3464925ac356ed1ff", + "line": 947, + "resource_type": "aws_instance", + "resource_name": "example-instance-105", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example105", + "search_line": 947, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f56aa8438c116bfec5205439d55dd663f52760bca897c18dfefb070d84feb24c", + "line": 1109, + "resource_type": "aws_instance", + "resource_name": "example-instance-123", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example123", + "search_line": 1109, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "08d34cb11c50947017f3df8db9eb8c7d6b5bc18233d7013bbd4acb87b876501e", + "line": 3152, + "resource_type": "aws_instance", + "resource_name": "example-instance-350", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example350", + "search_line": 3152, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b6cb75b5f209e1852ef67afe20f32c4f13fec91d7ce59efce80c002f7d4c9580", + "line": 1190, + "resource_type": "aws_instance", + "resource_name": "example-instance-132", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example132", + "search_line": 1190, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "654799ff8f8843d2cdce57341bc7420d0aaccbdb239b9af425360945769a8f13", + "line": 2018, + "resource_type": "aws_instance", + "resource_name": "example-instance-224", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example224", + "search_line": 2018, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5e28e245e9d46dfbfcb7bd5413672ae75c8992ff103c7dbb1f9a19b6955301ee", + "line": 1856, + "resource_type": "aws_instance", + "resource_name": "example-instance-206", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example206", + "search_line": 1856, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "08f46a26f3ec0f2a61576dd8fa483e3bc0f267565e1a732d251dc5b0025c23bb", + "line": 2234, + "resource_type": "aws_instance", + "resource_name": "example-instance-248", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example248", + "search_line": 2234, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f1b4e226358da9b7c07fd6e7c58ea0f3a1d5e108aeb8aa4390d21a506e4b37f3", + "line": 6770, + "resource_type": "aws_instance", + "resource_name": "example-instance-752", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example752", + "search_line": 6770, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "97398244e19af40b333f99f51fbc26be4d496995bcd93a45471a2478f75b184d", + "line": 6473, + "resource_type": "aws_instance", + "resource_name": "example-instance-719", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example719", + "search_line": 6473, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7fbc93bac137adb748038aae6944534e1d985ba689103576208a129eee194816", + "line": 587, + "resource_type": "aws_instance", + "resource_name": "example-instance-65", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example65", + "search_line": 587, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7f3acfbc8b4cb713f59cb15b90610464f05097bfad2d0a46bcc6cf429c4b1eb0", + "line": 8039, + "resource_type": "aws_instance", + "resource_name": "example-instance-893", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example893", + "search_line": 8039, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f763b3e2d050df6db92acb38d3bb4807f8cd076c9bdc62a002615d3cfa974473", + "line": 5582, + "resource_type": "aws_instance", + "resource_name": "example-instance-620", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example620", + "search_line": 5582, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d39fe01d3ccb3835d0b57523bdbadcb2c95e170928d7fc181716fc1e0c752e6f", + "line": 6986, + "resource_type": "aws_instance", + "resource_name": "example-instance-776", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example776", + "search_line": 6986, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ab581ba8730bddb96f71926f9ef57800cc4e38d9ae38bd8fe6ca525f0d99ba7e", + "line": 8876, + "resource_type": "aws_instance", + "resource_name": "example-instance-986", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example986", + "search_line": 8876, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0573e7e0fb87e13d31460a08d535107e65111c21956a86d52eb9d57fb41bd56f", + "line": 7904, + "resource_type": "aws_instance", + "resource_name": "example-instance-878", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example878", + "search_line": 7904, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e78823b2681c51fcf2fa01bad9b6e4acbd3dacb8c5f97811e5c97e944d0cce48", + "line": 2810, + "resource_type": "aws_instance", + "resource_name": "example-instance-312", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example312", + "search_line": 2810, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b5fd299e0c804a8196d6e131b61aaeb380971106ae3c15779514204d2384f8cf", + "line": 3368, + "resource_type": "aws_instance", + "resource_name": "example-instance-374", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example374", + "search_line": 3368, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bdd92f44a36522cc8ed69e245a112b2d0fd89e8b8e89267dbd60341dd40c90b5", + "line": 6842, + "resource_type": "aws_instance", + "resource_name": "example-instance-760", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example760", + "search_line": 6842, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "14a788ed28f3c832c8c223d9696e1e3c25c5c6f8470c50e2aabe1d954f64196d", + "line": 6860, + "resource_type": "aws_instance", + "resource_name": "example-instance-762", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example762", + "search_line": 6860, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ff62f55820fc320204cf108580ac787af4ccef5102078f298a49b131abab87e9", + "line": 6653, + "resource_type": "aws_instance", + "resource_name": "example-instance-739", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example739", + "search_line": 6653, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e7dc544236c404cf59b8187b893364e78ed0d8d60fdde1263d8d8501ffdde5d9", + "line": 4349, + "resource_type": "aws_instance", + "resource_name": "example-instance-483", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example483", + "search_line": 4349, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e4bd2ce3b172d07efd86db743ced2aebf78730ce30e6313fb4d95425cb604dec", + "line": 6608, + "resource_type": "aws_instance", + "resource_name": "example-instance-734", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example734", + "search_line": 6608, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a1a58e0a2bd4dd4c28ff2242d6b3f69f2687f1a6f4884d446ef5518dc9fae6f3", + "line": 353, + "resource_type": "aws_instance", + "resource_name": "example-instance-39", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example39", + "search_line": 353, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e9ea48f9d7100e13fb3adf34af1ed7841724f0086385dd7f51f6df61312da43f", + "line": 6374, + "resource_type": "aws_instance", + "resource_name": "example-instance-708", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example708", + "search_line": 6374, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3b7e7919298ee226d97a366faa17eccbca749445406a0fd224e44701a69d12b4", + "line": 1127, + "resource_type": "aws_instance", + "resource_name": "example-instance-125", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example125", + "search_line": 1127, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e1545cb0475e30f1e8fc48d9ff767634e33840a3b67808288e4f7474d8c857f3", + "line": 5915, + "resource_type": "aws_instance", + "resource_name": "example-instance-657", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example657", + "search_line": 5915, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9f13509e14ada07e74f02705ac747a1b45aceede8af3df1a4b58f33108637398", + "line": 632, + "resource_type": "aws_instance", + "resource_name": "example-instance-70", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example70", + "search_line": 632, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "011e5a1e48b99efdd13baa86686faccd5a66e8b91e5939fa9c0d8ee1ed39032c", + "line": 6617, + "resource_type": "aws_instance", + "resource_name": "example-instance-735", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example735", + "search_line": 6617, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d8962b5d93eb6cb8e9f20f6159c20de704585ba4ea213c37c2101c6f59709497", + "line": 1568, + "resource_type": "aws_instance", + "resource_name": "example-instance-174", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example174", + "search_line": 1568, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "271437177152c6684e6fb99c1c4031dcdecc0f76084d1d6f7e394898caa831d8", + "line": 2684, + "resource_type": "aws_instance", + "resource_name": "example-instance-298", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example298", + "search_line": 2684, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3d43e0f64154de071b6e28df7aab0dffa489f4c2f5bc01bfdf7108509bba1ee0", + "line": 2000, + "resource_type": "aws_instance", + "resource_name": "example-instance-222", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example222", + "search_line": 2000, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d1826d28ffd848e0650c2e81cb8e867efaaa57ed7abe77e4e45b157ed2f3d9af", + "line": 3161, + "resource_type": "aws_instance", + "resource_name": "example-instance-351", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example351", + "search_line": 3161, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3f37d8dc8075daf21b7531c04f1f3bcf3e4376c626a1380116ee643f7988b659", + "line": 8345, + "resource_type": "aws_instance", + "resource_name": "example-instance-927", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example927", + "search_line": 8345, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d5ba96d05153b9e72ad7e2a334e11c3e16c54c2621808e5a923f62426a245f04", + "line": 2171, + "resource_type": "aws_instance", + "resource_name": "example-instance-241", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example241", + "search_line": 2171, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8547fa8dc973e083b018ab37d54b8d9063a94968022e62a49d49856c453535cf", + "line": 2324, + "resource_type": "aws_instance", + "resource_name": "example-instance-258", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example258", + "search_line": 2324, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e9ac5bc3e6da9890a6a99d8064781027b8b9ce60f12e75f2cdd3f24b8a6f10e6", + "line": 6464, + "resource_type": "aws_instance", + "resource_name": "example-instance-718", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example718", + "search_line": 6464, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "66b8dcf22e02bf1eb621bed49f79ffed88e885ed757845e82829cca027d2f662", + "line": 1676, + "resource_type": "aws_instance", + "resource_name": "example-instance-186", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example186", + "search_line": 1676, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0341437694520e4f4b4b86756ee820c1bd487270e0b337be1c16a69edcae62a8", + "line": 8435, + "resource_type": "aws_instance", + "resource_name": "example-instance-937", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example937", + "search_line": 8435, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0d6c08ff36a38311fbd9d9dadf164e8c4042bef176daaa85ca0a10b0d9263b4d", + "line": 8795, + "resource_type": "aws_instance", + "resource_name": "example-instance-977", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example977", + "search_line": 8795, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2ed0e6a2502fa76633399fed6dc9972d1ef8a6e82f63e1c5935f99506692cb6d", + "line": 1766, + "resource_type": "aws_instance", + "resource_name": "example-instance-196", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example196", + "search_line": 1766, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a79e846c6e5bcdfdc902977373e49204c9130dec7b6f4850d24a62568886dc07", + "line": 4637, + "resource_type": "aws_instance", + "resource_name": "example-instance-515", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example515", + "search_line": 4637, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "12119dbaedbae68b07a1324f6bd1e54c46fb1d63715c655277e3bda9b16ed48d", + "line": 5465, + "resource_type": "aws_instance", + "resource_name": "example-instance-607", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example607", + "search_line": 5465, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3798221b497ebcf87e52b476499c18336538183b1949564b4f843c6fc70adeb0", + "line": 6581, + "resource_type": "aws_instance", + "resource_name": "example-instance-731", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example731", + "search_line": 6581, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d24592230f32be98ebb93d773fa016d6c01af70c13478c3b2e383d92b7a963e6", + "line": 5510, + "resource_type": "aws_instance", + "resource_name": "example-instance-612", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example612", + "search_line": 5510, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9be4583c8e779904a9c55bc06d18dfd78771608ddcf45173d13e4b98ae42515f", + "line": 5690, + "resource_type": "aws_instance", + "resource_name": "example-instance-632", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example632", + "search_line": 5690, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "10cdf8789dfbae7c7e9935cc8fbfe4e458766ad2bd69df3c5a9548214a239ea1", + "line": 1829, + "resource_type": "aws_instance", + "resource_name": "example-instance-203", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example203", + "search_line": 1829, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fb88ca661bacf618f307c573c62b3bb702b55a8b3fe4f58d5e25cee8176e2e8f", + "line": 7841, + "resource_type": "aws_instance", + "resource_name": "example-instance-871", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example871", + "search_line": 7841, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "23132d28784b5f28881ecc9fa7af41d9c1cf57b7f70ae2ce73b5fbaef04f589d", + "line": 3773, + "resource_type": "aws_instance", + "resource_name": "example-instance-419", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example419", + "search_line": 3773, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9023fc7e551704d37a0297538d82ed985db3a4d2a817029c47707b10db21531e", + "line": 5699, + "resource_type": "aws_instance", + "resource_name": "example-instance-633", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example633", + "search_line": 5699, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "846827634d6fe3e8f47c0db4ffe9e68a5b3345f731b13e88219ab38e08f17f80", + "line": 8534, + "resource_type": "aws_instance", + "resource_name": "example-instance-948", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example948", + "search_line": 8534, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f4f7a70660cef36a7e6b913d3c612d61b27104d6542efd18e7d64b75c78dad97", + "line": 3206, + "resource_type": "aws_instance", + "resource_name": "example-instance-356", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example356", + "search_line": 3206, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8043c7f0582fd182b1ee802ffdf5ae9e45366d443df265c6de9b9e820bf81f41", + "line": 146, + "resource_type": "aws_instance", + "resource_name": "example-instance-16", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example16", + "search_line": 146, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d4a2029e31d3b8852fb48cf5d6aeef7a72a0bbcc7116770ec6ca6fdaca191094", + "line": 6680, + "resource_type": "aws_instance", + "resource_name": "example-instance-742", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example742", + "search_line": 6680, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "98a708199646541d72bf7698fb1421852158b5f7d3fac29e73f61e3543675e1f", + "line": 4556, + "resource_type": "aws_instance", + "resource_name": "example-instance-506", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example506", + "search_line": 4556, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "63c91a34614e180b27fb1716957a5d2df0b9e736a4a801b78caa2d84e26facb9", + "line": 488, + "resource_type": "aws_instance", + "resource_name": "example-instance-54", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example54", + "search_line": 488, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3e69bfe4c078e82b92f0abc8837b88e9c8aa678664275f14a49b813c6f75a8e5", + "line": 8183, + "resource_type": "aws_instance", + "resource_name": "example-instance-909", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example909", + "search_line": 8183, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d389de1b0c509700fd67f8961ce90b17ab64a325a3d46558f4dcf5f3b998ebb4", + "line": 4439, + "resource_type": "aws_instance", + "resource_name": "example-instance-493", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example493", + "search_line": 4439, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "88c2326e4ef8ddadb34fb0a9c53809664d6492706a6c1c36bed14e0e46a92193", + "line": 5591, + "resource_type": "aws_instance", + "resource_name": "example-instance-621", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example621", + "search_line": 5591, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b181258da73445accc191ff5e703a355b8a36d188cb1e052ba106bccd803efb0", + "line": 6689, + "resource_type": "aws_instance", + "resource_name": "example-instance-743", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example743", + "search_line": 6689, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e9fb48116b369d72ef3a6e05dfa4cb8113efbc19e2ff035c6eec39ac59cdf759", + "line": 6230, + "resource_type": "aws_instance", + "resource_name": "example-instance-692", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example692", + "search_line": 6230, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "255731897ac76bd2ee062a6cc7f6907d4faa3767ccb9375ebef15d31b9d2a251", + "line": 4727, + "resource_type": "aws_instance", + "resource_name": "example-instance-525", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example525", + "search_line": 4727, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "973f642c75ecfe6279d0172c9ce2b924f8b4ceecfba221884898953c3a88d459", + "line": 3926, + "resource_type": "aws_instance", + "resource_name": "example-instance-436", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example436", + "search_line": 3926, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "01d0a8f54b2e95e39c68bdfd92fafdfad38a77a9bc173d05075f3780697cc85d", + "line": 6752, + "resource_type": "aws_instance", + "resource_name": "example-instance-750", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example750", + "search_line": 6752, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0aba495de9e9ccd85ba2776d7ea6d11758477ad5e048635ad7123d16ba8bc36c", + "line": 6455, + "resource_type": "aws_instance", + "resource_name": "example-instance-717", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example717", + "search_line": 6455, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4d39e1dc6af4ca8ab2a0555b3b09967d6e68523db77f657c7115c1845d140b19", + "line": 3890, + "resource_type": "aws_instance", + "resource_name": "example-instance-432", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example432", + "search_line": 3890, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "afd686428d6cdb20dec0b2a284ed32cf51df956226a739d6567e6df572f50535", + "line": 6887, + "resource_type": "aws_instance", + "resource_name": "example-instance-765", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example765", + "search_line": 6887, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2ce70535e9b71119e272b8ced1b9ec4f47cd8a1bcd8f85d775b0ebaab3921e93", + "line": 6869, + "resource_type": "aws_instance", + "resource_name": "example-instance-763", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example763", + "search_line": 6869, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "887ba57c22014de685b5562fc8c9aad7be85377babbf7ead52343c5969b2d28f", + "line": 4628, + "resource_type": "aws_instance", + "resource_name": "example-instance-514", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example514", + "search_line": 4628, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b0c8a9064928a29a91db2bd5f26135c6b60725ee070c6a7172a13d975f0beed1", + "line": 5105, + "resource_type": "aws_instance", + "resource_name": "example-instance-567", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example567", + "search_line": 5105, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "39e3bbb87d664134a349db05aba03cb1bdefe2235d14e87998d650363c167b62", + "line": 1217, + "resource_type": "aws_instance", + "resource_name": "example-instance-135", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example135", + "search_line": 1217, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "517dbccb80a5f02448a2063b096c7c1c73df193f4cb2b41324a86cb1f8dc1e7a", + "line": 3251, + "resource_type": "aws_instance", + "resource_name": "example-instance-361", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example361", + "search_line": 3251, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8e97b8277a9b8e618fdcb03088981697e59556995e001b6bdd5481ee594b66ef", + "line": 668, + "resource_type": "aws_instance", + "resource_name": "example-instance-74", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example74", + "search_line": 668, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f4e8dc17eb79becc7f3df369ad697ff5bd52ba6e653d722e6a28060ec43862eb", + "line": 7085, + "resource_type": "aws_instance", + "resource_name": "example-instance-787", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example787", + "search_line": 7085, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1aad86493e3bc9e606be8fed752c3edc9d6872b2a068a75a6226a510564a2304", + "line": 3116, + "resource_type": "aws_instance", + "resource_name": "example-instance-346", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example346", + "search_line": 3116, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c87004740b298ad7f99ea575847a03a851092b04de46d801a1d06f6fe4c3355a", + "line": 2504, + "resource_type": "aws_instance", + "resource_name": "example-instance-278", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example278", + "search_line": 2504, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4273c20cd4173935bd122d58c996e57a19d38c34f2269ab1544a4955799d9b09", + "line": 218, + "resource_type": "aws_instance", + "resource_name": "example-instance-24", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example24", + "search_line": 218, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "54af66f294e16bedc8483afde4e22a87c3678a7206b4ab7298fc5714b704e932", + "line": 875, + "resource_type": "aws_instance", + "resource_name": "example-instance-97", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example97", + "search_line": 875, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2d3bd620520d764c19b1036e40474b048ca040fad3c4e15116639a04887c04da", + "line": 1739, + "resource_type": "aws_instance", + "resource_name": "example-instance-193", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example193", + "search_line": 1739, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ee10306761561c1eaa8ea4f6d66a2c600416bfc975a97ad6b3520c796ce11d94", + "line": 2144, + "resource_type": "aws_instance", + "resource_name": "example-instance-238", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example238", + "search_line": 2144, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1c55d27d8aa4dc0d0bd2b0de3b1790d2a660a19f3a3f0e503bf11b7a9363158d", + "line": 3395, + "resource_type": "aws_instance", + "resource_name": "example-instance-377", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example377", + "search_line": 3395, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "36df01486827971901fdb34e70a039d4371825672f790ecf57686e80c892e465", + "line": 1982, + "resource_type": "aws_instance", + "resource_name": "example-instance-220", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example220", + "search_line": 1982, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3a2a5bc0601e940ee84bb10f9c8da67025b22b3085af91de17dcb9c179cdfc7c", + "line": 3134, + "resource_type": "aws_instance", + "resource_name": "example-instance-348", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example348", + "search_line": 3134, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a8d65c2a0dae68bf5249991c404aebe4e43843d3bc3712301ee38f3a0ecaa85e", + "line": 4070, + "resource_type": "aws_instance", + "resource_name": "example-instance-452", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example452", + "search_line": 4070, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cd2bd6ee86110eb6190d1ca5a198628a4420558919e97bdf274289cb80b1ce93", + "line": 7922, + "resource_type": "aws_instance", + "resource_name": "example-instance-880", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example880", + "search_line": 7922, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dd6e0a6f6880912f7a30d70a449c57c2402ab748fcb71495e740a18e513e0bac", + "line": 4529, + "resource_type": "aws_instance", + "resource_name": "example-instance-503", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example503", + "search_line": 4529, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ec618ae4137a7eb2b8473963b4d35ca770b2dac7e2ea1c99b02ad9201a3ecf2e", + "line": 4862, + "resource_type": "aws_instance", + "resource_name": "example-instance-540", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example540", + "search_line": 4862, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "795e625d320b81433b01d248e44ad975fce14799437241297e7e7d0bc000f643", + "line": 7355, + "resource_type": "aws_instance", + "resource_name": "example-instance-817", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example817", + "search_line": 7355, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4310e178c036e0376036a2129630d3c7beab7decbf1454f8914f0f9331c06396", + "line": 4385, + "resource_type": "aws_instance", + "resource_name": "example-instance-487", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example487", + "search_line": 4385, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "59347e7ea3401fad450c78632282bf8459e45c3a229d5afa5d244f855176fbed", + "line": 7049, + "resource_type": "aws_instance", + "resource_name": "example-instance-783", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example783", + "search_line": 7049, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2fcba5bdbc657f48f25d9c77cc24e5fa5d9d400cde5c33d97a5a527f79fc3752", + "line": 6554, + "resource_type": "aws_instance", + "resource_name": "example-instance-728", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example728", + "search_line": 6554, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cce072af8bb438fdb4d83257469385e36c1bc2e7e92bfd38847745dad54eb8c2", + "line": 3863, + "resource_type": "aws_instance", + "resource_name": "example-instance-429", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example429", + "search_line": 3863, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7d54f9b574e18db1e459a0a2862af0d4f56918d052d795f624f0764a7d41a00f", + "line": 119, + "resource_type": "aws_instance", + "resource_name": "example-instance-13", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example13", + "search_line": 119, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "93e4173fd4020db7e777487cb62cd624f3d8bf53ca6bdd36fdf2cd64fa66a035", + "line": 1244, + "resource_type": "aws_instance", + "resource_name": "example-instance-138", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example138", + "search_line": 1244, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6d885577b3b7fb6ac90cccfe4bc1eff408b6bd2a54b745c5f2781e9a3a6ee74b", + "line": 8489, + "resource_type": "aws_instance", + "resource_name": "example-instance-943", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example943", + "search_line": 8489, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4829a442b36a873ced4defabadc379968d47dec7b6dc19317f63f60ea408ec9f", + "line": 8426, + "resource_type": "aws_instance", + "resource_name": "example-instance-936", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example936", + "search_line": 8426, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "55137e9d396c5dbd6f93ae439bf629bf6b143688724dce21e687a4b3cbb60e4e", + "line": 7679, + "resource_type": "aws_instance", + "resource_name": "example-instance-853", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example853", + "search_line": 7679, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d3783c5ce8848f27675c556a346acb7a2c0697651bc9202b5560e12ec8e4fe4a", + "line": 3953, + "resource_type": "aws_instance", + "resource_name": "example-instance-439", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example439", + "search_line": 3953, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7b93746a2bd0e989e24363903aed3a0fb4d3808a10c63763ce6d37d2b7e172b9", + "line": 6977, + "resource_type": "aws_instance", + "resource_name": "example-instance-775", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example775", + "search_line": 6977, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "868e7f2de517a6c1f5a23ffe59ebe467fe1f6886ed08df4e178846279c1b5d75", + "line": 7202, + "resource_type": "aws_instance", + "resource_name": "example-instance-800", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example800", + "search_line": 7202, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "97c9f504ea4576f7bc50de1f54dd876bfa437522b16ee855d3a227083beb49dd", + "line": 5123, + "resource_type": "aws_instance", + "resource_name": "example-instance-569", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example569", + "search_line": 5123, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5129e729eea5b10ed8beee0f9c92a00f8f4628ee9b85e5143fa6228735cb7189", + "line": 2918, + "resource_type": "aws_instance", + "resource_name": "example-instance-324", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example324", + "search_line": 2918, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "42395b321a9837168fdb21836501f5eb04b20363bf241e95ce68bdf10320c024", + "line": 1820, + "resource_type": "aws_instance", + "resource_name": "example-instance-202", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example202", + "search_line": 1820, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4fdac99bc03d9b69234627562e95a768a632f3384c5b88bd57c65c6a9b7ec6c0", + "line": 7346, + "resource_type": "aws_instance", + "resource_name": "example-instance-816", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example816", + "search_line": 7346, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f31bba01d248cc835be331c753d0f9f0c96aa62ed360e79ea7b122df24bab962", + "line": 7652, + "resource_type": "aws_instance", + "resource_name": "example-instance-850", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example850", + "search_line": 7652, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "78ab2b3797fc3ef47a070520de486f6ebde23537b965ba7096676886bde4dcfa", + "line": 6104, + "resource_type": "aws_instance", + "resource_name": "example-instance-678", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example678", + "search_line": 6104, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "76327a9401ba9649f7568c892e63025d77e030edc3938a579196420933d4f8de", + "line": 4160, + "resource_type": "aws_instance", + "resource_name": "example-instance-462", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example462", + "search_line": 4160, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e16af35b0f51e18dc3920c3ac0311fe1d2c88dd8480efb50ed52c6a1ac6972f6", + "line": 5393, + "resource_type": "aws_instance", + "resource_name": "example-instance-599", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example599", + "search_line": 5393, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ec5695cb42cc490eb1a873f31c9017bbdd05328d3dcd0ef38ff3f39d40781d91", + "line": 8282, + "resource_type": "aws_instance", + "resource_name": "example-instance-920", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example920", + "search_line": 8282, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0d2ed587a9557127aba364dbdd22c400b37b3aef8e61a1c2cd85daf13bfe6f7e", + "line": 5213, + "resource_type": "aws_instance", + "resource_name": "example-instance-579", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example579", + "search_line": 5213, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ea665ebe446343f74ba2f892c338eb81edd225bd65f9e9951c090fac45325d5f", + "line": 6536, + "resource_type": "aws_instance", + "resource_name": "example-instance-726", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example726", + "search_line": 6536, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "77103fd167d73016a8f19648a2a53e448789fe21028daf42de4eb94b513979ac", + "line": 7742, + "resource_type": "aws_instance", + "resource_name": "example-instance-860", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example860", + "search_line": 7742, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3c0a481323bcc08295bbb60270353da6badc90d7b08c10ec63821f9bc9600ad5", + "line": 1091, + "resource_type": "aws_instance", + "resource_name": "example-instance-121", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example121", + "search_line": 1091, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7803c543b7f77e3ee00681605e17fd47380c3f9d95b0640e12c4a28224aad20c", + "line": 893, + "resource_type": "aws_instance", + "resource_name": "example-instance-99", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example99", + "search_line": 893, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b518b4a84f1f268a7a938fb21cef01875b9b074c0734e67b3d2c56ed5a70c3a2", + "line": 830, + "resource_type": "aws_instance", + "resource_name": "example-instance-92", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example92", + "search_line": 830, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a00e39687a600a641c1dee63545ac67e5ca547b3cc9f8fef575a58b16fa80f2e", + "line": 1793, + "resource_type": "aws_instance", + "resource_name": "example-instance-199", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example199", + "search_line": 1793, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5af71cccb00e10cf2fabe375334a0e3acfadcd7d545a788be31928d241172439", + "line": 2333, + "resource_type": "aws_instance", + "resource_name": "example-instance-259", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example259", + "search_line": 2333, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "085ccce1a8b75b724a18b9183ea08607b97529571e0a9d8397739b3cd16cdc49", + "line": 2990, + "resource_type": "aws_instance", + "resource_name": "example-instance-332", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example332", + "search_line": 2990, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c08f39efb94ffc7ea2dc6ea12258ea9591189569631bf0f3128df4124cdc179a", + "line": 4826, + "resource_type": "aws_instance", + "resource_name": "example-instance-536", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example536", + "search_line": 4826, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dd7e53164a8f276d20cedf955e0243794a7bc3eaafa4c97bbb554b2f3ee19cfd", + "line": 5645, + "resource_type": "aws_instance", + "resource_name": "example-instance-627", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example627", + "search_line": 5645, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "735d0e44fbb1d90a5db348e01560aef0591aaf5d39c9a32abecc6ca7ed99064c", + "line": 8858, + "resource_type": "aws_instance", + "resource_name": "example-instance-984", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example984", + "search_line": 8858, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c40aec816f6277fbd8f65d073eb9fab6a235d52c56d83e887454c10861d23c4b", + "line": 4277, + "resource_type": "aws_instance", + "resource_name": "example-instance-475", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example475", + "search_line": 4277, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "22865f3614cff4724227d6f2f86831365feb67e176686c585694766a67a448bf", + "line": 3800, + "resource_type": "aws_instance", + "resource_name": "example-instance-422", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example422", + "search_line": 3800, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f5f7c67c1a269ca8500b2fad60c50a364e76a026907b5810bfe8333dd90f03cd", + "line": 6140, + "resource_type": "aws_instance", + "resource_name": "example-instance-682", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example682", + "search_line": 6140, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dfb28e2ac4b8bc70dec50bc80efd1e3bd6f2ef9b24c87ab88b9105c2e3441a6f", + "line": 7454, + "resource_type": "aws_instance", + "resource_name": "example-instance-828", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example828", + "search_line": 7454, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c6f4161213b82807afcaff48c4211ef9d9929eac6a18581c5f72974024224070", + "line": 7616, + "resource_type": "aws_instance", + "resource_name": "example-instance-846", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example846", + "search_line": 7616, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a8ac09e81c867c0b8766d0329e6f42b787651401b036b9aa692545bd8167897c", + "line": 5996, + "resource_type": "aws_instance", + "resource_name": "example-instance-666", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example666", + "search_line": 5996, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "854ff1c87ef0470788d2b438007d170d756887c5892061083c0dbd23240b20a6", + "line": 839, + "resource_type": "aws_instance", + "resource_name": "example-instance-93", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example93", + "search_line": 839, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b2d919e7ba06bdbae5fa8d28733517da8f5965b453056f2f472da3a3da7089c5", + "line": 1658, + "resource_type": "aws_instance", + "resource_name": "example-instance-184", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example184", + "search_line": 1658, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fc6d1e9d03ac097f93a729adfcf048505f3fb006a9cd70965edf83575a471c71", + "line": 2369, + "resource_type": "aws_instance", + "resource_name": "example-instance-263", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example263", + "search_line": 2369, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a2576428b32e4aa5fbaf39a306cc4b0c869d7ac1c9bbd7c1058bb56736e2206c", + "line": 5303, + "resource_type": "aws_instance", + "resource_name": "example-instance-589", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example589", + "search_line": 5303, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "07378b1fa383a612c811a49b2559e39e48fb0673be0fe8005aaf238a7de7e1c2", + "line": 8651, + "resource_type": "aws_instance", + "resource_name": "example-instance-961", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example961", + "search_line": 8651, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "59dba2abe59d2bb40ede10fe2da74521f45cb0d09a7c2ccb6ab0061610628be3", + "line": 2819, + "resource_type": "aws_instance", + "resource_name": "example-instance-313", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example313", + "search_line": 2819, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4d344fee155de9064a1ac16e69350f2992b83ce7af61ccc4119aec195674e828", + "line": 1550, + "resource_type": "aws_instance", + "resource_name": "example-instance-172", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example172", + "search_line": 1550, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "73c80b600d819e2b8cec51d61ebc34788163db24d7ea3a8a0e06e4551bfcb85e", + "line": 2351, + "resource_type": "aws_instance", + "resource_name": "example-instance-261", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example261", + "search_line": 2351, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6d8ec4f722014b5da99fe3421f3724299fc18c0752d218b4ffe710d01e6b1d3a", + "line": 6815, + "resource_type": "aws_instance", + "resource_name": "example-instance-757", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example757", + "search_line": 6815, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "697d8ee14c1a91f1fd465938914f6710c96b40e24d249fe465b015dfe481b91a", + "line": 4754, + "resource_type": "aws_instance", + "resource_name": "example-instance-528", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example528", + "search_line": 4754, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ff04b61fc909aacfb1297e273425c556a1f4a5532fe1e00cb522cdb6323ef0c0", + "line": 3323, + "resource_type": "aws_instance", + "resource_name": "example-instance-369", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example369", + "search_line": 3323, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a09597bd13fdac1a54488ebc8ff24330619647f3542bcc2ccb2d42317056d29b", + "line": 5636, + "resource_type": "aws_instance", + "resource_name": "example-instance-626", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example626", + "search_line": 5636, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c9637c9dcc23bbb4754c87d3de2f3e066dec84eabde5e14d8c95500aee83f79f", + "line": 2585, + "resource_type": "aws_instance", + "resource_name": "example-instance-287", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example287", + "search_line": 2585, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "381d21f9d873f47ba53dc5cf321976fcd050607565eb3c1e9e02bfe0b90915e3", + "line": 3044, + "resource_type": "aws_instance", + "resource_name": "example-instance-338", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example338", + "search_line": 3044, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "21e447f1509d50a2cf46c97a8ec999b18b0cd19d13c6516fe26246a56c35074c", + "line": 4052, + "resource_type": "aws_instance", + "resource_name": "example-instance-450", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example450", + "search_line": 4052, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9da9174a956fbb2af04c250eba4dbb0cc0965a5976de78aefbb1c6a3a6f6d2a6", + "line": 1604, + "resource_type": "aws_instance", + "resource_name": "example-instance-178", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example178", + "search_line": 1604, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f43da46b3c3a274ba60d5f3a7be8bd267d20c8d518e0f2ee0963b9b8d5800ded", + "line": 7148, + "resource_type": "aws_instance", + "resource_name": "example-instance-794", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example794", + "search_line": 7148, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "41447eb02c41d958501ed24c93c2950aded32ef7fc28b8086d1fa0a8f429de09", + "line": 2783, + "resource_type": "aws_instance", + "resource_name": "example-instance-309", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example309", + "search_line": 2783, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "241468a87c28afa22b4df450f776641d15e9f6529b0e17a16184147ec1722ef1", + "line": 7445, + "resource_type": "aws_instance", + "resource_name": "example-instance-827", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example827", + "search_line": 7445, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "29f16d2fe615b825a096efdae2574475616af263bd0207a62790968207895f63", + "line": 5384, + "resource_type": "aws_instance", + "resource_name": "example-instance-598", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example598", + "search_line": 5384, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3497627bdcffcf03862e1c9d2c448700e898a83cf0fc1c890d5347cbf4c70f4f", + "line": 7229, + "resource_type": "aws_instance", + "resource_name": "example-instance-803", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example803", + "search_line": 7229, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ac2090cd9bc3a47e4b67c4034351d8a5570d6eb514028baaa8dcdc827d3e2bef", + "line": 7139, + "resource_type": "aws_instance", + "resource_name": "example-instance-793", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example793", + "search_line": 7139, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b228bdae9f81378d518cc825d644d4506c6185c030e0cb41b811c0e1f650f119", + "line": 1640, + "resource_type": "aws_instance", + "resource_name": "example-instance-182", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example182", + "search_line": 1640, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8f2e143e346bc253357f6fb48809d755ee3a12cae8a46372fc45201fcaddfcc0", + "line": 533, + "resource_type": "aws_instance", + "resource_name": "example-instance-59", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example59", + "search_line": 533, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1ea86c2ecf61ca47137d30d37a05d3cfa134bb3dcb5437d58b720ece122f0a48", + "line": 1991, + "resource_type": "aws_instance", + "resource_name": "example-instance-221", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example221", + "search_line": 1991, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bc843013dda82f6cdba8d38b800fab856544d8e039cc65cbfa47e374f8ef9033", + "line": 3413, + "resource_type": "aws_instance", + "resource_name": "example-instance-379", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example379", + "search_line": 3413, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "36748d167ce4d7b36c60b8646a1b89c217528921e4703e0362e881bfcc1aced0", + "line": 3566, + "resource_type": "aws_instance", + "resource_name": "example-instance-396", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example396", + "search_line": 3566, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "268643a0c69a142f14b3918739ecc688be3b97f3a3fdea4f5d0f10545d678af4", + "line": 155, + "resource_type": "aws_instance", + "resource_name": "example-instance-17", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example17", + "search_line": 155, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5e4d6a4029bba6bb31362a7c67683b580d472bf0f88eb805a96b97c3b6d27961", + "line": 1883, + "resource_type": "aws_instance", + "resource_name": "example-instance-209", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example209", + "search_line": 1883, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e111e1ba1004f465a910c1ec1a69d0088e36097a02db651bc453b61d7b2cc3f5", + "line": 65, + "resource_type": "aws_instance", + "resource_name": "example-instance-7", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example7", + "search_line": 65, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "289421a59c52b0033b13aecd87d3ff783dead9f9e40d233ea81ac99a20483bfc", + "line": 6347, + "resource_type": "aws_instance", + "resource_name": "example-instance-705", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example705", + "search_line": 6347, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ad22b1d893a9896871dd814c7a4f85482e19a4a05210113eaee4c0a9848fd550", + "line": 4880, + "resource_type": "aws_instance", + "resource_name": "example-instance-542", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example542", + "search_line": 4880, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ad99f03ce5a4e54a0704efc4a8b33c5fbad1bad51c9338b91ac9ac005d275ce9", + "line": 6707, + "resource_type": "aws_instance", + "resource_name": "example-instance-745", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example745", + "search_line": 6707, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6a51869ebb1615b36d9a471905c3b02ca7484e66d01b793c9736925106a81e8e", + "line": 4601, + "resource_type": "aws_instance", + "resource_name": "example-instance-511", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example511", + "search_line": 4601, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "043cf50f1ca55969344ad931d82683672f3714165afafae2ad6d8f86567e0814", + "line": 3341, + "resource_type": "aws_instance", + "resource_name": "example-instance-371", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example371", + "search_line": 3341, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2d06da14a16725c6a445d193e4754cbbc7cc9eef2d736504227696c2f1948924", + "line": 8471, + "resource_type": "aws_instance", + "resource_name": "example-instance-941", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example941", + "search_line": 8471, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8905fd387fcaab993c7cb9a98549eac5454dcc1b89c430c6e29737aba72d6d8d", + "line": 245, + "resource_type": "aws_instance", + "resource_name": "example-instance-27", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example27", + "search_line": 245, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "685121e76f269b5755f62c68e06c017adf93775ec041b4fe42b571215d9fbebf", + "line": 5780, + "resource_type": "aws_instance", + "resource_name": "example-instance-642", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example642", + "search_line": 5780, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9701072d2754199bb34aa19da8de3a49351740d7f4e4b237f74341452bc2ccd2", + "line": 1505, + "resource_type": "aws_instance", + "resource_name": "example-instance-167", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example167", + "search_line": 1505, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "86f22c84283ebd434fb7c532050a0bb4b5686f36fd259efae94dfd8c12d67c33", + "line": 2909, + "resource_type": "aws_instance", + "resource_name": "example-instance-323", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example323", + "search_line": 2909, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cf27ddb104be0de90c29c2da3fca1b3b56e912f6f81adaf72ed071eca309a569", + "line": 4133, + "resource_type": "aws_instance", + "resource_name": "example-instance-459", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example459", + "search_line": 4133, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "527844d569c62ff1ea619b47d4c09cbb34f2a4d5a760d406ea98f71b68fff574", + "line": 8912, + "resource_type": "aws_instance", + "resource_name": "example-instance-990", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example990", + "search_line": 8912, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cc90aacc36c13688fb2cecd5eca5947a2418720ba2cd1713e1df353d56d695bd", + "line": 2891, + "resource_type": "aws_instance", + "resource_name": "example-instance-321", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example321", + "search_line": 2891, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "22af76164696772928e79ba66dcfe05afebd4ea8d1fc187d92425e4a93d7cf45", + "line": 7364, + "resource_type": "aws_instance", + "resource_name": "example-instance-818", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example818", + "search_line": 7364, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a13b86b29badf0a2b88a28292e5c8b57087667192802183ad83d599a05ae0a48", + "line": 1811, + "resource_type": "aws_instance", + "resource_name": "example-instance-201", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example201", + "search_line": 1811, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "58bd95558517de252f936a81e0dc94e755b381697d7e0ac5fed45d3d167d9c7b", + "line": 8975, + "resource_type": "aws_instance", + "resource_name": "example-instance-997", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example997", + "search_line": 8975, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "665fce32cbaafa7116ec275801909034c133204df65f47a0f11948d89478f308", + "line": 8597, + "resource_type": "aws_instance", + "resource_name": "example-instance-955", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example955", + "search_line": 8597, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "888781d60a82360295cbcfaa0872c472f3499c61502bdea578d4dfcaffa6b6d2", + "line": 5663, + "resource_type": "aws_instance", + "resource_name": "example-instance-629", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example629", + "search_line": 5663, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9665a80a7be348da58219d7a671859bd7729a20903b208ea9ea28c5a41c58daa", + "line": 5978, + "resource_type": "aws_instance", + "resource_name": "example-instance-664", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example664", + "search_line": 5978, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "87886beaa72c117511fad97aee6e8e30972318b391ab810ee05593594becf7ef", + "line": 8678, + "resource_type": "aws_instance", + "resource_name": "example-instance-964", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example964", + "search_line": 8678, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "eb399b8c1c247dafaa5fdc3eb6f13f35eb0b72c43f9bc1ce1df1b04b7bcfd3b5", + "line": 3602, + "resource_type": "aws_instance", + "resource_name": "example-instance-400", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example400", + "search_line": 3602, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4418d8eacbf68a7cbf974ca481637fcf11a685827379eca099c76f3905e583f4", + "line": 7868, + "resource_type": "aws_instance", + "resource_name": "example-instance-874", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example874", + "search_line": 7868, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "350dad135aedb2589fb0229894b2721ef62366652453dc3974fd153cb4abfb2a", + "line": 1523, + "resource_type": "aws_instance", + "resource_name": "example-instance-169", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example169", + "search_line": 1523, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b9f7421fcf85aa0966d4f1201e60435896a4df76470e9bd79ea4432640f1aa99", + "line": 2882, + "resource_type": "aws_instance", + "resource_name": "example-instance-320", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example320", + "search_line": 2882, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a0ff3a6f1a1657af248585bd4fe7a6eaddcfb2610db9b3bc88152308182bda13", + "line": 8354, + "resource_type": "aws_instance", + "resource_name": "example-instance-928", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example928", + "search_line": 8354, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2708261cf467c683dbf376d693be712d0cad42192467958733dee0d8bcac61f5", + "line": 3872, + "resource_type": "aws_instance", + "resource_name": "example-instance-430", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example430", + "search_line": 3872, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "01a6868e6f2ac542d5c2a0828e5e352db5ae94095f12f5c8249fe0d89cef5e42", + "line": 8480, + "resource_type": "aws_instance", + "resource_name": "example-instance-942", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example942", + "search_line": 8480, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f4c6c9e59cc4168be0ade707d5d441a427a82a4c462c56c8abba5e39a209677e", + "line": 128, + "resource_type": "aws_instance", + "resource_name": "example-instance-14", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example14", + "search_line": 128, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5c7bff81827563ab569bbee8a018ac166077994112d778bf1df572cd4cab3e16", + "line": 407, + "resource_type": "aws_instance", + "resource_name": "example-instance-45", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example45", + "search_line": 407, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "016c996c5cd0b53573adde65d2c9474f2b4efa8cb31f21e08504a8ab9fb9f6f2", + "line": 7418, + "resource_type": "aws_instance", + "resource_name": "example-instance-824", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example824", + "search_line": 7418, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0cfd9e47d995b27ba776f825d41403dc338bf62870329abbea00928f1ebfc99e", + "line": 7598, + "resource_type": "aws_instance", + "resource_name": "example-instance-844", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example844", + "search_line": 7598, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f03dc1c671453b46ddf30ec65c56dfca64fca24139d06844d46f88c2f9acb0ce", + "line": 3737, + "resource_type": "aws_instance", + "resource_name": "example-instance-415", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example415", + "search_line": 3737, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d2d3c9d344cbd0826bfc01e2dd45ff1e7db7ba1dfce49778fd05b61291e5fb5f", + "line": 1370, + "resource_type": "aws_instance", + "resource_name": "example-instance-152", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example152", + "search_line": 1370, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a7430cc9ec80603cc16d8747ebe4b76fa1e5b7c7c652409801a747a36caaa6a2", + "line": 6797, + "resource_type": "aws_instance", + "resource_name": "example-instance-755", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example755", + "search_line": 6797, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5a4aa28878509992a5957e4f6e7454db796a4ff4d7c7344d29f7a6038bfb7e6e", + "line": 8507, + "resource_type": "aws_instance", + "resource_name": "example-instance-945", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example945", + "search_line": 8507, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dcc5abe66bf43535c0573c0f2c43381dfa40ab26c0ceafa5f191b94cf9b22179", + "line": 2459, + "resource_type": "aws_instance", + "resource_name": "example-instance-273", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example273", + "search_line": 2459, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9cbb8b2d2211aa106c43baeb60c732c131350b31650e87ba292d6399ad8b363d", + "line": 5249, + "resource_type": "aws_instance", + "resource_name": "example-instance-583", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example583", + "search_line": 5249, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "249468eb832cbc2c8fb195280d8134f602c9d00fb1977aaed7b8cf561b3402d4", + "line": 6221, + "resource_type": "aws_instance", + "resource_name": "example-instance-691", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example691", + "search_line": 6221, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2917a2303b292f30cd133a6fefb19873604ba508d37f444221f7167fa585aee7", + "line": 6086, + "resource_type": "aws_instance", + "resource_name": "example-instance-676", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example676", + "search_line": 6086, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4d905b2b972204fe5a0ebeb625bf38ab479fdac1b1f159d77cd15db83fd45bd8", + "line": 1055, + "resource_type": "aws_instance", + "resource_name": "example-instance-117", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example117", + "search_line": 1055, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e6459395d29a25a302ad8230ab479acd99a24d35cc50d6a9caa9aaed20fd9a64", + "line": 1973, + "resource_type": "aws_instance", + "resource_name": "example-instance-219", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example219", + "search_line": 1973, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3a36ef51a85865e68fe602dc5c56ea89570241862cb342b2ac93a18a02876ae4", + "line": 2720, + "resource_type": "aws_instance", + "resource_name": "example-instance-302", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example302", + "search_line": 2720, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "de039ad9ba2ec64a58414e5960614e412be6be57082e4236afd65b4a1e651dcf", + "line": 3530, + "resource_type": "aws_instance", + "resource_name": "example-instance-392", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example392", + "search_line": 3530, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "88444f2ba5c96f2832c7344270a11a75f5867bbbc76a0ff650a9b9ded6b90c16", + "line": 3503, + "resource_type": "aws_instance", + "resource_name": "example-instance-389", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example389", + "search_line": 3503, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7d2ec3203913d6afa1209a233150d31ac3c46fd63ea97c38678855185ea14f46", + "line": 5672, + "resource_type": "aws_instance", + "resource_name": "example-instance-630", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example630", + "search_line": 5672, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "16b15cb6e8a2a8e43ee6374495ec3dde57c429d4c8e097cd5302832ca4163cf3", + "line": 6932, + "resource_type": "aws_instance", + "resource_name": "example-instance-770", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example770", + "search_line": 6932, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "20147f7c56c25266a43a4881b43a6829e4ef42f27b96f2c7baeb36bfbb993ab7", + "line": 8885, + "resource_type": "aws_instance", + "resource_name": "example-instance-987", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example987", + "search_line": 8885, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "344380e3928130829e33a7d34abe86797da7f0e182671965c0e9bbaffcdd4daf", + "line": 4871, + "resource_type": "aws_instance", + "resource_name": "example-instance-541", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example541", + "search_line": 4871, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8db818f30ff5f8a02c6a737b86e30b466031d94e44a1d48e52e85db74c871ae5", + "line": 6725, + "resource_type": "aws_instance", + "resource_name": "example-instance-747", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example747", + "search_line": 6725, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a09904b4bddd8e505da45abdddf58aaf08b9be7b9bf7eadecf13e6d5bf813cb0", + "line": 4583, + "resource_type": "aws_instance", + "resource_name": "example-instance-509", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example509", + "search_line": 4583, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "24b8e11c948b9667a71ffef38fd9a036fbe66897c7625b91ab42f858460377e5", + "line": 4781, + "resource_type": "aws_instance", + "resource_name": "example-instance-531", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example531", + "search_line": 4781, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "633bc2fc5e72fb8adb564973dfc2c3e928ef35db865f85d9abb0d4a1243a074a", + "line": 6311, + "resource_type": "aws_instance", + "resource_name": "example-instance-701", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example701", + "search_line": 6311, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "82d08156e21ba2521e266a65fd918618ea61b9ad2a5ead9ab38fccd1e7574a1a", + "line": 4403, + "resource_type": "aws_instance", + "resource_name": "example-instance-489", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example489", + "search_line": 4403, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7145e64e43c786e619cf4445c9981777fbb7642441760bba9d46b8fc91f685b3", + "line": 8543, + "resource_type": "aws_instance", + "resource_name": "example-instance-949", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example949", + "search_line": 8543, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "91e5909afbbf514ee7ba5ade4d5441727a07ec9ac3ec30d70ccb0737fb90f231", + "line": 8219, + "resource_type": "aws_instance", + "resource_name": "example-instance-913", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example913", + "search_line": 8219, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8bf82777d9aad4818924b97e14944d8c56da9b7dc72c259e4eeb1c76c3763eec", + "line": 4916, + "resource_type": "aws_instance", + "resource_name": "example-instance-546", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example546", + "search_line": 4916, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "718af1078748b8c3bef32d86fed428bacdb013423c896cd6d675f3645c28fe9c", + "line": 1280, + "resource_type": "aws_instance", + "resource_name": "example-instance-142", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example142", + "search_line": 1280, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "046b7fcd994ef07c38923d78f87557523406b188a697eff7a8fb7a80c6cda43f", + "line": 2054, + "resource_type": "aws_instance", + "resource_name": "example-instance-228", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example228", + "search_line": 2054, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5131390ec3955dce7d4a6b534cabb45ce3d82bd3cc58726a4440b2926af837e7", + "line": 7643, + "resource_type": "aws_instance", + "resource_name": "example-instance-849", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example849", + "search_line": 7643, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e8094a1adb8a802bce3806e013f36945ca22776c36239e8cf2d84e346d113674", + "line": 8939, + "resource_type": "aws_instance", + "resource_name": "example-instance-993", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example993", + "search_line": 8939, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "05ffe8099a4060f2b8ad022a2262f17ac7665f319062471f55646b40c6d11d94", + "line": 2792, + "resource_type": "aws_instance", + "resource_name": "example-instance-310", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example310", + "search_line": 2792, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1ba80095aa9cd56b9b3e7c94c49890fb8cf0b2b6e8f4eb1385cc6f03c17e3a4c", + "line": 4214, + "resource_type": "aws_instance", + "resource_name": "example-instance-468", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example468", + "search_line": 4214, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a21db6b285f0e150f34baf2c3dc98437fb76514a7d0ecb7e9b193024c678f09f", + "line": 8786, + "resource_type": "aws_instance", + "resource_name": "example-instance-976", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example976", + "search_line": 8786, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e4d62d720d0d580cefbb9f1a9beeea9568adb13abe2ae7c40b154ce349f7bfa7", + "line": 6905, + "resource_type": "aws_instance", + "resource_name": "example-instance-767", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example767", + "search_line": 6905, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c1158c3e0c038453e030500d3ae31db56dfbc660cfe4a6a067942dd9aae570cb", + "line": 8408, + "resource_type": "aws_instance", + "resource_name": "example-instance-934", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example934", + "search_line": 8408, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "300b7a79d2dc67121cfa0c6e5f8a5076dd0ef13528972c02262ce7cec7928760", + "line": 7994, + "resource_type": "aws_instance", + "resource_name": "example-instance-888", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example888", + "search_line": 7994, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a3a71110d4e3707495507fcc3f737c033352f81f92aebf1c44714305aa769002", + "line": 6824, + "resource_type": "aws_instance", + "resource_name": "example-instance-758", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example758", + "search_line": 6824, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "97b7e0005bad570f5a08154594df13b867cf935571a911de7c39fd80b860e5f6", + "line": 7760, + "resource_type": "aws_instance", + "resource_name": "example-instance-862", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example862", + "search_line": 7760, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fa9fc946247f37f18f4e83a444b0b68674f951aab0c4ecc2dcf5e3a6d7278c60", + "line": 7895, + "resource_type": "aws_instance", + "resource_name": "example-instance-877", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example877", + "search_line": 7895, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a416ec59466e4ef2430f818f0dce2bf6f21a0b5c1c552a3db8e5106caac28cd4", + "line": 857, + "resource_type": "aws_instance", + "resource_name": "example-instance-95", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example95", + "search_line": 857, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c9d09eee1bc3266e1213403874a37598aed1d94227f1ebe93e3f6697f95ecb15", + "line": 7337, + "resource_type": "aws_instance", + "resource_name": "example-instance-815", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example815", + "search_line": 7337, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "535bcb98ed8ea77bc9a69607006be39c914401f3d4336f51f4b612a8ee771559", + "line": 3512, + "resource_type": "aws_instance", + "resource_name": "example-instance-390", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example390", + "search_line": 3512, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1a9d960354d0916c88f127482bfe194669f20b78206b38e91996c9a1d12ed74f", + "line": 3944, + "resource_type": "aws_instance", + "resource_name": "example-instance-438", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example438", + "search_line": 3944, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7e0bdaa2ea0e6d44ed29ef3e1338205f17fd5d46ff3c017d16d27ff108156c88", + "line": 2450, + "resource_type": "aws_instance", + "resource_name": "example-instance-272", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example272", + "search_line": 2450, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3de440ca3101a825feaca137e0a6ddfaf3641d1ae59919425a872f7e8fbc6773", + "line": 5573, + "resource_type": "aws_instance", + "resource_name": "example-instance-619", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example619", + "search_line": 5573, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "34d70c836eff0d0d0f0f3a27207a4c04d287440a3d2ceedc5430893003218d24", + "line": 6257, + "resource_type": "aws_instance", + "resource_name": "example-instance-695", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example695", + "search_line": 6257, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8b26a713223d79ffd26a366f1efce240e5ac307c715b1fc03de18ad5db3c4013", + "line": 6833, + "resource_type": "aws_instance", + "resource_name": "example-instance-759", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example759", + "search_line": 6833, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ba4000f5ee3cdaca9fe3b8466fa5c719c6f7ab41934ed44e3d485fc46b2cfc23", + "line": 6194, + "resource_type": "aws_instance", + "resource_name": "example-instance-688", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example688", + "search_line": 6194, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "de865dd4f65f4a3ed6ad744cd8f118636a1637cf6ad6387fe61775a44a52ed36", + "line": 6635, + "resource_type": "aws_instance", + "resource_name": "example-instance-737", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example737", + "search_line": 6635, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "82b42f71db47218949d44e8798c8edf6fb3432bd222a60afd78c47cda1a088cb", + "line": 5717, + "resource_type": "aws_instance", + "resource_name": "example-instance-635", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example635", + "search_line": 5717, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e3cc16310d2ea5b0ccd772e335651e7514d56d5426ad65dab4717488a75a7266", + "line": 7130, + "resource_type": "aws_instance", + "resource_name": "example-instance-792", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example792", + "search_line": 7130, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b2de1c9ff1641ba0108f50cfdbbcc6adb08e9a0e228e630e96ea3796aa96f350", + "line": 4736, + "resource_type": "aws_instance", + "resource_name": "example-instance-526", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example526", + "search_line": 4736, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6404fd56fe656defa259e9526a8c78301d82ece39d3ed640b684e59d828de420", + "line": 5870, + "resource_type": "aws_instance", + "resource_name": "example-instance-652", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example652", + "search_line": 5870, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "625f04599d6c4cfa4b468e2f6864f977c3b4ff0eaf2adb46a9944e3ad3e35826", + "line": 398, + "resource_type": "aws_instance", + "resource_name": "example-instance-44", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example44", + "search_line": 398, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "31c935348d33fa64c2ce085d637848f58bce490a51a6a6a72bb46af713383a63", + "line": 2486, + "resource_type": "aws_instance", + "resource_name": "example-instance-276", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example276", + "search_line": 2486, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5d96480a7aca14e769c967c01e410f4b0a569f20633def57b458aafa1270ec7b", + "line": 335, + "resource_type": "aws_instance", + "resource_name": "example-instance-37", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example37", + "search_line": 335, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d7e47ba37c56bb7cca6f73ac23c39651ec0fd7600e835532d6e4e39c78d3b9e2", + "line": 5456, + "resource_type": "aws_instance", + "resource_name": "example-instance-606", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example606", + "search_line": 5456, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0a31af90462d94894a948ace29043969d487dbfc6bd9dbd346c765f8fb810ac9", + "line": 3620, + "resource_type": "aws_instance", + "resource_name": "example-instance-402", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example402", + "search_line": 3620, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ccb7eb3b881ea406ebf1259d5041d373d2ae0a556692456f76c975c150fbcea5", + "line": 1271, + "resource_type": "aws_instance", + "resource_name": "example-instance-141", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example141", + "search_line": 1271, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "57f0d1b5ffa8a73ca1f7f6783df12c4e3f60a5af1cf563bf58c5157b7e1f58a0", + "line": 191, + "resource_type": "aws_instance", + "resource_name": "example-instance-21", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example21", + "search_line": 191, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9a22492ed596e264e7ca2b3c162c04d8acd37a54c48a1cd40d6d485160fc2c51", + "line": 2081, + "resource_type": "aws_instance", + "resource_name": "example-instance-231", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example231", + "search_line": 2081, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c2730a18588468b4b567792bcf4c89e7a8c05caa8d82e0818a71de4c75913560", + "line": 2972, + "resource_type": "aws_instance", + "resource_name": "example-instance-330", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example330", + "search_line": 2972, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b4b37a6d57ad923a3a18f2d12871ef727cbf4866b8fcbdbd229cb3cd17b4ac35", + "line": 2342, + "resource_type": "aws_instance", + "resource_name": "example-instance-260", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example260", + "search_line": 2342, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e7948978c47e4586672b1e20a4c7864c3bb8168b798f800c1dd38a867a9d3d1c", + "line": 2657, + "resource_type": "aws_instance", + "resource_name": "example-instance-295", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example295", + "search_line": 2657, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8093099aa9fc42228410d2179fffad93c12441c1f93feb0b87db3bc954afea2e", + "line": 8984, + "resource_type": "aws_instance", + "resource_name": "example-instance-998", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example998", + "search_line": 8984, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f8849b7b5f4574e7cc994ba2b32762e737f453eab6adf717c1c64f385db4ffef", + "line": 2936, + "resource_type": "aws_instance", + "resource_name": "example-instance-326", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example326", + "search_line": 2936, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3c029b3cb99d4515f7f01514be41d3b09f3d24c6c5d5468fbae863e19f36533a", + "line": 1163, + "resource_type": "aws_instance", + "resource_name": "example-instance-129", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example129", + "search_line": 1163, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a54704789c46cbc1957e24853a4da58ffe7afa29401d07abc603ac97b08c6b95", + "line": 3575, + "resource_type": "aws_instance", + "resource_name": "example-instance-397", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example397", + "search_line": 3575, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8e33a5a596ec76478ab2fef6fb32ea8e025a28b0e73281cd09bada37207f36fa", + "line": 5987, + "resource_type": "aws_instance", + "resource_name": "example-instance-665", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example665", + "search_line": 5987, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "307f5bffb6278ef219395ba3370765ee4c2d7d74fb4c941a3d5368f955a68964", + "line": 7490, + "resource_type": "aws_instance", + "resource_name": "example-instance-832", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example832", + "search_line": 7490, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c9e19e908ba1879320d68f528390c7237318139ce83c8d508943eb06b5585777", + "line": 2666, + "resource_type": "aws_instance", + "resource_name": "example-instance-296", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example296", + "search_line": 2666, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2945f0f23965bc6d79f5c2dcf73efab52cc325d49059e8c4b895228791528de2", + "line": 461, + "resource_type": "aws_instance", + "resource_name": "example-instance-51", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example51", + "search_line": 461, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0fe5cec0bd34c4a5eeefe312e979ec3476786554381731ded9da26022f70c861", + "line": 2981, + "resource_type": "aws_instance", + "resource_name": "example-instance-331", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example331", + "search_line": 2981, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d1b83a8060959dbdc64984fca2f857938102c7bd4e87ef71e0fdbfcea07fe093", + "line": 3188, + "resource_type": "aws_instance", + "resource_name": "example-instance-354", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example354", + "search_line": 3188, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b386e50b67576d38b83b38111a1c1eeee1f33d0ff6916c7b22a5880cd3591c2f", + "line": 4223, + "resource_type": "aws_instance", + "resource_name": "example-instance-469", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example469", + "search_line": 4223, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "53decf3039026630dcbfa41a3f4502044879d1284a120d08f37b826964ed6722", + "line": 5924, + "resource_type": "aws_instance", + "resource_name": "example-instance-658", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example658", + "search_line": 5924, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b5ae80f84f2e5ab5162b510f2d1471378d8f3324d81d614d29a1984108bdfce1", + "line": 7661, + "resource_type": "aws_instance", + "resource_name": "example-instance-851", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example851", + "search_line": 7661, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8274573b9ae55bbf0b6b104b4585cc087ded09cf1276e03237cdb6ac63b49ee1", + "line": 2243, + "resource_type": "aws_instance", + "resource_name": "example-instance-249", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example249", + "search_line": 2243, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "49a7f62914f84b63edf83dd04742fb2a8e9991ff6dd99485707c73224e7c315d", + "line": 4367, + "resource_type": "aws_instance", + "resource_name": "example-instance-485", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example485", + "search_line": 4367, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4900800eb5ca966f3147fa56140fa741025fe03515634ae690a93cf0e5c705b0", + "line": 2306, + "resource_type": "aws_instance", + "resource_name": "example-instance-256", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example256", + "search_line": 2306, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "eb41dfc1df3b174784a6b4d05e2c8ea05570d12cf2465b5b584997535c542edb", + "line": 8138, + "resource_type": "aws_instance", + "resource_name": "example-instance-904", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example904", + "search_line": 8138, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f81e6fdd81d334d7879efab25455c6a71066b814dbe4a35b0080948a2ba694ae", + "line": 263, + "resource_type": "aws_instance", + "resource_name": "example-instance-29", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example29", + "search_line": 263, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8e67a13504324d41f1e881a88b574a3650c3c5a07676a7e769dfd62a7da57fd4", + "line": 1226, + "resource_type": "aws_instance", + "resource_name": "example-instance-136", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example136", + "search_line": 1226, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fab852cb4131918f5a880d2e68afb3a2ae405e48647263ceaa8581339f61def7", + "line": 5357, + "resource_type": "aws_instance", + "resource_name": "example-instance-595", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example595", + "search_line": 5357, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "65ed2e64c091b3da3fddd8544f4e986e3e85592fb34664648e63c954e9679550", + "line": 6419, + "resource_type": "aws_instance", + "resource_name": "example-instance-713", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example713", + "search_line": 6419, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "60091c613c1db67fc0d162c954f6c2b3de392a35c0f8bf1d63646f167cebc870", + "line": 8831, + "resource_type": "aws_instance", + "resource_name": "example-instance-981", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example981", + "search_line": 8831, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2416e868b79ebc7cfb55f2c79e413b08245ac1005cf939d9ffea68001001daff", + "line": 1181, + "resource_type": "aws_instance", + "resource_name": "example-instance-131", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example131", + "search_line": 1181, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7d1b429def01a61168a3e01b48607a45cd2141b8dea37e4ed4656325173b1975", + "line": 227, + "resource_type": "aws_instance", + "resource_name": "example-instance-25", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example25", + "search_line": 227, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0887c9133ba35061471c29a2642c342ed8c89b8d4d78b8332a219a31c4b1ebeb", + "line": 6482, + "resource_type": "aws_instance", + "resource_name": "example-instance-720", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example720", + "search_line": 6482, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "66e16b20039cc96e3a60dd13eae8fbd1952946572afd142a9cd95172341c00fd", + "line": 974, + "resource_type": "aws_instance", + "resource_name": "example-instance-108", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example108", + "search_line": 974, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "856de3a4325836026a231dc7b838cbb3621cef69159d374d3f87e326e5f63c70", + "line": 1631, + "resource_type": "aws_instance", + "resource_name": "example-instance-181", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example181", + "search_line": 1631, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9f4749ea24444fd6544ae6097c76015ca3f1a06234e93f554c7b38c40114d5fd", + "line": 3557, + "resource_type": "aws_instance", + "resource_name": "example-instance-395", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example395", + "search_line": 3557, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "da5fa923ff40256b7564ac34c84830ff6ab9f28b45a25355a95bd2d7aa77ad96", + "line": 4322, + "resource_type": "aws_instance", + "resource_name": "example-instance-480", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example480", + "search_line": 4322, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4cfb1fb792802ce88c69a81c5e0612bd6c054286989d89f87350416933b89a6a", + "line": 8840, + "resource_type": "aws_instance", + "resource_name": "example-instance-982", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example982", + "search_line": 8840, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8c9d91747d987eb17b2e253ebcf68cd1267623dfa34459f0bd088b3956255ba1", + "line": 7427, + "resource_type": "aws_instance", + "resource_name": "example-instance-825", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example825", + "search_line": 7427, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "826a15e44fbd8a477ffa76dc33260106239eb212cf05ba902a1e4aa0668dd04c", + "line": 2729, + "resource_type": "aws_instance", + "resource_name": "example-instance-303", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example303", + "search_line": 2729, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fdbe97752e8031744f3ea87774b4fbb0caca60da7aa55dc05811ca84eb69cc1b", + "line": 5762, + "resource_type": "aws_instance", + "resource_name": "example-instance-640", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example640", + "search_line": 5762, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ba19a8cbdbb34ab67c9bb35c1fea84a199350298cacfc9885b9db308003be725", + "line": 7463, + "resource_type": "aws_instance", + "resource_name": "example-instance-829", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example829", + "search_line": 7463, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1b021b921b3e2714103ce29a67a85c3301caf39b538edddea588e45814358036", + "line": 5033, + "resource_type": "aws_instance", + "resource_name": "example-instance-559", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example559", + "search_line": 5033, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f12e6dd4b12dadc1adeff5a12cbdda2bff66b61c0e4ef29d71fa0c9ea939979b", + "line": 7400, + "resource_type": "aws_instance", + "resource_name": "example-instance-822", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example822", + "search_line": 7400, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "13ca758dc0fe6e3afea8effc3ba31da05b02ef8fb01be679a855b433687f8f0d", + "line": 1487, + "resource_type": "aws_instance", + "resource_name": "example-instance-165", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example165", + "search_line": 1487, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b9f42e2cd2a24facff61e2d5dfc2f7b03fc2f6aa9f20192effd868dd0ed2ef3a", + "line": 8057, + "resource_type": "aws_instance", + "resource_name": "example-instance-895", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example895", + "search_line": 8057, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "59d0d1f76ca7929d4e78959298573f5ae24c1c19cde6f2ddcb4836ebbbfafe1e", + "line": 2963, + "resource_type": "aws_instance", + "resource_name": "example-instance-329", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example329", + "search_line": 2963, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "02af338d69a9be6ee31b8e8f3fbd6e5680c8eaba26b9e0816e6256b79a566a27", + "line": 7499, + "resource_type": "aws_instance", + "resource_name": "example-instance-833", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example833", + "search_line": 7499, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "33f078b392dc2e9580670cea59d2a1d0c809e8b2d89aed7094bd296694383a32", + "line": 1082, + "resource_type": "aws_instance", + "resource_name": "example-instance-120", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example120", + "search_line": 1082, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c3d2e55344a075d0a929a42fdfeca512f7e3522876bd68d8144e0133b2fd807b", + "line": 4745, + "resource_type": "aws_instance", + "resource_name": "example-instance-527", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example527", + "search_line": 4745, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cb24d4859e058c8cb34e8516b6b504cf5b38b5268d294735d4b82848b1e68715", + "line": 83, + "resource_type": "aws_instance", + "resource_name": "example-instance-9", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example9", + "search_line": 83, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7386c8398096495443cd3e003f21fdbe204b9b4ef5471aa57c6be387999f30e4", + "line": 7022, + "resource_type": "aws_instance", + "resource_name": "example-instance-780", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example780", + "search_line": 7022, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a49b3995179f4873c19c66c52532060e208b1970ffeea7bcbbb521a0b366bc72", + "line": 2576, + "resource_type": "aws_instance", + "resource_name": "example-instance-286", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example286", + "search_line": 2576, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "26844ffc3f3981bc7459ea21ea71893dd304f23771beccf3f17e30ddcc4a8b3a", + "line": 7877, + "resource_type": "aws_instance", + "resource_name": "example-instance-875", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example875", + "search_line": 7877, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d5479c63b7a2eb2e8d3f20f03d3b6cb3149e0858fc0236ab1ff75dbce6138030", + "line": 758, + "resource_type": "aws_instance", + "resource_name": "example-instance-84", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example84", + "search_line": 758, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ae0bde035ac9b187bc67a93ab3c190098dbe24aa3badfc1655b5f550d4b90e12", + "line": 3314, + "resource_type": "aws_instance", + "resource_name": "example-instance-368", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example368", + "search_line": 3314, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "aa0e20620bc6dba45486f5f139d17d7f48fe59b6f9218747a209aa63359ccf58", + "line": 6095, + "resource_type": "aws_instance", + "resource_name": "example-instance-677", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example677", + "search_line": 6095, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "74466d781e95f2157766cb45e0f15c97623157837f9446c7905e4034fa013a73", + "line": 1028, + "resource_type": "aws_instance", + "resource_name": "example-instance-114", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example114", + "search_line": 1028, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "50cb60940ab356d23631cfdca404e036f66e3260092a6962dcee36ddc754561f", + "line": 7751, + "resource_type": "aws_instance", + "resource_name": "example-instance-861", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example861", + "search_line": 7751, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f823b8e811dc4e7630c2c071dd111783e2cabacfcae92039e5f997a95f657bcc", + "line": 8633, + "resource_type": "aws_instance", + "resource_name": "example-instance-959", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example959", + "search_line": 8633, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c9a55a63d9690c4822b832443af96f4e2085e892f8feb2e3383f48983188de26", + "line": 1928, + "resource_type": "aws_instance", + "resource_name": "example-instance-214", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example214", + "search_line": 1928, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "beae9d38182a1d26f4daad04e1464f28ab3b836901dcd61d567d1f99c1965306", + "line": 938, + "resource_type": "aws_instance", + "resource_name": "example-instance-104", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example104", + "search_line": 938, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c8576372f9891433f94abdc6b9ef3a5f17ccf2ff9b69eaeb6cf47ad76c278068", + "line": 5114, + "resource_type": "aws_instance", + "resource_name": "example-instance-568", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example568", + "search_line": 5114, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "30e127f73fd9a7bb2ac9b5dc8b37057636ab382d6565e4223110491b785f8917", + "line": 5933, + "resource_type": "aws_instance", + "resource_name": "example-instance-659", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example659", + "search_line": 5933, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9fc7833231eeee83bbf9cb30538517064982adefd9a715a0c8ffe00ba9cbe7be", + "line": 6392, + "resource_type": "aws_instance", + "resource_name": "example-instance-710", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example710", + "search_line": 6392, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4d5dc08db385ffbd59bfa12b62476ab0841df1e1fa83a67c988fad907fe47cc1", + "line": 7697, + "resource_type": "aws_instance", + "resource_name": "example-instance-855", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example855", + "search_line": 7697, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bb05c7d96e0fd3d30d7b24bdde304abdaea51a5c92c7dba22fd4c21185d0ce97", + "line": 8750, + "resource_type": "aws_instance", + "resource_name": "example-instance-972", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example972", + "search_line": 8750, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "097abf31e5ef06e6732abe5044774f53ccd6597d1d28433e25bbd71f042ff448", + "line": 4970, + "resource_type": "aws_instance", + "resource_name": "example-instance-552", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example552", + "search_line": 4970, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "04d41dc7d728c754243e1303ef9910816336a3ed2e4a0abfe71c6108ae9d03eb", + "line": 2999, + "resource_type": "aws_instance", + "resource_name": "example-instance-333", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example333", + "search_line": 2999, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c1b034542015376d42ab7990936d91341af9d1b8c322a68ba729d1a2d11f57f8", + "line": 2279, + "resource_type": "aws_instance", + "resource_name": "example-instance-253", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example253", + "search_line": 2279, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c94a15f6edcd27bce81a8f80dcdc29604b22839334d9ed817af8cfdec7dbec95", + "line": 5042, + "resource_type": "aws_instance", + "resource_name": "example-instance-560", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example560", + "search_line": 5042, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b71974de007239acd4d1aa9a29e569023099baf4d414ba922a144c8f56f18879", + "line": 3071, + "resource_type": "aws_instance", + "resource_name": "example-instance-341", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example341", + "search_line": 3071, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9e26560108b680ad7ca5c72f57750f9c1e61cb22c35168bb26ef79eb76f1cca7", + "line": 4142, + "resource_type": "aws_instance", + "resource_name": "example-instance-460", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example460", + "search_line": 4142, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bd68381e9cdf11f700466fba9ef515d19ba3c66a66f0910adb6bb62b21e7858b", + "line": 5807, + "resource_type": "aws_instance", + "resource_name": "example-instance-645", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example645", + "search_line": 5807, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c4112e5046ec8b26a38c9dc32c71373a3b927d49e50d8e9e57ba14e826895eb1", + "line": 1622, + "resource_type": "aws_instance", + "resource_name": "example-instance-180", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example180", + "search_line": 1622, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "43e31b22b54b1e1458d8f556b9a4350e5fdb6d5995d5a3396402229ae499ccbb", + "line": 8030, + "resource_type": "aws_instance", + "resource_name": "example-instance-892", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example892", + "search_line": 8030, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f97e4f831b5c32dea064b33373ef29e64f7a8dabfd6b970c36eb07482e58a64e", + "line": 6959, + "resource_type": "aws_instance", + "resource_name": "example-instance-773", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example773", + "search_line": 6959, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "605b267024cda72ff06afb297aa6fea917d8c8957778d4d97bbfd1d4cf99f235", + "line": 8237, + "resource_type": "aws_instance", + "resource_name": "example-instance-915", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example915", + "search_line": 8237, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a4202e3ca8fc68cc6a5fe835525a611555902cb48c8f995adf5c92353da40af2", + "line": 4700, + "resource_type": "aws_instance", + "resource_name": "example-instance-522", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example522", + "search_line": 4700, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cb57c4521d2830cb17b7126828903f65da930bfa26f12e9431ff2595768a8b7c", + "line": 5744, + "resource_type": "aws_instance", + "resource_name": "example-instance-638", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example638", + "search_line": 5744, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f8b275570feaaa52331feb59b41aac3fc34fbb01e59d26766b99b94140501fcc", + "line": 4709, + "resource_type": "aws_instance", + "resource_name": "example-instance-523", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example523", + "search_line": 4709, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a904b871521b68ccd854fc5ef085eb7939507cc6645d8b309422726d5270ffc7", + "line": 7958, + "resource_type": "aws_instance", + "resource_name": "example-instance-884", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example884", + "search_line": 7958, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ed129874ef887a415ff67c4ac9a9c0792aa8b03dc200e280e94e70ec351ebd28", + "line": 6212, + "resource_type": "aws_instance", + "resource_name": "example-instance-690", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example690", + "search_line": 6212, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "82023deeffe0bd2772380f078fbf81c62fe30677062538313b6552dc38843c4b", + "line": 614, + "resource_type": "aws_instance", + "resource_name": "example-instance-68", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example68", + "search_line": 614, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1ea742470fd4aaf30563a4f1be6659bc1123dced52b5ff8218261ad33806792d", + "line": 2027, + "resource_type": "aws_instance", + "resource_name": "example-instance-225", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example225", + "search_line": 2027, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6ef6a466a53e3f523b04526e84ac3c16e67d9017419e4698106aa74b0c9e6463", + "line": 4106, + "resource_type": "aws_instance", + "resource_name": "example-instance-456", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example456", + "search_line": 4106, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "95788ef4e16503fadfd260f3e886e9ab29ce5cd2a5bbf03ae72f7d2a001a814a", + "line": 1694, + "resource_type": "aws_instance", + "resource_name": "example-instance-188", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example188", + "search_line": 1694, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "605f9867578aae81a8aca14ce5f005b36f17a1994eda6e7370c9b3dec7f793a6", + "line": 2468, + "resource_type": "aws_instance", + "resource_name": "example-instance-274", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example274", + "search_line": 2468, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e8cc921da99c1f3996698c8b4e36adeecc75da402b0d4a61c6e3a55049d350ca", + "line": 7274, + "resource_type": "aws_instance", + "resource_name": "example-instance-808", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example808", + "search_line": 7274, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bae574924644f2cd70cbdbe7715397450765eea325244f9aa438053d2560b225", + "line": 4592, + "resource_type": "aws_instance", + "resource_name": "example-instance-510", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example510", + "search_line": 4592, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fb97645e6512cdba9bf24c6b321b0a86bbbd5bd550d0966a20f8c11170a0dcf6", + "line": 965, + "resource_type": "aws_instance", + "resource_name": "example-instance-107", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example107", + "search_line": 965, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1ac8b9e45ac8f2c6ef2876231ae14ad1671962d645724b34ed0104049d8a829d", + "line": 8966, + "resource_type": "aws_instance", + "resource_name": "example-instance-996", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example996", + "search_line": 8966, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0bf277b5f784050fa1cfaa9d131312ef941d914e6cfb60d839c24b7afec7cec8", + "line": 2099, + "resource_type": "aws_instance", + "resource_name": "example-instance-233", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example233", + "search_line": 2099, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c6308afceaaeb337c846287016bbc7e807432790a0ae4514018a884c6567c15f", + "line": 272, + "resource_type": "aws_instance", + "resource_name": "example-instance-30", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example30", + "search_line": 272, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "89188fcd40e8e69b295062ccd8acfabe992981329036008b519c91114449081e", + "line": 4025, + "resource_type": "aws_instance", + "resource_name": "example-instance-447", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example447", + "search_line": 4025, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ca38dc4175633c191dd901c917d2bbaad64661890bf6383534094fa0dc42daff", + "line": 8273, + "resource_type": "aws_instance", + "resource_name": "example-instance-919", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example919", + "search_line": 8273, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5607a54fbd3939fe85b2ebd4d4c0ca1d939d07b4e466a2551eb462f71bcaf7b6", + "line": 1433, + "resource_type": "aws_instance", + "resource_name": "example-instance-159", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example159", + "search_line": 1433, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "aa4afe0ea7ff5510d84c2f86c92567eeea7b3845070cf0218e332c444c328ca5", + "line": 7508, + "resource_type": "aws_instance", + "resource_name": "example-instance-834", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example834", + "search_line": 7508, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c5dea49951767d60c7e03f60da52ec305ecffd5c7c128d062893eea0491ec029", + "line": 164, + "resource_type": "aws_instance", + "resource_name": "example-instance-18", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example18", + "search_line": 164, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e5380233cea9dcde16b43f4c5d4b2f80f76b5ddcd4c52fc1333cb1b33c03807b", + "line": 4232, + "resource_type": "aws_instance", + "resource_name": "example-instance-470", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example470", + "search_line": 4232, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "775923760803f7c0ad344a319d0baa018f5ba939bfd2b3c0bf7cc4b32dddc3ff", + "line": 7625, + "resource_type": "aws_instance", + "resource_name": "example-instance-847", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example847", + "search_line": 7625, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9b4d0ccc69fc2c60c76fee19babeadd461a3f0072ea87d23f3f2c3209fe5c2e0", + "line": 911, + "resource_type": "aws_instance", + "resource_name": "example-instance-101", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example101", + "search_line": 911, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9e53f91aee84888c67c6c65a3a8c984499b4290164712847966160947c06913b", + "line": 956, + "resource_type": "aws_instance", + "resource_name": "example-instance-106", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example106", + "search_line": 956, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9df030f3a4e3e6a3baf77a34e156f85c81344fe07ddcc7b547c9cb60ef479a20", + "line": 4457, + "resource_type": "aws_instance", + "resource_name": "example-instance-495", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example495", + "search_line": 4457, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "203edfc65ab521a13a9195bba279baa9b361bb69d2bbb2cc8ab5b4606076a7a5", + "line": 1586, + "resource_type": "aws_instance", + "resource_name": "example-instance-176", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example176", + "search_line": 1586, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6e634fe8c77d7c51676109e409cb345c7081ef157cf1a98d87db644a57221a7f", + "line": 1469, + "resource_type": "aws_instance", + "resource_name": "example-instance-163", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example163", + "search_line": 1469, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a96bf32f7a00d63fb1f1d1bf7b1a5ea5e53881224a9ee7bf5d972978bffb325b", + "line": 4799, + "resource_type": "aws_instance", + "resource_name": "example-instance-533", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example533", + "search_line": 4799, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "eb8163f7764ce96e9345abe657c162807bcb56f19903264fa00e4204afcf12d9", + "line": 866, + "resource_type": "aws_instance", + "resource_name": "example-instance-96", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example96", + "search_line": 866, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a81b472aa45cc6aa2676af5df1dfa8b1d4acabe58107ca80e7e74b8622d5da36", + "line": 848, + "resource_type": "aws_instance", + "resource_name": "example-instance-94", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example94", + "search_line": 848, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7368537df5b7b49f668dc942b423241109e7fad02420316b3d621dd3974d4056", + "line": 2621, + "resource_type": "aws_instance", + "resource_name": "example-instance-291", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example291", + "search_line": 2621, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "37029502fb27c3a7516172aed5620837e97f427147a79e965ddecf9fc265ae12", + "line": 3431, + "resource_type": "aws_instance", + "resource_name": "example-instance-381", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example381", + "search_line": 3431, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4c82fe74fb5ba94bc2287f4aba8f5807deebacfe91083ab4ad9010b3d35cb040", + "line": 4088, + "resource_type": "aws_instance", + "resource_name": "example-instance-454", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example454", + "search_line": 4088, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5d6dbc2debd08d0a6eea0bb55645b9d86c196f35b19022d74ae8d8509c0acc7c", + "line": 8228, + "resource_type": "aws_instance", + "resource_name": "example-instance-914", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example914", + "search_line": 8228, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "900275cabd064a57cf4d2996f281a44ef14450634bfb7c491945dc9af7844807", + "line": 5222, + "resource_type": "aws_instance", + "resource_name": "example-instance-580", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example580", + "search_line": 5222, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4b1dd23fff39987c99a6cc92320988ec58371eb1f9092faa446555d77ef5ba6c", + "line": 7040, + "resource_type": "aws_instance", + "resource_name": "example-instance-782", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example782", + "search_line": 7040, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7064cf4cf17dd9dae763f3d2544fec1b76ed81ffa97cf538ed8a29887bb7256d", + "line": 2558, + "resource_type": "aws_instance", + "resource_name": "example-instance-284", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example284", + "search_line": 2558, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0863a6fb43be87ee45aa73f13c6ad9ba9019b255e9001fbb5a1222a5bcbd0bdf", + "line": 5627, + "resource_type": "aws_instance", + "resource_name": "example-instance-625", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example625", + "search_line": 5627, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "329b44b0629f62e27d47d256234c0cd740a45aebfb15da4f4e2eb934a6844eca", + "line": 2432, + "resource_type": "aws_instance", + "resource_name": "example-instance-270", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example270", + "search_line": 2432, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "623872d1643be6a935a560bb9582a7bbc66f9d636ee314d81eb69fb32b47d183", + "line": 3854, + "resource_type": "aws_instance", + "resource_name": "example-instance-428", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example428", + "search_line": 3854, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e01e12b1e1b8ade90272f2f98b0331a3a218e6796bd4c0e98c4ba5f5d329db19", + "line": 749, + "resource_type": "aws_instance", + "resource_name": "example-instance-83", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example83", + "search_line": 749, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "81e2e53438837527c74a526d289f744cf4f99729887a89e3f5a48f7ec920953d", + "line": 1838, + "resource_type": "aws_instance", + "resource_name": "example-instance-204", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example204", + "search_line": 1838, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a4e347893e9517c3663a4fc7cff9af3bfc0bc0df4a9c0e450e0ba1a11df00757", + "line": 1451, + "resource_type": "aws_instance", + "resource_name": "example-instance-161", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example161", + "search_line": 1451, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "eb71fda132ce4c5952d5155401cd4bca900a0eeba74fd3b0526f8dfa8ec847bc", + "line": 5186, + "resource_type": "aws_instance", + "resource_name": "example-instance-576", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example576", + "search_line": 5186, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "04cfaace6f8f16dc815dfb013973fead2016ee6eaa4d8ea2dc00ab2d1e2857d6", + "line": 8165, + "resource_type": "aws_instance", + "resource_name": "example-instance-907", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example907", + "search_line": 8165, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "29bc871f8fc501bcf91480d5c403b1c700ccd7d425beeb4bba0a0a043388cfbc", + "line": 2711, + "resource_type": "aws_instance", + "resource_name": "example-instance-301", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example301", + "search_line": 2711, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d83cfd55738d2f06881776a5617d31919cff6ec9fdd660aa7ae2b16b3a0d2f9e", + "line": 2090, + "resource_type": "aws_instance", + "resource_name": "example-instance-232", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example232", + "search_line": 2090, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5c148b8e3ad7264d29fd0fdf8103ae88308c8f626175ca1bdf6519899d369a48", + "line": 1721, + "resource_type": "aws_instance", + "resource_name": "example-instance-191", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example191", + "search_line": 1721, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "58668a49473202b637bdaa73e763169d1d1b6b7d16066a13752dfc81f4679953", + "line": 2900, + "resource_type": "aws_instance", + "resource_name": "example-instance-322", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example322", + "search_line": 2900, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d4aa5f734f404c667655a222ae763d2f68d7a7bfd516d3ef36074a5e3ff842da", + "line": 6743, + "resource_type": "aws_instance", + "resource_name": "example-instance-749", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example749", + "search_line": 6743, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "05ed4db794c8c7f071524833b5a1b61eb3bae8730743250bf2efa68b44929a35", + "line": 7814, + "resource_type": "aws_instance", + "resource_name": "example-instance-868", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example868", + "search_line": 7814, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "822fab2d31803277b3edab94b4ec356966f763777c4551f0eefa47bb39e800d3", + "line": 1010, + "resource_type": "aws_instance", + "resource_name": "example-instance-112", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example112", + "search_line": 1010, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9094d34bb52d2fe3864bf5d58e3cddd100a6dd305cea1edc839ded7dfcb34c66", + "line": 7670, + "resource_type": "aws_instance", + "resource_name": "example-instance-852", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example852", + "search_line": 7670, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1c8cae4b41b89a9c26027e43f593a823c54a96fbc1e05d041ae8d8a608ff8948", + "line": 8075, + "resource_type": "aws_instance", + "resource_name": "example-instance-897", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example897", + "search_line": 8075, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4e59bab45301156e8d80ea65c958edf827775467ead9818336e0d21e7955cafd", + "line": 2873, + "resource_type": "aws_instance", + "resource_name": "example-instance-319", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example319", + "search_line": 2873, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a2047a7603ae494d4116d1f9cbfa457924b803d15d3dc3d95c953ab5b3b33854", + "line": 1100, + "resource_type": "aws_instance", + "resource_name": "example-instance-122", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example122", + "search_line": 1100, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "81b9e9e2b3832df5b52fd4ef8bfa91faa7700081a58a9d4a2dc5b4e78f39f868", + "line": 7310, + "resource_type": "aws_instance", + "resource_name": "example-instance-812", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example812", + "search_line": 7310, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "62d6307c479756ebb6adf5e171bd8c31d4e2bd449033c97929cd4b885dd11769", + "line": 8120, + "resource_type": "aws_instance", + "resource_name": "example-instance-902", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example902", + "search_line": 8120, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9aa3645466f2f243d221e4e0d24008414104061efd2da82f8c7245ae39ab7446", + "line": 4007, + "resource_type": "aws_instance", + "resource_name": "example-instance-445", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example445", + "search_line": 4007, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e0d16301ed5e484367689f40376fcd8ae21ae2db02f1adb802f46a1530de228d", + "line": 3080, + "resource_type": "aws_instance", + "resource_name": "example-instance-342", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example342", + "search_line": 3080, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f19f4b051a45bb08c4e15af732cb64034bcf4a3c24833e3598999afc6d8968be", + "line": 56, + "resource_type": "aws_instance", + "resource_name": "example-instance-6", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example6", + "search_line": 56, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "35fc84adf79b6232a5e795c2f62d5244b5c9479762ae4161144e68b002a8de95", + "line": 7004, + "resource_type": "aws_instance", + "resource_name": "example-instance-778", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example778", + "search_line": 7004, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d54a37903e46c53c942115b850a854298a9f46a07625ea133696abbc19954486", + "line": 2540, + "resource_type": "aws_instance", + "resource_name": "example-instance-282", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example282", + "search_line": 2540, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d671e6355dd361109b31e73ec3bde8293c439567ecde8b5cfa94e0fb73657389", + "line": 8255, + "resource_type": "aws_instance", + "resource_name": "example-instance-917", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example917", + "search_line": 8255, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "578e0fd42213c7fb08a606a583f3da7d953a5f1ee4839714cac82941c81af80c", + "line": 8732, + "resource_type": "aws_instance", + "resource_name": "example-instance-970", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example970", + "search_line": 8732, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2be14fec24066af6376cf0893daf7bc3c2c85d6881a895296d1e796bc9f759fe", + "line": 4655, + "resource_type": "aws_instance", + "resource_name": "example-instance-517", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example517", + "search_line": 4655, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0dabcef6fccbaee52646745e924a567f2bb3432c2e147a0021f575d060738e1a", + "line": 5942, + "resource_type": "aws_instance", + "resource_name": "example-instance-660", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example660", + "search_line": 5942, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a8e53be4eccf215daf382ec1eedf9ea523cd78c96a8927439a8ecc5cdbce02e2", + "line": 4493, + "resource_type": "aws_instance", + "resource_name": "example-instance-499", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example499", + "search_line": 4493, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e5cb9e421c9cab452a5d88d783438591e7fad6c3c24dfa88344a3db5e5b9f598", + "line": 4898, + "resource_type": "aws_instance", + "resource_name": "example-instance-544", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example544", + "search_line": 4898, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "91eca677c2383e0e76082a98d87edf26c0ce7854b9db7757ce801ccef6af176b", + "line": 1613, + "resource_type": "aws_instance", + "resource_name": "example-instance-179", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example179", + "search_line": 1613, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e1bd08e3f9c5306db679418d912b161f4e02c56460543822ac14cef212040c48", + "line": 6122, + "resource_type": "aws_instance", + "resource_name": "example-instance-680", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example680", + "search_line": 6122, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "470a2cf188baa1f336c35f435af8ec34759e56874568e36b77ab6482c7683d8b", + "line": 7193, + "resource_type": "aws_instance", + "resource_name": "example-instance-799", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example799", + "search_line": 7193, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "197f7acabf55b20e047d1ef9c2874f2a205750ebb75fa7d6293e6fc81e2eacf0", + "line": 8723, + "resource_type": "aws_instance", + "resource_name": "example-instance-969", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example969", + "search_line": 8723, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6e6bd20bbda47e5c36f3c29535896a0790711e887caba2e5b54e8910998ecae9", + "line": 5825, + "resource_type": "aws_instance", + "resource_name": "example-instance-647", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example647", + "search_line": 5825, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7582d24796f59a015302c651898b507ed24ed9c5c79970bdd3c2462f0ef9867b", + "line": 596, + "resource_type": "aws_instance", + "resource_name": "example-instance-66", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example66", + "search_line": 596, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "aab84e137da3bc3b2e2f950d8c1177e4c50458555db4504361f02d3e80b30f63", + "line": 515, + "resource_type": "aws_instance", + "resource_name": "example-instance-57", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example57", + "search_line": 515, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2034f3743f592d76dc469c4a424a58883771a0379823268a86208903ca086e64", + "line": 326, + "resource_type": "aws_instance", + "resource_name": "example-instance-36", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example36", + "search_line": 326, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5c6ca3c0afd1ee79683b2c36f0810034a5cdd6cf0360927d7fc8bcda715fb510", + "line": 5087, + "resource_type": "aws_instance", + "resource_name": "example-instance-565", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example565", + "search_line": 5087, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a499234ac110fcbb3c25c59af46c87c4736f7399045f4c8052b8daef04d5a49a", + "line": 4466, + "resource_type": "aws_instance", + "resource_name": "example-instance-496", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example496", + "search_line": 4466, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "64880e9393a9a7e6c88ce64b4109e586b2f1260967ebebe648d248daa1d91723", + "line": 6698, + "resource_type": "aws_instance", + "resource_name": "example-instance-744", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example744", + "search_line": 6698, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3b0747b95cd8906846ea510a2c768ba78dd490a4b6ef717f69b23f59d1025bab", + "line": 8093, + "resource_type": "aws_instance", + "resource_name": "example-instance-899", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example899", + "search_line": 8093, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "186e6af462d87b79c75501f2447fd094bf492d69466a97f2dbb2fe48c3be9b20", + "line": 8741, + "resource_type": "aws_instance", + "resource_name": "example-instance-971", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example971", + "search_line": 8741, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "28234de536be7246df8fd5abd6ffc86fd5e8b1d8485e62a82d34a2033faf341f", + "line": 5843, + "resource_type": "aws_instance", + "resource_name": "example-instance-649", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example649", + "search_line": 5843, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dbf4cbc0c02ea8535cd334de6959be00e88759c6bde9991a2675282d249dd3e4", + "line": 8561, + "resource_type": "aws_instance", + "resource_name": "example-instance-951", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example951", + "search_line": 8561, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ddcee43df324045bbcb75031faf8998392cf21a1ae0ea7030747cd54574f6d5d", + "line": 5618, + "resource_type": "aws_instance", + "resource_name": "example-instance-624", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example624", + "search_line": 5618, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cab173f7bc0d68084dc482635eef099236a857c843432e417568b7be88750ccf", + "line": 2774, + "resource_type": "aws_instance", + "resource_name": "example-instance-308", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example308", + "search_line": 2774, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ab2a43eae26cd45341d5ca34c2b8cd969a1c813fa5464b82a73e0bb193e0af7b", + "line": 3656, + "resource_type": "aws_instance", + "resource_name": "example-instance-406", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example406", + "search_line": 3656, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "756ee32c7e6fee08fbcabeab1067a79b5a7daf02e5b424640cc74de974a08c4a", + "line": 3377, + "resource_type": "aws_instance", + "resource_name": "example-instance-375", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example375", + "search_line": 3377, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6dc114170d8a874217e7abbb5b66bf9424bb7cf3735ef2895b5343fdfdee9750", + "line": 470, + "resource_type": "aws_instance", + "resource_name": "example-instance-52", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example52", + "search_line": 470, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6d8e9b46eb4123f5511d92202a331a8465d68b62515485542d283a8a850d35f2", + "line": 2927, + "resource_type": "aws_instance", + "resource_name": "example-instance-325", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example325", + "search_line": 2927, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "998bfac549b976209f8152fff00e3b604a097dfde9ff8e6b9a2d932eb98a319e", + "line": 6113, + "resource_type": "aws_instance", + "resource_name": "example-instance-679", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example679", + "search_line": 6113, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "20eea112e400a85095015b451056f92c6c437362cf7a43e8b848ff81f85004c0", + "line": 2216, + "resource_type": "aws_instance", + "resource_name": "example-instance-246", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example246", + "search_line": 2216, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2a0ff892cbe2091e54de4f1555c97dd8083d1d9c4cf0d3f58bb518b557680d75", + "line": 2288, + "resource_type": "aws_instance", + "resource_name": "example-instance-254", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example254", + "search_line": 2288, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "247633ebc989ab9f533305ce45e82a9acd4cf45d0f8289879bcab153c4c10b8e", + "line": 605, + "resource_type": "aws_instance", + "resource_name": "example-instance-67", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example67", + "search_line": 605, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2b76c2017ad54cfc9f268a66c85fb5d92041b26a8bfb3e05a87c1d5aab929e85", + "line": 8453, + "resource_type": "aws_instance", + "resource_name": "example-instance-939", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example939", + "search_line": 8453, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1fc8cd7eb7672f4fa1e3d58234d599d743b8fa9bfa5fb59566e4bdfc4bf15132", + "line": 1316, + "resource_type": "aws_instance", + "resource_name": "example-instance-146", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example146", + "search_line": 1316, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8d666b53e338909639acaf74fb966a2c5161c697ffdf53c1ba1c30481fddf96c", + "line": 4205, + "resource_type": "aws_instance", + "resource_name": "example-instance-467", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example467", + "search_line": 4205, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9964a10cd18a32b4461db7fec0da4aa42f8b3c0608fb798ece400690f4039564", + "line": 4016, + "resource_type": "aws_instance", + "resource_name": "example-instance-446", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example446", + "search_line": 4016, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cefc90194709df8dd9047b61490fce74bd52ed66a0f1e79812c9aea2cac33df8", + "line": 5789, + "resource_type": "aws_instance", + "resource_name": "example-instance-643", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example643", + "search_line": 5789, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4a2549c4d7e601c2eba1d377f811afd9f618a135291c620eb96b71fd786d3df7", + "line": 5330, + "resource_type": "aws_instance", + "resource_name": "example-instance-592", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example592", + "search_line": 5330, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "33b63828806e70bf192b489d7bd1cc4f782b60d05b3d80a7eb130c9a92d8b47f", + "line": 8111, + "resource_type": "aws_instance", + "resource_name": "example-instance-901", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example901", + "search_line": 8111, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e466048a9a9b6bfa3b0dfe9d39429aaf30af73ec9aff6919d5ef3fd768f2613e", + "line": 1415, + "resource_type": "aws_instance", + "resource_name": "example-instance-157", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example157", + "search_line": 1415, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2b0a94799da58e159735bda48570307f3d56bebac190d6490de3090c0c3b1341", + "line": 4250, + "resource_type": "aws_instance", + "resource_name": "example-instance-472", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example472", + "search_line": 4250, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "50c82fa062593c892342b1438d4011c46a61883f60992345ffe7e160de9a80b9", + "line": 7382, + "resource_type": "aws_instance", + "resource_name": "example-instance-820", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example820", + "search_line": 7382, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "68c44cd9b1be3a6dbdc4b33e9ee0d99d31cbea72b3271d0b2cf4779a510c75f9", + "line": 2297, + "resource_type": "aws_instance", + "resource_name": "example-instance-255", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example255", + "search_line": 2297, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dd2d4dfe7cb46fd71203d96d41e1a0b6f2f298c98e8130f40b1b22e765002992", + "line": 11, + "resource_type": "aws_instance", + "resource_name": "example-instance-1", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example1", + "search_line": 11, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "625f59922b72a6b87de8ea07f448ae7d31809e88ff711dea717f15c36a634137", + "line": 524, + "resource_type": "aws_instance", + "resource_name": "example-instance-58", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example58", + "search_line": 524, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "93d4197b83b7a3826151d17373e82064cf6e0d304554f2c66eeaa11f07893d57", + "line": 6077, + "resource_type": "aws_instance", + "resource_name": "example-instance-675", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example675", + "search_line": 6077, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d777cd11f2c86d445cb5ba003f1a8305d1aae4840e8c3c7e0bd9393e95dc71f4", + "line": 5402, + "resource_type": "aws_instance", + "resource_name": "example-instance-600", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example600", + "search_line": 5402, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e064c9d74971fbcb829e0ac7414d903e4549f46ca1e5ba973277593d2f97cb40", + "line": 8444, + "resource_type": "aws_instance", + "resource_name": "example-instance-938", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example938", + "search_line": 8444, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1a877702a3bd116865a6ae42167dfe732a89413260ff60e0d7ae045731d936bc", + "line": 3467, + "resource_type": "aws_instance", + "resource_name": "example-instance-385", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example385", + "search_line": 3467, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "755cb68d1205055cfacdb8a19cc76ef126b49d2910858ac44d4e8ae1342ea70d", + "line": 5132, + "resource_type": "aws_instance", + "resource_name": "example-instance-570", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example570", + "search_line": 5132, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "757aee73e04c8f9990a89865332ceb7f1f11df0b0af5860c5d424b958a2b7d54", + "line": 8642, + "resource_type": "aws_instance", + "resource_name": "example-instance-960", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example960", + "search_line": 8642, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d5bedcbf0ee4e297d33684c6493a34a5d62c1c9f38e865d78554514bc80d6884", + "line": 8903, + "resource_type": "aws_instance", + "resource_name": "example-instance-989", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example989", + "search_line": 8903, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b05b2f8696ef832d4dd71dc9f184311e698dbc310a6387e5cd64d0b251d44934", + "line": 4295, + "resource_type": "aws_instance", + "resource_name": "example-instance-477", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example477", + "search_line": 4295, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ee17fed0bc2c2010789abea5cb75e189d6dfce308a78ced9ff4cd6fe22f95c90", + "line": 623, + "resource_type": "aws_instance", + "resource_name": "example-instance-69", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example69", + "search_line": 623, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6a7fc8a03fcb59eaea4dbb5f4bd7b4c426283e90bac3304129004594b4c747e3", + "line": 5861, + "resource_type": "aws_instance", + "resource_name": "example-instance-651", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example651", + "search_line": 5861, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fc0e8ecfa712732adf02ff63bc5074ab152d6911b17baf174571689d5e02fbf8", + "line": 7184, + "resource_type": "aws_instance", + "resource_name": "example-instance-798", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example798", + "search_line": 7184, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7d046d221895cc02c810ba5b3f90ee37b3f66e05f275450e66d813180f6f7877", + "line": 8372, + "resource_type": "aws_instance", + "resource_name": "example-instance-930", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example930", + "search_line": 8372, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4d189dc51f741e48e6a0fe1f52a489c5d362bf9f11f74ae3a5eb6a1d41f45d90", + "line": 2063, + "resource_type": "aws_instance", + "resource_name": "example-instance-229", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example229", + "search_line": 2063, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "037782cf192da9e49717c8d5b146ce5aa1a490b1447af9c3d188cac0a383415e", + "line": 5546, + "resource_type": "aws_instance", + "resource_name": "example-instance-616", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example616", + "search_line": 5546, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e041e7e81dd33ca777da71c8cfa64c2572529de2dddbb293982ecf00d9b421a2", + "line": 5897, + "resource_type": "aws_instance", + "resource_name": "example-instance-655", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example655", + "search_line": 5897, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "76934d22544ecfa7a36b524da43669858b9636f8c483efdaf3c8d585edf903a8", + "line": 3989, + "resource_type": "aws_instance", + "resource_name": "example-instance-443", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example443", + "search_line": 3989, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "890a1a9e6e01998f576cd5f3da19f02f27478513ba78446048294bfb0f8af2c3", + "line": 3242, + "resource_type": "aws_instance", + "resource_name": "example-instance-360", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example360", + "search_line": 3242, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "453dd47889a174243a9de6d92753f1e88b33d23e8675a06e2bb32ac2bc7c2e98", + "line": 2198, + "resource_type": "aws_instance", + "resource_name": "example-instance-244", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example244", + "search_line": 2198, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "eee2de169ed300c1f9edf5baac092a8d0ddb3c606fc13fec6f289dbf7f28fb07", + "line": 6599, + "resource_type": "aws_instance", + "resource_name": "example-instance-733", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example733", + "search_line": 6599, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0d28be7c347b1e646e7bbe367d18b681c1d2a6e233bc0ea034c2bd8b59574861", + "line": 1307, + "resource_type": "aws_instance", + "resource_name": "example-instance-145", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example145", + "search_line": 1307, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3fbf9b22e483d1c74909bcf43eaeb763d098b342c62521333e69540bdcf82302", + "line": 7013, + "resource_type": "aws_instance", + "resource_name": "example-instance-779", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example779", + "search_line": 7013, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7ae6be0c1d91467a1d43d4becc8046d7d3b943e1bc1b196e2f6b48f901c05513", + "line": 3350, + "resource_type": "aws_instance", + "resource_name": "example-instance-372", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example372", + "search_line": 3350, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e563c992ddb08e428def0ff62ce431e215f8d9734a864afe5f5e2bcc308e62aa", + "line": 5609, + "resource_type": "aws_instance", + "resource_name": "example-instance-623", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example623", + "search_line": 5609, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "272ffcfab8e539e149ba64f5a27eeb8f78f0ec2da636faa8a0be3392f4827fd1", + "line": 2108, + "resource_type": "aws_instance", + "resource_name": "example-instance-234", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example234", + "search_line": 2108, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f005d65d0c41ae9dad82b1b445653826478ac24a872a3b491374f0296267a965", + "line": 1496, + "resource_type": "aws_instance", + "resource_name": "example-instance-166", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example166", + "search_line": 1496, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8c4085ce1f6724efc8d56d2a64c70e3efdcf027d72bd8334cb0a737da26430b7", + "line": 497, + "resource_type": "aws_instance", + "resource_name": "example-instance-55", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example55", + "search_line": 497, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "48fb76b7ba8d6ee20cb2bd3eb9257ae8f09ba77bbc1595f7520045c5e7cce02d", + "line": 7517, + "resource_type": "aws_instance", + "resource_name": "example-instance-835", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example835", + "search_line": 7517, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "feafb0a9479cd1b3674d240f3f1d3abd2661beca1d3ea6bcc6152e7a4ee5281e", + "line": 5483, + "resource_type": "aws_instance", + "resource_name": "example-instance-609", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example609", + "search_line": 5483, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1d96b3f98df44c136fbd8c7b371ed5b6acc7630413d15a81acdbacc5e2cf1fa3", + "line": 6662, + "resource_type": "aws_instance", + "resource_name": "example-instance-740", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example740", + "search_line": 6662, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2707701c3079e3642c42683658cfdd0d956e4539b396100657f2c48d204bfe55", + "line": 2378, + "resource_type": "aws_instance", + "resource_name": "example-instance-264", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example264", + "search_line": 2378, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "12bd7ff5fd72a081939d18e1c66ce7c90a65baf0e43675dc264cbc49d80a5366", + "line": 479, + "resource_type": "aws_instance", + "resource_name": "example-instance-53", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example53", + "search_line": 479, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ae8d3725e4fca63c3ce99f5423260b707dd7ebf3d5b7307551aa2dd5b0a52545", + "line": 8525, + "resource_type": "aws_instance", + "resource_name": "example-instance-947", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example947", + "search_line": 8525, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2c5ae247c67a1d1f060549a5074f9db561522bf938f47c191b16ba775bf8357d", + "line": 8768, + "resource_type": "aws_instance", + "resource_name": "example-instance-974", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example974", + "search_line": 8768, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1a754b78e580eb9fadd539d9adcc779213a49c0dbb866d02e5ae765d400c6cd8", + "line": 3710, + "resource_type": "aws_instance", + "resource_name": "example-instance-412", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example412", + "search_line": 3710, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6bb962f968d8e837117d0df9f23ddeedab3856622b63dff750f3799b9fc72d7a", + "line": 7769, + "resource_type": "aws_instance", + "resource_name": "example-instance-863", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example863", + "search_line": 7769, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d1377ec8f2ffcec303faca34be6c1aa7ce27240d3b6af2820c5e5bcb19040edd", + "line": 4430, + "resource_type": "aws_instance", + "resource_name": "example-instance-492", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example492", + "search_line": 4430, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d2c900649b801a4c70bc57ea017cd99c017c2344b59b96bfd746d13b6fc2688a", + "line": 2765, + "resource_type": "aws_instance", + "resource_name": "example-instance-307", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example307", + "search_line": 2765, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2271586a06451a480ceb22de3caa35f83c8ba53bd1c1d9ca73a0c1ca21d13313", + "line": 1892, + "resource_type": "aws_instance", + "resource_name": "example-instance-210", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example210", + "search_line": 1892, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2b71c5aa711ad2ac4cac3a6c70787c723fa06636364421e54fc845a7010f8faf", + "line": 3062, + "resource_type": "aws_instance", + "resource_name": "example-instance-340", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example340", + "search_line": 3062, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e62de4f49bf797fe5a38b2afc7ea6517fe1cb1aeb58bddfda418fa5e4aec251a", + "line": 2261, + "resource_type": "aws_instance", + "resource_name": "example-instance-251", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example251", + "search_line": 2261, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2433c68ac07fc2612ee726f5b32a67a841171b91290a27b8645cb0bfa5e27392", + "line": 3674, + "resource_type": "aws_instance", + "resource_name": "example-instance-408", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example408", + "search_line": 3674, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "56200788cabbfbb643f35aef74315b6bd26dc99f800245bcf6dcb576a4334064", + "line": 704, + "resource_type": "aws_instance", + "resource_name": "example-instance-78", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example78", + "search_line": 704, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2627a3b48ffc47340caaefc0cebfc0795bc2af994d46dd8b9cb224553bb00be2", + "line": 3224, + "resource_type": "aws_instance", + "resource_name": "example-instance-358", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example358", + "search_line": 3224, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fcf0e05252274788a10ba925644133e9259806e8d020e0d43f68f7e635d637bc", + "line": 3908, + "resource_type": "aws_instance", + "resource_name": "example-instance-434", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example434", + "search_line": 3908, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f2620455056c275cf51dadf2dfcdc112c22e0911f07105c753450b2106ca6482", + "line": 2702, + "resource_type": "aws_instance", + "resource_name": "example-instance-300", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example300", + "search_line": 2702, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b946355da9829a7532daa3d269e916580792a2364a14bb7323a3dde725f43dd7", + "line": 3359, + "resource_type": "aws_instance", + "resource_name": "example-instance-373", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example373", + "search_line": 3359, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8f023e51e45469c7a317ba563a0076eb13bbbe17a72065c658ed10e1761b9cc8", + "line": 425, + "resource_type": "aws_instance", + "resource_name": "example-instance-47", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example47", + "search_line": 425, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "57415606efa8158a2d71dec52a52e68088cc2f0de3090c5d14e7a8c8dd6a3a37", + "line": 3818, + "resource_type": "aws_instance", + "resource_name": "example-instance-424", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example424", + "search_line": 3818, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ecd0ab2ace2ca4d273f482cfbc265f2b4e0e5ff84b1d15c28b636dea24220b4c", + "line": 3584, + "resource_type": "aws_instance", + "resource_name": "example-instance-398", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example398", + "search_line": 3584, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f3e58c5209b0d7f24693bb317f088dbe55510b310226eb77943638177b4de199", + "line": 6509, + "resource_type": "aws_instance", + "resource_name": "example-instance-723", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example723", + "search_line": 6509, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "38e3c91fe65797af43e674fe5548ed8be2c5f27f8eec65c650af42a5fbf41111", + "line": 6716, + "resource_type": "aws_instance", + "resource_name": "example-instance-746", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example746", + "search_line": 6716, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "49efe20c334f19b17ec1502e33d9f6cdba585a0bf807511676f9fbec669bd388", + "line": 8579, + "resource_type": "aws_instance", + "resource_name": "example-instance-953", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example953", + "search_line": 8579, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "91fe62167a9b638bac176bf8a521008155fa60b7c7112ecc78a0eb9314ca79c7", + "line": 9002, + "resource_type": "aws_instance", + "resource_name": "example-instance-1000", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example1000", + "search_line": 9002, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "94048c165b9ce5af799794d9b70a0a8c0344c92b4e6673890d1a864e5deb25f0", + "line": 3962, + "resource_type": "aws_instance", + "resource_name": "example-instance-440", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example440", + "search_line": 3962, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6a7ec99fa6532b7b46e594134bfd23a42cd5f689caebdf354d705c8c4713f187", + "line": 5537, + "resource_type": "aws_instance", + "resource_name": "example-instance-615", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example615", + "search_line": 5537, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1614968178f9eee2eea320b3251f206dbd88493f9a08e21affc114c797206ccf", + "line": 7472, + "resource_type": "aws_instance", + "resource_name": "example-instance-830", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example830", + "search_line": 7472, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e743dadce8d9d7df5445ef01f68d0bf00f3ddcab9210b9c5475a287acd83e544", + "line": 7562, + "resource_type": "aws_instance", + "resource_name": "example-instance-840", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example840", + "search_line": 7562, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9d4867d9a91c9f8a5bb134995ccd2fbb68d886c757b402ed2f032fb6b7bc82ec", + "line": 5879, + "resource_type": "aws_instance", + "resource_name": "example-instance-653", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example653", + "search_line": 5879, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b9beddd538d39055e5bec0c71b7b29a4eab38adf8cb8c67c1051eadf74d183fb", + "line": 6563, + "resource_type": "aws_instance", + "resource_name": "example-instance-729", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example729", + "search_line": 6563, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7a8619b18f305421c0d9f66dd095ec3a746d7d9850657b3c5a169066eaecd487", + "line": 1775, + "resource_type": "aws_instance", + "resource_name": "example-instance-197", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example197", + "search_line": 1775, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d9296c50903d466beefef0c3f7ed9c7cbd2ab7989ba874fdc1f52d3a7afa88c1", + "line": 1919, + "resource_type": "aws_instance", + "resource_name": "example-instance-213", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example213", + "search_line": 1919, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3ddeef5c4a0ca61b884b0da8e6de3ef8236bda62f06ce69345b32973aa03797c", + "line": 7076, + "resource_type": "aws_instance", + "resource_name": "example-instance-786", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example786", + "search_line": 7076, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6c6e93a76ab17ff4f1c01d3d05efa149f31db3489b2fdf8c6a09c106ab4dead0", + "line": 7283, + "resource_type": "aws_instance", + "resource_name": "example-instance-809", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example809", + "search_line": 7283, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "870756bab66f7010b4dee646e7472bbff84464356a771ea9cd75f9091d79cafd", + "line": 2225, + "resource_type": "aws_instance", + "resource_name": "example-instance-247", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example247", + "search_line": 2225, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d65a9f8cb006b7df32455741c1d2b70a0532dad7d0c35ce5c0ba487e0c589f02", + "line": 5852, + "resource_type": "aws_instance", + "resource_name": "example-instance-650", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example650", + "search_line": 5852, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f0bdfa0d43144fdc9efb8caaac361a11b9054385bacab9ff7752ca85bdfe64c6", + "line": 3998, + "resource_type": "aws_instance", + "resource_name": "example-instance-444", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example444", + "search_line": 3998, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d0487f4d8ca9812e0a03df28b28092ad4152c85332920acc86ec51bff808dbbe", + "line": 1397, + "resource_type": "aws_instance", + "resource_name": "example-instance-155", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example155", + "search_line": 1397, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7966569e72e147baf5c2f8976b3216ef74e5872bf9ae3010ecdddd0ae2600d7d", + "line": 3089, + "resource_type": "aws_instance", + "resource_name": "example-instance-343", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example343", + "search_line": 3089, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "70e34096a62b7432d1fd5b661c3120caaea11006439833b8ec0577a7c1c38a80", + "line": 5168, + "resource_type": "aws_instance", + "resource_name": "example-instance-574", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example574", + "search_line": 5168, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b41fa42ed292ddc06ca2f787643ea70b3141b52619b3da4cd028993f6c6c7524", + "line": 1424, + "resource_type": "aws_instance", + "resource_name": "example-instance-158", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example158", + "search_line": 1424, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "14763de11dcf2b416173f9846ccf9c0a1b9f9270e47e8612433d43f5008ef590", + "line": 506, + "resource_type": "aws_instance", + "resource_name": "example-instance-56", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example56", + "search_line": 506, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b091493cc18b74fd0066cc48f9765ebf87cbc841bf0631b4612a5e8c15deab94", + "line": 3494, + "resource_type": "aws_instance", + "resource_name": "example-instance-388", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example388", + "search_line": 3494, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "260cf97482bb14fa0c72c02ec9323f89809865eb75a1df09317e5c0dddc33808", + "line": 5339, + "resource_type": "aws_instance", + "resource_name": "example-instance-593", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example593", + "search_line": 5339, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8b2b4e166b2e258c444331eddb30a9fb0732dbe566584311a71cb793df04f7b9", + "line": 2387, + "resource_type": "aws_instance", + "resource_name": "example-instance-265", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example265", + "search_line": 2387, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d04957477211ff8694ab16d2a5224d1a27f040e1892bcdc91b8c724bb649a0a1", + "line": 6401, + "resource_type": "aws_instance", + "resource_name": "example-instance-711", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example711", + "search_line": 6401, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "47532399d572c1a9dcc1758351a19922efb000052e0d6f81d655fce0c7bc930c", + "line": 3746, + "resource_type": "aws_instance", + "resource_name": "example-instance-416", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example416", + "search_line": 3746, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f17e417e1cbe572e710ce0331f5a9caddd152c10d9e0023181b94b4531e806b6", + "line": 4538, + "resource_type": "aws_instance", + "resource_name": "example-instance-504", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example504", + "search_line": 4538, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c82b47d844306324119a41f9ef5bdafc1315d95c1bf3045b3691d9ed34c71caf", + "line": 6383, + "resource_type": "aws_instance", + "resource_name": "example-instance-709", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example709", + "search_line": 6383, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0831838debf7a5b2b41fa560967b4f219b4f092ef6ed302bb248b7b939a5590c", + "line": 4547, + "resource_type": "aws_instance", + "resource_name": "example-instance-505", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example505", + "search_line": 4547, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c9d783ce3d32f27938ca9964d35192acf300bb6d7c54526d177737f39e6acd3b", + "line": 2162, + "resource_type": "aws_instance", + "resource_name": "example-instance-240", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example240", + "search_line": 2162, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "06fae2d4fd77b526872e48e23964dbe02560bb5a9a51f2d9c4e8d578a324a23b", + "line": 6266, + "resource_type": "aws_instance", + "resource_name": "example-instance-696", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example696", + "search_line": 6266, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0135326e48ca5f2fc191af14c7813a465d561d0ea18ee6fde482b49a1b3f652d", + "line": 7967, + "resource_type": "aws_instance", + "resource_name": "example-instance-885", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example885", + "search_line": 7967, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "28f469e8d788cb2287716bd91a91f898e7bc9edfdd5a4b6d7b7aebc4fb81123d", + "line": 5969, + "resource_type": "aws_instance", + "resource_name": "example-instance-663", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example663", + "search_line": 5969, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9c19276249d2cf451ca635b0f38a43102dfb1a138520023a2e040f51ffbc7737", + "line": 7301, + "resource_type": "aws_instance", + "resource_name": "example-instance-811", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example811", + "search_line": 7301, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "777f803292d454aa0777a02447a5dfa97c86963b64f3ca80a03b3191f45f0d2e", + "line": 803, + "resource_type": "aws_instance", + "resource_name": "example-instance-89", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example89", + "search_line": 803, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f0f7a79a5fef70a3e001ec9bcf5858564a71a859a1cb05dc01dc301e3c164543", + "line": 8291, + "resource_type": "aws_instance", + "resource_name": "example-instance-921", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example921", + "search_line": 8291, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "84fd8e14fb5db1416ace9af6a9014ae980f09a007b26675f5a2e6808fae35a8e", + "line": 5375, + "resource_type": "aws_instance", + "resource_name": "example-instance-597", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example597", + "search_line": 5375, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d4a8a7b1c917d674bf1e52a9fd0453a3b0398e71c5ee1501c90bccba514a3915", + "line": 7724, + "resource_type": "aws_instance", + "resource_name": "example-instance-858", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example858", + "search_line": 7724, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c81a93f5f6276b0d9265af1291b9a0fbc40c3160b149f09b83d3478cd858de2b", + "line": 4313, + "resource_type": "aws_instance", + "resource_name": "example-instance-479", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example479", + "search_line": 4313, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "68ec5240d94f3e8dd5b49bc7b96850934f3c30e77eee2b5220d713dc7d4b4843", + "line": 6176, + "resource_type": "aws_instance", + "resource_name": "example-instance-686", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example686", + "search_line": 6176, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bf537141d1a2a2e1cda75e22d202cb171a7ee06739b1afcd0ec70d3c67f925cc", + "line": 4061, + "resource_type": "aws_instance", + "resource_name": "example-instance-451", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example451", + "search_line": 4061, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4b3632870bf93dbf05bdd8e67786233e8b06dcd60c63a563c246069fe86531d6", + "line": 8336, + "resource_type": "aws_instance", + "resource_name": "example-instance-926", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example926", + "search_line": 8336, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "07e0667f4da762fabe53b70cccaeb8a32ee23334506b60899397a314f5170f37", + "line": 3638, + "resource_type": "aws_instance", + "resource_name": "example-instance-404", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example404", + "search_line": 3638, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fd9a813839a16be1107e19e9c49f9dcb2288b0afbec306e8d2ec63865817313b", + "line": 8462, + "resource_type": "aws_instance", + "resource_name": "example-instance-940", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example940", + "search_line": 8462, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3c37367aa90465fdae6599e7777f8723e0ce51f8e79f13aa20d638afd92cd92c", + "line": 2846, + "resource_type": "aws_instance", + "resource_name": "example-instance-316", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example316", + "search_line": 2846, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b38861a598e5a008e6d0bf83cdd9104b2524294b3461efdd4cda9a3b2c8f31ae", + "line": 1478, + "resource_type": "aws_instance", + "resource_name": "example-instance-164", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example164", + "search_line": 1478, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "88a95d809fbf544f42726e636b34dd65d32182d33bb329fc1c2082729a42482f", + "line": 4997, + "resource_type": "aws_instance", + "resource_name": "example-instance-555", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example555", + "search_line": 4997, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "be8b21b1855d831be3fd561f0a06ace9cac138b9d37b9a8fda7d3411423d5460", + "line": 7913, + "resource_type": "aws_instance", + "resource_name": "example-instance-879", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example879", + "search_line": 7913, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2ab3ca40066c39d768242a6cc208c0cfd0bd2bf268abdb46cfe11e1a29c668d1", + "line": 380, + "resource_type": "aws_instance", + "resource_name": "example-instance-42", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example42", + "search_line": 380, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "26f63dc1fc0c7a92abea53bcb7c130b1f9877cc41c9ffc0b7841a0742f4daf53", + "line": 8012, + "resource_type": "aws_instance", + "resource_name": "example-instance-890", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example890", + "search_line": 8012, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e35f00590a2ce9f7f4254a5876467238ccc067440c414f411079d86ad00b5762", + "line": 5411, + "resource_type": "aws_instance", + "resource_name": "example-instance-601", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example601", + "search_line": 5411, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "590a05d645a231ea90f3261693d8241d5e05adf72b64d42fa7e8ad66567667e5", + "line": 3728, + "resource_type": "aws_instance", + "resource_name": "example-instance-414", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example414", + "search_line": 3728, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4ae6bdf05d25196b39dd93a4d3f023f7c5672649b6d5495857b2ecba8c33633d", + "line": 8309, + "resource_type": "aws_instance", + "resource_name": "example-instance-923", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example923", + "search_line": 8309, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3c4c0d5e23aaeb012ffd6a160b898e87ea64db989cc4ee5c9fe357fd67dc4b85", + "line": 7328, + "resource_type": "aws_instance", + "resource_name": "example-instance-814", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example814", + "search_line": 7328, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5d6717df3b4f1ddec99cb356f58b9be15f4ad336c0110e6c9830c0d6e71863f0", + "line": 983, + "resource_type": "aws_instance", + "resource_name": "example-instance-109", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example109", + "search_line": 983, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "992f63bd0e009b56bf5cab28a518e0ce05bd5314e4ba4bd3db7164dddd6d7d96", + "line": 7985, + "resource_type": "aws_instance", + "resource_name": "example-instance-887", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example887", + "search_line": 7985, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a1709aaf2973448521ce1a68bd638759fe2f0d57d6bf55d338055fb5546fd684", + "line": 6968, + "resource_type": "aws_instance", + "resource_name": "example-instance-774", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example774", + "search_line": 6968, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a942d87d64c1d09ca11479fb00dd4f11e6ee7b54bea8a987d1218214e58487d7", + "line": 4097, + "resource_type": "aws_instance", + "resource_name": "example-instance-455", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example455", + "search_line": 4097, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8a76c33fbdea5f7a17a8af02e512256f27f4770ea47f39db2370218f5c6befa5", + "line": 7247, + "resource_type": "aws_instance", + "resource_name": "example-instance-805", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example805", + "search_line": 7247, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7268a751f69bdde29b2be9c7f158f6b519910f37add820a9c7b3f9f95183170c", + "line": 2135, + "resource_type": "aws_instance", + "resource_name": "example-instance-237", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example237", + "search_line": 2135, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5418b7fdea6696b7c7b696112922aaaf4258235d117b8fdd34ae8c777bcb8465", + "line": 5024, + "resource_type": "aws_instance", + "resource_name": "example-instance-558", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example558", + "search_line": 5024, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "86df1a142ad90bd894fe69d46e324df101bc042b0feb933f9c5b9195cc5d1452", + "line": 7778, + "resource_type": "aws_instance", + "resource_name": "example-instance-864", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example864", + "search_line": 7778, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1b2aecad1e0f19f4ef96c50ea020a913a47345488c5e74ccfb8c6d51a5935792", + "line": 5519, + "resource_type": "aws_instance", + "resource_name": "example-instance-613", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example613", + "search_line": 5519, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "16c948a2d859183c252c5b0c74ec52d43d2f04cd030d81b58aa55a9179038cfd", + "line": 6428, + "resource_type": "aws_instance", + "resource_name": "example-instance-714", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example714", + "search_line": 6428, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6540b72c0a6749ff1d0c04afa8ed62bf56ec4e3858cb2aefe1707215a6238194", + "line": 3035, + "resource_type": "aws_instance", + "resource_name": "example-instance-337", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example337", + "search_line": 3035, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b7a4673d6efb1f5f0185d8b67e9106bfd10994a50df65edef1e0f410b8607812", + "line": 6293, + "resource_type": "aws_instance", + "resource_name": "example-instance-699", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example699", + "search_line": 6293, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "42dcebfd1b675d7dafd6f4d73a61b2a41d56f434e158c1a1a8a6223fa1b193ae", + "line": 6320, + "resource_type": "aws_instance", + "resource_name": "example-instance-702", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example702", + "search_line": 6320, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ecafb7ab176724242ac85b638c935931f6ac83449ec9d75955e8de4f87ad79d0", + "line": 5159, + "resource_type": "aws_instance", + "resource_name": "example-instance-573", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example573", + "search_line": 5159, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "81241002c492c37fb3c30655591fd4ca647346c75b3d7c8b25490ccce8e7608a", + "line": 1262, + "resource_type": "aws_instance", + "resource_name": "example-instance-140", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example140", + "search_line": 1262, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "63b14f1fca1ed058e080dfc1e008d4917e5f13f664c4e457d88201c447bbac72", + "line": 1901, + "resource_type": "aws_instance", + "resource_name": "example-instance-211", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example211", + "search_line": 1901, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9d36b1b9b78337a59078ad907b9efa5d2c48551b9bba74163fcff4cbdb5e251e", + "line": 3017, + "resource_type": "aws_instance", + "resource_name": "example-instance-335", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example335", + "search_line": 3017, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0c1f7f2f6b8b81fb7f910db37d4f1948062d76330f5596f13b966e0096ba7831", + "line": 2837, + "resource_type": "aws_instance", + "resource_name": "example-instance-315", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example315", + "search_line": 2837, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2a06cb47a67f73abb277aaa548fc20dbcccbea7d4b3e6f1831a7e1b16ff22b59", + "line": 3683, + "resource_type": "aws_instance", + "resource_name": "example-instance-409", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example409", + "search_line": 3683, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fe5b69c02f07826ba39f1c7ee00e2f326a2878547b52e145d46c1d9222f93a99", + "line": 4340, + "resource_type": "aws_instance", + "resource_name": "example-instance-482", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example482", + "search_line": 4340, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f2dbe3c294d6826166b78005adadd6fee971c82d07f8c82f94ed307f11751dd9", + "line": 3233, + "resource_type": "aws_instance", + "resource_name": "example-instance-359", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example359", + "search_line": 3233, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "77fd90988dfbc9175b08244070ff47a86542098373af5ba43f32305af3f8e8cb", + "line": 3782, + "resource_type": "aws_instance", + "resource_name": "example-instance-420", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example420", + "search_line": 3782, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "43c00d5f5abd39ed529a1b9741b724182659602ddeeec8bf0e5ca28ece9b0bb1", + "line": 4331, + "resource_type": "aws_instance", + "resource_name": "example-instance-481", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example481", + "search_line": 4331, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "19cc3961ef233cdfe8e8375657bc77445baabd119436e62afa0910d0222cec3c", + "line": 8849, + "resource_type": "aws_instance", + "resource_name": "example-instance-983", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example983", + "search_line": 8849, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "438f88a053f47f8d1934e1c869af48bf27ec07f128b6302cfd94abe8441a1a43", + "line": 3809, + "resource_type": "aws_instance", + "resource_name": "example-instance-423", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example423", + "search_line": 3809, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "00886e674b311b0ad077dc54085a7c0aacc6d42708ea0513c55019c794b806b0", + "line": 4484, + "resource_type": "aws_instance", + "resource_name": "example-instance-498", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example498", + "search_line": 4484, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d813183c29fbafd38c868ec6a8c1d96f56939d149246d57342deb189beff806f", + "line": 560, + "resource_type": "aws_instance", + "resource_name": "example-instance-62", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example62", + "search_line": 560, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5bccc8e4b7f173d66db582ad3d4a009f4126d5518700f5427f5f2d2f8443c4fb", + "line": 3881, + "resource_type": "aws_instance", + "resource_name": "example-instance-431", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example431", + "search_line": 3881, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f0a0cbbb3dc19c88e3f8f0ef62fa763079bcc33ceea1b4081068cf5fe3d5ee8c", + "line": 8381, + "resource_type": "aws_instance", + "resource_name": "example-instance-931", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example931", + "search_line": 8381, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c87bf4f9c324368caa6701017fd8fc87b959bb2f3595a05fe0a472c6c1403a56", + "line": 2117, + "resource_type": "aws_instance", + "resource_name": "example-instance-235", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example235", + "search_line": 2117, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "55dcfac516eb524c1d39e4c3e5420859a1bd5791a3f477b0a92432108ff39d1c", + "line": 2864, + "resource_type": "aws_instance", + "resource_name": "example-instance-318", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example318", + "search_line": 2864, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "77fa651d9c34bb79aab07244d25e57a25704d0bc4dc809c58c7619e95b22416c", + "line": 7526, + "resource_type": "aws_instance", + "resource_name": "example-instance-836", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example836", + "search_line": 7526, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1be48f9351baacec842740e3760f6de6619994789226aaf4ddf61a0735be1b19", + "line": 6491, + "resource_type": "aws_instance", + "resource_name": "example-instance-721", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example721", + "search_line": 6491, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7e776471a8ee0b888f98fdd42e7775f8ea354fc1a2e4686f004b0933b4c7e6b6", + "line": 3107, + "resource_type": "aws_instance", + "resource_name": "example-instance-345", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example345", + "search_line": 3107, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fd3d29baf7715bb3fe841acba03f63d4e65701aac03dbce057e0c797b5a81cf7", + "line": 3422, + "resource_type": "aws_instance", + "resource_name": "example-instance-380", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example380", + "search_line": 3422, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e8677fb31395f32be17d9e61bb0682985ea72d3367699ded4e4cbbb4013f1d3a", + "line": 722, + "resource_type": "aws_instance", + "resource_name": "example-instance-80", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example80", + "search_line": 722, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0928128bf8889a1af71422c93f623e9eb047b03331a3c352b92a656d3d32d2d5", + "line": 7292, + "resource_type": "aws_instance", + "resource_name": "example-instance-810", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example810", + "search_line": 7292, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d8fbcf798f2f772988d4b4944d8d411c2d09b61154a801cd9a1d0ad69f306063", + "line": 785, + "resource_type": "aws_instance", + "resource_name": "example-instance-87", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example87", + "search_line": 785, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "56108663ae6a4baa0553d9a28fd9954f98259d2b7e088486740af9bec207b78e", + "line": 5294, + "resource_type": "aws_instance", + "resource_name": "example-instance-588", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example588", + "search_line": 5294, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e2ed6fd238e4ab1d396c0cf0b853f0ab94a61f04c846bd9078c06e264db03b9a", + "line": 7823, + "resource_type": "aws_instance", + "resource_name": "example-instance-869", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example869", + "search_line": 7823, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d98773f2de68b4f3a258dfb4da559073014b068f738bf8307eb34c036d532efd", + "line": 2630, + "resource_type": "aws_instance", + "resource_name": "example-instance-292", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example292", + "search_line": 2630, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "30f148b438ffee509dfe0e489b8d500b3659f635f34fe71b4285eca897fcfdba", + "line": 173, + "resource_type": "aws_instance", + "resource_name": "example-instance-19", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example19", + "search_line": 173, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "68dbf83f3c6b9edff989a170e7ba0ce7b8fe8613c4087d0991d05d4f5a683c52", + "line": 3980, + "resource_type": "aws_instance", + "resource_name": "example-instance-442", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example442", + "search_line": 3980, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4086ea3279bdb1a1440ddee67074ccad2ef8309c62d8b27685cc7b9408b39919", + "line": 7211, + "resource_type": "aws_instance", + "resource_name": "example-instance-801", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example801", + "search_line": 7211, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c2b04f11dcbc8c0371c451ea78fe15be92b017fd9129c773fdb09319d23eff0b", + "line": 5312, + "resource_type": "aws_instance", + "resource_name": "example-instance-590", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example590", + "search_line": 5312, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "de2526039ac8b9e2be8636b512d98b6f0dcdccf9fa4af1cea6d99fc2cd34177c", + "line": 1352, + "resource_type": "aws_instance", + "resource_name": "example-instance-150", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example150", + "search_line": 1352, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "42e26e2c9b1fb5907efa8a4949cc87a3f4a0d684860811a979ff551aac673554", + "line": 3476, + "resource_type": "aws_instance", + "resource_name": "example-instance-386", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example386", + "search_line": 3476, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0ba6a3f545569706165d681b1e956c340c3e5d703ed068e96902181acf90bcd7", + "line": 1235, + "resource_type": "aws_instance", + "resource_name": "example-instance-137", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example137", + "search_line": 1235, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8a170c975fd5f4777626d54c4ca9d199fe6b78d95a0ee5fa68b947c998f456f7", + "line": 434, + "resource_type": "aws_instance", + "resource_name": "example-instance-48", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example48", + "search_line": 434, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d886695a1c3af7d6976cd1a4616f57257a22c7c7e42d35eb68b3ecdeb0070bf3", + "line": 4574, + "resource_type": "aws_instance", + "resource_name": "example-instance-508", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example508", + "search_line": 4574, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5de7d9a146b6376909d79d6f996bb589dbad5ca7b5fe6240cc359ad08ce82750", + "line": 794, + "resource_type": "aws_instance", + "resource_name": "example-instance-88", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example88", + "search_line": 794, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9410e03c21842a179786372095ee6a6d7c2f8333a7d19b33a92392eb3da54f6c", + "line": 8201, + "resource_type": "aws_instance", + "resource_name": "example-instance-911", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example911", + "search_line": 8201, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e4173a68003a23ab241086ef83aaabf73444df411b949bdffa572022179bb42f", + "line": 7976, + "resource_type": "aws_instance", + "resource_name": "example-instance-886", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example886", + "search_line": 7976, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "afa8d01888e3dc3a767e2f2cd51fc602f3277b6f61f302946321d29f388f3eda", + "line": 1073, + "resource_type": "aws_instance", + "resource_name": "example-instance-119", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example119", + "search_line": 1073, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5e9c625023bf14eef4c49bc5a6db1171bf996735d774cf15a2fe63704a75c06e", + "line": 1343, + "resource_type": "aws_instance", + "resource_name": "example-instance-149", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example149", + "search_line": 1343, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5cc3505a92e895e95e922ce78e970164e8bfc96250f46c2b2b1dcd808fd2adca", + "line": 4151, + "resource_type": "aws_instance", + "resource_name": "example-instance-461", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example461", + "search_line": 4151, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "91e23db9ed67a3913fb3b9e5add89fecec5d7d752890fd69bb31dabd977aef2c", + "line": 4196, + "resource_type": "aws_instance", + "resource_name": "example-instance-466", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example466", + "search_line": 4196, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "aa0aa5bcf09bd94091e06e324e625028852ceb48dbbc989d9e0f6ddc88378645", + "line": 4673, + "resource_type": "aws_instance", + "resource_name": "example-instance-519", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example519", + "search_line": 4673, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2c824895e722a9d0d62a113781bc67437222c0ae988a2d0cf0e77c9212d02b59", + "line": 884, + "resource_type": "aws_instance", + "resource_name": "example-instance-98", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example98", + "search_line": 884, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1d5897bf347e5a68845345eebca4b4afb6a31a41e715622b234a584e510d5c06", + "line": 2693, + "resource_type": "aws_instance", + "resource_name": "example-instance-299", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example299", + "search_line": 2693, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d7f1d7bd306026772c88bacafec59c66d2d1f5579f78f37fa81f3749e1f41702", + "line": 929, + "resource_type": "aws_instance", + "resource_name": "example-instance-103", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example103", + "search_line": 929, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7c191f42d0d51c6b65d592c3b81d93d68515f84d0823ddeb236fd373203cccab", + "line": 6878, + "resource_type": "aws_instance", + "resource_name": "example-instance-764", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example764", + "search_line": 6878, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f70918f4df6d2d73597d0a872087235462c3de6a302cab39cd67b8136f6ae7be", + "line": 3647, + "resource_type": "aws_instance", + "resource_name": "example-instance-405", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example405", + "search_line": 3647, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bb6903570a6937bff4382aa6c8f0d3f005c6da400aaec92465421328952d8ef0", + "line": 3899, + "resource_type": "aws_instance", + "resource_name": "example-instance-433", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example433", + "search_line": 3899, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3510f0e6f53169eab9ab186bafd436c12475d785c444857b315686952c83331b", + "line": 1442, + "resource_type": "aws_instance", + "resource_name": "example-instance-160", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example160", + "search_line": 1442, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "411cff15f48358384194b14db9a52b0910341bac1f12f303650fedbe545fc2a8", + "line": 1559, + "resource_type": "aws_instance", + "resource_name": "example-instance-173", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example173", + "search_line": 1559, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3081284d4281af86a5a9602b42fef55ca5dfdef290f7948a602d92497920b073", + "line": 5708, + "resource_type": "aws_instance", + "resource_name": "example-instance-634", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example634", + "search_line": 5708, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cdebc4d3063f792dcc7d9055d8e816144b532563125d35f46cd1e6653d4f6efc", + "line": 6356, + "resource_type": "aws_instance", + "resource_name": "example-instance-706", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example706", + "search_line": 6356, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "109ca473f4bfebb64fd59ddbc0c9f94acdd9382ac27b3fb6a8b6d0193cd33608", + "line": 7850, + "resource_type": "aws_instance", + "resource_name": "example-instance-872", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example872", + "search_line": 7850, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "acbdff5e711ba40546e7c77b3c1639057897df8f9365c0b8f0a01d665f53b6e3", + "line": 8921, + "resource_type": "aws_instance", + "resource_name": "example-instance-991", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example991", + "search_line": 8921, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a8a6f7d176892599ad37c978509339d6880391ad69a6666a3e6f4abae0000597", + "line": 4448, + "resource_type": "aws_instance", + "resource_name": "example-instance-494", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example494", + "search_line": 4448, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b6d41d6bcff8f83d740f785d6f80958162c0bcbdda43692173eb7bbc28687d23", + "line": 5438, + "resource_type": "aws_instance", + "resource_name": "example-instance-604", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example604", + "search_line": 5438, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7070c087e3a0cb12a3158f93f4dfb658605664685b7aee61dcdc73ea4da7052b", + "line": 7265, + "resource_type": "aws_instance", + "resource_name": "example-instance-807", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example807", + "search_line": 7265, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fe1efdfc2517f2d2a0c35773ccd724853f7bb7aba2e732f184efb6ee8bf7ee5b", + "line": 7886, + "resource_type": "aws_instance", + "resource_name": "example-instance-876", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example876", + "search_line": 7886, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b6513219feb2ebe454eb2aa79795124fdec70831abbb0d06c9506d3890d39bf7", + "line": 29, + "resource_type": "aws_instance", + "resource_name": "example-instance-3", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example3", + "search_line": 29, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dcb359edbf4e8b2d64097678efc45bdbf7f81948ea00c608f7dcbc666e14d348", + "line": 4178, + "resource_type": "aws_instance", + "resource_name": "example-instance-464", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example464", + "search_line": 4178, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "498ff53bb12d9b75bc13b10ba555945b04ebd34cd417b2cd3d87ce18715b2b8e", + "line": 8867, + "resource_type": "aws_instance", + "resource_name": "example-instance-985", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example985", + "search_line": 8867, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4916e53d52d804486e0f4453bae895b68074146d9b5f2462591c5095695a0217", + "line": 6068, + "resource_type": "aws_instance", + "resource_name": "example-instance-674", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example674", + "search_line": 6068, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "eaa30b4c42de0f6696bfdc425b4a03cfe3e7c2f382ddd44b308c5d999e6cde72", + "line": 1946, + "resource_type": "aws_instance", + "resource_name": "example-instance-216", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example216", + "search_line": 1946, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c2276127efea89d01e376f7743f33277bc1dfc501b0df3321888bf8b4956f15e", + "line": 6059, + "resource_type": "aws_instance", + "resource_name": "example-instance-673", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example673", + "search_line": 6059, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "40271740165a636d49b44a7e21cbf415704344cdcf399fade9f9f96e30b2731a", + "line": 7112, + "resource_type": "aws_instance", + "resource_name": "example-instance-790", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example790", + "search_line": 7112, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "48036e2e29f7b6f1288fe8a0b9302d7aecaccfd0d36af47d09797db6358df14f", + "line": 8813, + "resource_type": "aws_instance", + "resource_name": "example-instance-979", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example979", + "search_line": 8813, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3a806f2683fd79c8640e0043aa66d7c9fe5e661416fcec236fa6a5066e0ab43b", + "line": 5429, + "resource_type": "aws_instance", + "resource_name": "example-instance-603", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example603", + "search_line": 5429, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "17de5d565d91ae62491bdf2dcd105be66350917cb12f62cc2508420e6191bc8f", + "line": 8516, + "resource_type": "aws_instance", + "resource_name": "example-instance-946", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example946", + "search_line": 8516, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dfa8b9f36e36e4507d5463f2374dda05fe3bf4175c6a0caa60e4848c5f9b3cc0", + "line": 92, + "resource_type": "aws_instance", + "resource_name": "example-instance-10", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example10", + "search_line": 92, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e9d5d5614cf26cfa86d4a14e8dfde149d73d99e3c3e72bac56555603b681068a", + "line": 4421, + "resource_type": "aws_instance", + "resource_name": "example-instance-491", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example491", + "search_line": 4421, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9d754699ad57abd386ea6c153d22be601cd186c33dcb5c7ec0ad058e10b1fee7", + "line": 209, + "resource_type": "aws_instance", + "resource_name": "example-instance-23", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example23", + "search_line": 209, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "105520b5613e491da6a21cd591e1eb35b85eeadbc0fc1d3b8dbf027975da73d1", + "line": 6572, + "resource_type": "aws_instance", + "resource_name": "example-instance-730", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example730", + "search_line": 6572, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "519a0fea110de8fcdc72cf0e0a17fbb6641e11e776a7fdbc21e35189a68474fe", + "line": 8102, + "resource_type": "aws_instance", + "resource_name": "example-instance-900", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example900", + "search_line": 8102, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "679f64856f02cfb459afcfc0d5bd7be373c85a0d53e83ec58cb75459a12b9f9a", + "line": 5555, + "resource_type": "aws_instance", + "resource_name": "example-instance-617", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example617", + "search_line": 5555, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "090eca190da4871a1032c9d9c457b4d7794bbd7eccf2428e58836b4cae09136d", + "line": 6671, + "resource_type": "aws_instance", + "resource_name": "example-instance-741", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example741", + "search_line": 6671, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "35ac49c0f231deb224dd702c2f7abe546169b961eda565f05cb877d088bd2dde", + "line": 7175, + "resource_type": "aws_instance", + "resource_name": "example-instance-797", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example797", + "search_line": 7175, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "446c66f12660cce89f4cb2e89f8cac44a1c03c6fc14071f8e7748e9fc06279fc", + "line": 3755, + "resource_type": "aws_instance", + "resource_name": "example-instance-417", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example417", + "search_line": 3755, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "041057900b1776127061ca4ff0a58d1b0c6ca7d2924e47dcbda22e9dfaace218", + "line": 7535, + "resource_type": "aws_instance", + "resource_name": "example-instance-837", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example837", + "search_line": 7535, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "90ad07f512551ec111ba7f2d9536c2930f0c4f4ecf6e5cbfab9ed001124ea4e5", + "line": 8003, + "resource_type": "aws_instance", + "resource_name": "example-instance-889", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example889", + "search_line": 8003, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2d3aeaf5d69caac92125f35040350fb268b81d0722f8d17b5ae4aedd2f3cd0d2", + "line": 74, + "resource_type": "aws_instance", + "resource_name": "example-instance-8", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example8", + "search_line": 74, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "70c147a7159d4543ef4f72c7b9946a5dbb660945342af08a94d270ba1b459c05", + "line": 1145, + "resource_type": "aws_instance", + "resource_name": "example-instance-127", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example127", + "search_line": 1145, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2600644efa0f8d0f9050d7e73d446485ac2a540aa38410dd31754e6ab611544f", + "line": 3521, + "resource_type": "aws_instance", + "resource_name": "example-instance-391", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example391", + "search_line": 3521, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a6af8e979dcec8d14a49c8221d5eeca0c91f9b246e4ccec8baa9099f9ccae6d9", + "line": 1298, + "resource_type": "aws_instance", + "resource_name": "example-instance-144", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example144", + "search_line": 1298, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8fe2c1a84417f57fc92182bfbb69359b5f426cdfd96e497f81392ee9564be68c", + "line": 3053, + "resource_type": "aws_instance", + "resource_name": "example-instance-339", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example339", + "search_line": 3053, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4901023e3d496bec106f3367bab28ebec4e55d45ddec2fb399718c27fd4d08d5", + "line": 7796, + "resource_type": "aws_instance", + "resource_name": "example-instance-866", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example866", + "search_line": 7796, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3f0d9de7da4442d8a54cd312a2e4eb911e4034dba707e0333f0ad8d47669c476", + "line": 2531, + "resource_type": "aws_instance", + "resource_name": "example-instance-281", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example281", + "search_line": 2531, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fa7908faea466095487b1d6af078c2a80098d6c997bb81806597b521523971ab", + "line": 6527, + "resource_type": "aws_instance", + "resource_name": "example-instance-725", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example725", + "search_line": 6527, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "827a9f07ddd804bb4559c16202734b5d4e6dd1ab736899a96769ee99c2a7a227", + "line": 3197, + "resource_type": "aws_instance", + "resource_name": "example-instance-355", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example355", + "search_line": 3197, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e09d27e71d63fc37e90d74722ea7e3aea6c8ae4c058f00b129ef979e7eb4f161", + "line": 4565, + "resource_type": "aws_instance", + "resource_name": "example-instance-507", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example507", + "search_line": 4565, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ce442022ed621548c7dd878d37f331236f5ece322c1d532e3b703f5ffbfa6077", + "line": 8957, + "resource_type": "aws_instance", + "resource_name": "example-instance-995", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example995", + "search_line": 8957, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "082bd57f1b76d8e0c2c3a49d10f0fefc653e1328817fb65327d2f3c366c6d958", + "line": 3701, + "resource_type": "aws_instance", + "resource_name": "example-instance-411", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example411", + "search_line": 3701, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a10c68b927aec958998fe43ee54b88e18e612ee4a3d762e8f42385e8ed23d518", + "line": 5600, + "resource_type": "aws_instance", + "resource_name": "example-instance-622", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example622", + "search_line": 5600, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6e1f9cb085ae8a383be3b79eb6ca69341420eb3db03a68289d6da3d2678b1cd2", + "line": 3548, + "resource_type": "aws_instance", + "resource_name": "example-instance-394", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example394", + "search_line": 3548, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a0bbb52b54bb52378cefc99d83f45a6813b65379aee3f2dc97a494f243ef18a3", + "line": 8066, + "resource_type": "aws_instance", + "resource_name": "example-instance-896", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example896", + "search_line": 8066, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cf44db47d9a6f11fd6f440fa91a1b73f1fc0240b00c4039c21110735f6a8af25", + "line": 3296, + "resource_type": "aws_instance", + "resource_name": "example-instance-366", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example366", + "search_line": 3296, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9deddc016d5265b28311b5ba9f1b1ec8751c97a8f25fa2c927baa3e9bf5d9f25", + "line": 1649, + "resource_type": "aws_instance", + "resource_name": "example-instance-183", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example183", + "search_line": 1649, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "be61d95e79fb114f311462719385009fe3e0b13323ffb34e9a0c3ddab755439a", + "line": 3278, + "resource_type": "aws_instance", + "resource_name": "example-instance-364", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example364", + "search_line": 3278, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7f39886c3e2335a4fb098c98aeb4359c383141ae9403b9c1c9c55314fdc99ab0", + "line": 4961, + "resource_type": "aws_instance", + "resource_name": "example-instance-551", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example551", + "search_line": 4961, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6fcb8a1d865d5df28ffb91efd48938228630669bf9de9a4751e23b8d22388c26", + "line": 551, + "resource_type": "aws_instance", + "resource_name": "example-instance-61", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example61", + "search_line": 551, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0e538078a7fcd40b4786eb3cde3d77dddae54a4ede6633c46f08e787a5846048", + "line": 5681, + "resource_type": "aws_instance", + "resource_name": "example-instance-631", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example631", + "search_line": 5681, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7c005916263e7986fd5e61e81a770073a45d4987d02f1a059e5cc28c4caf98ae", + "line": 5267, + "resource_type": "aws_instance", + "resource_name": "example-instance-585", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example585", + "search_line": 5267, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c70b16ba0a2dee04a1e6c641d4d6acd55a15afa3f10b53e6bc7aefa969eada8f", + "line": 3449, + "resource_type": "aws_instance", + "resource_name": "example-instance-383", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example383", + "search_line": 3449, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e461d0491c298c4c0537429957f1d4cb7e2a1abe0b6c992de7a2b2ce251132dc", + "line": 5006, + "resource_type": "aws_instance", + "resource_name": "example-instance-556", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example556", + "search_line": 5006, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8d9088ce588b99120e22e674eda4750a9ba78882992756959bc06c94c9793d05", + "line": 5735, + "resource_type": "aws_instance", + "resource_name": "example-instance-637", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example637", + "search_line": 5735, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c38e29800089c99575c9eec07f0cd49c746d9e698974c3bca24d224ae8cd058a", + "line": 6500, + "resource_type": "aws_instance", + "resource_name": "example-instance-722", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example722", + "search_line": 6500, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2301a561f3f568a1ccfeabb3e5f6cda6cf4f492a80d8e21d9fcd34b36f0dc5b7", + "line": 5816, + "resource_type": "aws_instance", + "resource_name": "example-instance-646", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example646", + "search_line": 5816, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c1cc0469f32a568c8c07970c0a6eda16a1f48a073f70ccdfdb9318a56604e0ce", + "line": 821, + "resource_type": "aws_instance", + "resource_name": "example-instance-91", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example91", + "search_line": 821, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "eedf31bcb10de812ae0efbd47aaf5c0ce3f3229c06d06f861ff63ac7ec5ce029", + "line": 7706, + "resource_type": "aws_instance", + "resource_name": "example-instance-856", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example856", + "search_line": 7706, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "de91b9462bfa8d835ccc666cae896b27cb369189f9bd015c27525f62f71bf45a", + "line": 4790, + "resource_type": "aws_instance", + "resource_name": "example-instance-532", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example532", + "search_line": 4790, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "037413facd9772c3f06f141134133b7dc0be369a4c0655743b2c1008ae8eecde", + "line": 8705, + "resource_type": "aws_instance", + "resource_name": "example-instance-967", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example967", + "search_line": 8705, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a2cbd0365f2114e42acb8c3bfdce9007aabda3fcc6e518048e762996adeeebb9", + "line": 8552, + "resource_type": "aws_instance", + "resource_name": "example-instance-950", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example950", + "search_line": 8552, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3a9abdf76516110e167f917d94d41d6c14315d27f5ab977de19c07c80b3912b9", + "line": 6644, + "resource_type": "aws_instance", + "resource_name": "example-instance-738", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example738", + "search_line": 6644, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "79d67c5dfd3148a70c9126d4c285ce2176c96f5c1ead40c3ac236a727ecfd9ef", + "line": 362, + "resource_type": "aws_instance", + "resource_name": "example-instance-40", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example40", + "search_line": 362, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "012d0308221d002bc130d3e6f9130c9a96255cbe5240c7e8ab0d98c674468e58", + "line": 1406, + "resource_type": "aws_instance", + "resource_name": "example-instance-156", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example156", + "search_line": 1406, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b571f669a7473b663d5e20cc8a5a131ff9c9effb60cbfc65c72669951041c6f9", + "line": 2549, + "resource_type": "aws_instance", + "resource_name": "example-instance-283", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example283", + "search_line": 2549, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bdf9684a4f1469262b7fe6f540ef26a3d7dda07ff342f10a73b3105120bea430", + "line": 6914, + "resource_type": "aws_instance", + "resource_name": "example-instance-768", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example768", + "search_line": 6914, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ccdb3df8e921dbd14a5d82aa67cb2b326c518efa6614a92d4c11acd27c75f7d1", + "line": 1046, + "resource_type": "aws_instance", + "resource_name": "example-instance-116", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example116", + "search_line": 1046, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "48fdf04260e0ddb63d6dd0515943cb59cd8b8c69ab69cb4388736ddc41db3ee8", + "line": 6365, + "resource_type": "aws_instance", + "resource_name": "example-instance-707", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.example707", + "search_line": 6365, + "search_value": "", + "expected_value": "'associate_public_ip_address' should be defined and not null", + "actual_value": "'associate_public_ip_address' is undefined or null" + } + ] + }, + { + "query_name": "Passwords And Secrets - Generic Access Key", + "query_id": "7f370dd5-eea3-4e5f-8354-3cb2506f9f13", + "query_url": "https://docs.kics.io/latest/secrets/", + "severity": "HIGH", + "platform": "Common", + "cloud_provider": "COMMON", + "category": "Secret Management", + "experimental": false, + "description": "Query to find passwords and secrets in infrastructure code.", + "description_id": "d69d8a89", + "files": [ + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c04971191b30804e2e40c1c795f2f666d4adc609ec71033a8026036f329ad8cd", + "line": 3, + "issue_type": "RedundantAttribute", + "search_key": "", + "search_line": 0, + "search_value": "", + "expected_value": "Hardcoded secret key should not appear in source", + "actual_value": "Hardcoded secret key appears in source" + } + ] + }, + { + "query_name": "Passwords And Secrets - Generic Secret", + "query_id": "3e2d3b2f-c22a-4df1-9cc6-a7a0aebb0c99", + "query_url": "https://docs.kics.io/latest/secrets/", + "severity": "HIGH", + "platform": "Common", + "cloud_provider": "COMMON", + "category": "Secret Management", + "experimental": false, + "description": "Query to find passwords and secrets in infrastructure code.", + "description_id": "d69d8a89", + "files": [ + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "579ce70035f41c1cde0c2a208299c988d17874444b5a9e284995967ff87dd313", + "line": 4, + "issue_type": "RedundantAttribute", + "search_key": "", + "search_line": 0, + "search_value": "", + "expected_value": "Hardcoded secret key should not appear in source", + "actual_value": "Hardcoded secret key appears in source" + } + ] + }, + { + "query_name": "Instance With No VPC", + "query_id": "a31a5a29-718a-4ff4-8001-a69e5e4d029e", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/instance", + "severity": "MEDIUM", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Insecure Configurations", + "experimental": false, + "description": "EC2 Instances should be configured under a VPC network. AWS VPCs provide the controls to facilitate a formal process for approving and testing all network connections and changes to the firewall and router configurations.", + "description_id": "225a9f30", + "files": [ + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "593fcf7218b1fd90ea64ff0864412805620f26df01cd22375794b0aaba1a5a63", + "line": 6590, + "resource_type": "aws_instance", + "resource_name": "example-instance-732", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example732]", + "search_line": 6590, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c679445e4e9c88f7a3213d43430da7334e96d993db0b7e8006797d51ed515acb", + "line": 7481, + "resource_type": "aws_instance", + "resource_name": "example-instance-831", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example831]", + "search_line": 7481, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "689f84ba01d4595b44bd635ce776085815065609388646dafa84b8adaef15d0e", + "line": 7895, + "resource_type": "aws_instance", + "resource_name": "example-instance-877", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example877]", + "search_line": 7895, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0bde456d25311462165d6ecf6d2b00325336b3b423ee06dbbf501eb61e4321a0", + "line": 6707, + "resource_type": "aws_instance", + "resource_name": "example-instance-745", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example745]", + "search_line": 6707, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4b24c1f38c9246d8ca0cd36c82468115663777f685cc6c5f5426f430065cbda2", + "line": 8867, + "resource_type": "aws_instance", + "resource_name": "example-instance-985", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example985]", + "search_line": 8867, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "01e736602829009f32f68a95edeca3e7e86c647dcab02ee845c442b0dbc7cb6a", + "line": 3026, + "resource_type": "aws_instance", + "resource_name": "example-instance-336", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example336]", + "search_line": 3026, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9bbd45d2d08ced78ad1d6ace929ee271a642b389ee19657a4c650d4748c8c199", + "line": 4592, + "resource_type": "aws_instance", + "resource_name": "example-instance-510", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example510]", + "search_line": 4592, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e50921acf8f5fdf7a3d343a152503948927c73b666aaac47e737e5ee4aca01d1", + "line": 6968, + "resource_type": "aws_instance", + "resource_name": "example-instance-774", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example774]", + "search_line": 6968, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a9079a09d3af24c338b40f73e8f0dd4744db64a28a52c3dd20b2e60491f555b4", + "line": 1424, + "resource_type": "aws_instance", + "resource_name": "example-instance-158", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example158]", + "search_line": 1424, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7bc55b5beef90fd03573fc87c383cd9e8a8f7bdb398f7bf40ca5b4d9922e3363", + "line": 5555, + "resource_type": "aws_instance", + "resource_name": "example-instance-617", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example617]", + "search_line": 5555, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a0bacab4bbfc1a6cc365e1c27e93f2fd5853466d8e2bb6d9d5c43b17a84c24bd", + "line": 3836, + "resource_type": "aws_instance", + "resource_name": "example-instance-426", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example426]", + "search_line": 3836, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a513c4baad308c625be53eb22e65cec314941836ba8861fe421a14433429bbe2", + "line": 3305, + "resource_type": "aws_instance", + "resource_name": "example-instance-367", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example367]", + "search_line": 3305, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0a4ac04b1167bc18333f2e5814a0bbbe4a5e7d6098cad328c1f6cd462c93bf90", + "line": 7868, + "resource_type": "aws_instance", + "resource_name": "example-instance-874", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example874]", + "search_line": 7868, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8bdb92996fd0299ae4a11eb12973243e14a5ebaefe3b8333bd898f35028907e3", + "line": 7247, + "resource_type": "aws_instance", + "resource_name": "example-instance-805", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example805]", + "search_line": 7247, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5156ccc2aaa4ee6ef0d02f9013e873214ed3a0bd67da36c95e738288cdd4648e", + "line": 8390, + "resource_type": "aws_instance", + "resource_name": "example-instance-932", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example932]", + "search_line": 8390, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ffc13dc08fda0bd85548f4965fafda67996b0c4378a0f4fe8dc54831e477878b", + "line": 2405, + "resource_type": "aws_instance", + "resource_name": "example-instance-267", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example267]", + "search_line": 2405, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "af60d249356940cb044df2ee72f3df33b5211151ac1f0bc5e5eb7317dfe184b1", + "line": 6491, + "resource_type": "aws_instance", + "resource_name": "example-instance-721", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example721]", + "search_line": 6491, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a6788aa89b38c06bceb337a87dbe39552cea2709621809fd1d131a33ac2cc0ba", + "line": 6149, + "resource_type": "aws_instance", + "resource_name": "example-instance-683", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example683]", + "search_line": 6149, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2d2c884d3e63c6c58933985dd9bbf3cdf38490043386bf63c1c5f6024ea8c6ad", + "line": 4088, + "resource_type": "aws_instance", + "resource_name": "example-instance-454", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example454]", + "search_line": 4088, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8636b13c1eb7bd878124b8784faf8bf5872448fb0e8f36c0fcf3e9186a226ecb", + "line": 4322, + "resource_type": "aws_instance", + "resource_name": "example-instance-480", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example480]", + "search_line": 4322, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6c6dc1598f31ef562c0dd23aa83cc6643b47c73664646eecc1a72d12d8549581", + "line": 6563, + "resource_type": "aws_instance", + "resource_name": "example-instance-729", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example729]", + "search_line": 6563, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "95ebc05f6f5b86338a8913ffd55a3dc8b19baa057d4b66b0ddcf7a5c8c3734d8", + "line": 8246, + "resource_type": "aws_instance", + "resource_name": "example-instance-916", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example916]", + "search_line": 8246, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d36969be122183bcc37b3ccf71de39a4f8a4854a85e8f998a714c3dc6b06ea8b", + "line": 6572, + "resource_type": "aws_instance", + "resource_name": "example-instance-730", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example730]", + "search_line": 6572, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d4655d083ad817034e7ac636c76065bcdfc6f69e428a6ed8b9a5b3ec5257088b", + "line": 8021, + "resource_type": "aws_instance", + "resource_name": "example-instance-891", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example891]", + "search_line": 8021, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e7c62bb972a269ac93858c0d4c2fe71808675772908b3ef10e08cacf79cf8642", + "line": 8183, + "resource_type": "aws_instance", + "resource_name": "example-instance-909", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example909]", + "search_line": 8183, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4c8c05ca9c1c7289009d5421590bdb216ce49eb70e9dc84e1ad1d5f3c2ba75c4", + "line": 2576, + "resource_type": "aws_instance", + "resource_name": "example-instance-286", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example286]", + "search_line": 2576, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "19200b8cec91c74990137d9c1eabf7f2ca3f84ca4aa427ccee4b89823b010f50", + "line": 3089, + "resource_type": "aws_instance", + "resource_name": "example-instance-343", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example343]", + "search_line": 3089, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7f7993f1e8f087415ceb1b608b94ed7b8bc9beaef854998e24824a39e815f227", + "line": 731, + "resource_type": "aws_instance", + "resource_name": "example-instance-81", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example81]", + "search_line": 731, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e911c9e3e830ea2304af67de943052d2fe9ea07d8ca81e97c04a4728f262c876", + "line": 7814, + "resource_type": "aws_instance", + "resource_name": "example-instance-868", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example868]", + "search_line": 7814, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c018aaca80a1a79f64157b69104529217c7e86ba028d54c520f2c78172e16d27", + "line": 8984, + "resource_type": "aws_instance", + "resource_name": "example-instance-998", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example998]", + "search_line": 8984, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "803489702f341e654388896d009dc1fa3b0b1e788be8871ed76ab33ec09513dc", + "line": 2693, + "resource_type": "aws_instance", + "resource_name": "example-instance-299", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example299]", + "search_line": 2693, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b078151ad485e595993692b38be14172dabfd5ac3b7302c0b6522c12f81e5dad", + "line": 6194, + "resource_type": "aws_instance", + "resource_name": "example-instance-688", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example688]", + "search_line": 6194, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ca9ceecb760aba5a6268ffceafea6c4f35a09d781c29153c60700863d468a401", + "line": 6770, + "resource_type": "aws_instance", + "resource_name": "example-instance-752", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example752]", + "search_line": 6770, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "01a9d393254d864349eb3aea056606a7d5a683f7ff62e4671540af670f8d5b33", + "line": 101, + "resource_type": "aws_instance", + "resource_name": "example-instance-11", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example11]", + "search_line": 101, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fa5696c40c5a4fab86ae56bb973a277a23b4cb9fdb4b09e2a14c215552d2fcd1", + "line": 3530, + "resource_type": "aws_instance", + "resource_name": "example-instance-392", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example392]", + "search_line": 3530, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dc066878512d2c50831cbb40dfdb68869f0b1f408c90896b8f75b36ca6447c55", + "line": 8957, + "resource_type": "aws_instance", + "resource_name": "example-instance-995", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example995]", + "search_line": 8957, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a5fcad4311cef35ee4a98da13218af1e3a0edfbec6249d76ee30f4f65557f7ed", + "line": 1325, + "resource_type": "aws_instance", + "resource_name": "example-instance-147", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example147]", + "search_line": 1325, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ca05e83580eb588116dddb140ba7fda79e8a8a4408e789d7e648303e2d62fd32", + "line": 3899, + "resource_type": "aws_instance", + "resource_name": "example-instance-433", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example433]", + "search_line": 3899, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5fd7e3bec65ce49c754c067508aaf99ac57f8edc9162939eb3804dbed95b5814", + "line": 4925, + "resource_type": "aws_instance", + "resource_name": "example-instance-547", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example547]", + "search_line": 4925, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1417a6eb1378b7d7270177f9c97cc8a05b05e9fce3cbba8b8d0ecd16552d4ed6", + "line": 830, + "resource_type": "aws_instance", + "resource_name": "example-instance-92", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example92]", + "search_line": 830, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "085e77bc19c281fa7299af4d17d8ae99e4f5d658d9d127d707193fae634b05d8", + "line": 1847, + "resource_type": "aws_instance", + "resource_name": "example-instance-205", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example205]", + "search_line": 1847, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6590ee0e10f6fc750776647bccdd186158c2c495ef95eb0f6a3e023b984c6248", + "line": 5879, + "resource_type": "aws_instance", + "resource_name": "example-instance-653", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example653]", + "search_line": 5879, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f21c0a2f58daab563710cc118b9936f4a517ff73aff0e752f975b85c3fd80789", + "line": 3215, + "resource_type": "aws_instance", + "resource_name": "example-instance-357", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example357]", + "search_line": 3215, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b4367eebadb0bd59579f68adad03c3f187906217dad3cbf38430087128af8d75", + "line": 3557, + "resource_type": "aws_instance", + "resource_name": "example-instance-395", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example395]", + "search_line": 3557, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bafc686b135d68e8557da2a9afcc8b25bbf7ad764d111e3cf3a301da41830e5f", + "line": 7202, + "resource_type": "aws_instance", + "resource_name": "example-instance-800", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example800]", + "search_line": 7202, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f158ff0b1edef1c7c5ddeb89df5ceb866a32a384f701a40e5e2f20e87d14a941", + "line": 8192, + "resource_type": "aws_instance", + "resource_name": "example-instance-910", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example910]", + "search_line": 8192, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b7b91221fb3a65a72ac18b5895bf98fd090d12ef30bec07a132d90308193be53", + "line": 7499, + "resource_type": "aws_instance", + "resource_name": "example-instance-833", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example833]", + "search_line": 7499, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4b12912a535925bfe4aee5d3b94a1b65461108bc5ca0f6f79b1031d3c8e4137b", + "line": 8219, + "resource_type": "aws_instance", + "resource_name": "example-instance-913", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example913]", + "search_line": 8219, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "316e48f03d9b16e5928e5b51930a8eb6eb3c883f2afa4dea62b5edc0f603f927", + "line": 1811, + "resource_type": "aws_instance", + "resource_name": "example-instance-201", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example201]", + "search_line": 1811, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9b28ac38245fce091dc7cc125f00f5f47f4f04f771439bbf67e024fd40d5516d", + "line": 3071, + "resource_type": "aws_instance", + "resource_name": "example-instance-341", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example341]", + "search_line": 3071, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c6f875c2c168be8f3456d8258f4ada5ba4214bb9b44c13d39c80d38bf309fdb9", + "line": 4565, + "resource_type": "aws_instance", + "resource_name": "example-instance-507", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example507]", + "search_line": 4565, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9ff94642a5e21de05bb73464568bb02c1ca455e3b101d4c6a0ffe3727f0333f2", + "line": 5141, + "resource_type": "aws_instance", + "resource_name": "example-instance-571", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example571]", + "search_line": 5141, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e667fc0118a3e70c6f611496d1e7556a93991393716f3d1c2df7f31c2c57558b", + "line": 4214, + "resource_type": "aws_instance", + "resource_name": "example-instance-468", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example468]", + "search_line": 4214, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "832bfb2b9ab2a519e245c72725e6f32640f9d82e63f9a37a88b2b578b9a40d55", + "line": 353, + "resource_type": "aws_instance", + "resource_name": "example-instance-39", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example39]", + "search_line": 353, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "209d2709b05705944b3f3d6004f561c760273ed82d36b3df385786445d0472f6", + "line": 2162, + "resource_type": "aws_instance", + "resource_name": "example-instance-240", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example240]", + "search_line": 2162, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f7c210119a3640b4a6e9eea716f57a763b66878cb0ccfbfb8a937f9013626465", + "line": 2981, + "resource_type": "aws_instance", + "resource_name": "example-instance-331", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example331]", + "search_line": 2981, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "630b4da62495bf1f461d5413db9ae0234ae5f4d5a674038e9145f57dca4258e4", + "line": 2567, + "resource_type": "aws_instance", + "resource_name": "example-instance-285", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example285]", + "search_line": 2567, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9aec3fc4406b589b0b221fa4ddad835bac9fa0c6f835cd6d58122db17f84db10", + "line": 5150, + "resource_type": "aws_instance", + "resource_name": "example-instance-572", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example572]", + "search_line": 5150, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3abf5a741144ea1b618850ea92351b23889947ea59a94b2d2062f6ceca623ab7", + "line": 7625, + "resource_type": "aws_instance", + "resource_name": "example-instance-847", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example847]", + "search_line": 7625, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6c9610413ecdb663c67bccf658a8b5e7525416f457a29f3fa2045c142d006fdc", + "line": 8066, + "resource_type": "aws_instance", + "resource_name": "example-instance-896", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example896]", + "search_line": 8066, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6b2e068a2e1ff84a85eb49abefdcb35b810ba2392df2f6c8f9547a60ecc38d54", + "line": 4979, + "resource_type": "aws_instance", + "resource_name": "example-instance-553", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example553]", + "search_line": 4979, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1b60151240d86bcbc709fd0716e289b6c64d288c959569151cc3727c48da7c87", + "line": 2423, + "resource_type": "aws_instance", + "resource_name": "example-instance-269", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example269]", + "search_line": 2423, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8f080ddd2e3933c8e8bc0b856065694f31703a30d9cb0c3713b164fd2f5277e3", + "line": 4736, + "resource_type": "aws_instance", + "resource_name": "example-instance-526", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example526]", + "search_line": 4736, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f1702e9341f0ba6cfeb9297dde15ffbd2ccc9bdf50d4d1fbf48380253e4a07e5", + "line": 1757, + "resource_type": "aws_instance", + "resource_name": "example-instance-195", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example195]", + "search_line": 1757, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0ec2e0aa52722e316613485eba4e167a1548ec3bb6e564dc5a35481d80730ca0", + "line": 992, + "resource_type": "aws_instance", + "resource_name": "example-instance-110", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example110]", + "search_line": 992, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8a9e207d6be373de1f3aa19dc68c1fa453a2b12f042dd44a899b1a13e022b435", + "line": 5285, + "resource_type": "aws_instance", + "resource_name": "example-instance-587", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example587]", + "search_line": 5285, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "17b9fe8fc6d5d7f1f295be00fa212c75f5645150a683cad62935f323f1c86202", + "line": 8705, + "resource_type": "aws_instance", + "resource_name": "example-instance-967", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example967]", + "search_line": 8705, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "200f0e387407eff46d78a0e7980ebda74f6eb3c41aeee3932652c171117be21f", + "line": 1595, + "resource_type": "aws_instance", + "resource_name": "example-instance-177", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example177]", + "search_line": 1595, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "34dc6ad1948e95066f4f332606c2e13d79b36c0791c3e6537e4e205b2f12a945", + "line": 1559, + "resource_type": "aws_instance", + "resource_name": "example-instance-173", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example173]", + "search_line": 1559, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dd814315771bd924746124664a5b619b01532c135dad34e17eccc24b60821127", + "line": 2135, + "resource_type": "aws_instance", + "resource_name": "example-instance-237", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example237]", + "search_line": 2135, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4106289720a630ef82ca47dc5f7801b1459b29c0f2408c451e3e441ed0bb0a59", + "line": 6167, + "resource_type": "aws_instance", + "resource_name": "example-instance-685", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example685]", + "search_line": 6167, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "12cd2e2f6883d57de660692e88c7c6f0a8f82a5c1aae5616fdf53b9146494592", + "line": 677, + "resource_type": "aws_instance", + "resource_name": "example-instance-75", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example75]", + "search_line": 677, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "161cf62ab8b48748f0c6134dc2b673cbf60c718d764fa51a4f93de85703be08b", + "line": 2324, + "resource_type": "aws_instance", + "resource_name": "example-instance-258", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example258]", + "search_line": 2324, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "779d2706f8ca9ec4ff647a1d919af61c78d7c07bff5745a1c772635c705e9b62", + "line": 6689, + "resource_type": "aws_instance", + "resource_name": "example-instance-743", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example743]", + "search_line": 6689, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8b851875f9a3b0720cb0a49edd98a0cc89f1dbb42e1baaa6fc9d17a9fd13435e", + "line": 3422, + "resource_type": "aws_instance", + "resource_name": "example-instance-380", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example380]", + "search_line": 3422, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2cc061ec67d265d8b4180518ce62e93f12338f6f42a6920bdfdfc079f1ea596a", + "line": 7679, + "resource_type": "aws_instance", + "resource_name": "example-instance-853", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example853]", + "search_line": 7679, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dfd3122cbfef45e1fadbc6e340e485ecaf49bc08315f0d4d073a85180b50843d", + "line": 4880, + "resource_type": "aws_instance", + "resource_name": "example-instance-542", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example542]", + "search_line": 4880, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c92af6f3aa9ef2d2ec48e6f3f89d89f02df7e4665612d943bc14b77746dfb3bd", + "line": 2828, + "resource_type": "aws_instance", + "resource_name": "example-instance-314", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example314]", + "search_line": 2828, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "302f3d6308d34526026364bffe199162ee68f00a7898829c3df845f0c6985ba0", + "line": 974, + "resource_type": "aws_instance", + "resource_name": "example-instance-108", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example108]", + "search_line": 974, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2adb43840000158d3def9048ea9c0e3f1f298f62cf2d920ec3978062f6056946", + "line": 2117, + "resource_type": "aws_instance", + "resource_name": "example-instance-235", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example235]", + "search_line": 2117, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a7e5def4746165970b2634c90ec90aa61b7a4571d020fd76e7a4a827a28aacfd", + "line": 4385, + "resource_type": "aws_instance", + "resource_name": "example-instance-487", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example487]", + "search_line": 4385, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "09a86aafaabed9d7a96345b6bda1d9dad76bd5d3bffd666470fafa478cd70e3f", + "line": 4889, + "resource_type": "aws_instance", + "resource_name": "example-instance-543", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example543]", + "search_line": 4889, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "80c1a916808339ef700d040dddbcebd39248cfa65de8e8dcdffc463f3010e5be", + "line": 7742, + "resource_type": "aws_instance", + "resource_name": "example-instance-860", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example860]", + "search_line": 7742, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0a5d1e4c2f6d293cdc0e989068c9114a08f0e7d3366479f3a9d88780e7b5020d", + "line": 1253, + "resource_type": "aws_instance", + "resource_name": "example-instance-139", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example139]", + "search_line": 1253, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "41892af43b6c71a49f9cb0c5530c127bce84fb51ea6ccf56675be8815da90a9b", + "line": 4277, + "resource_type": "aws_instance", + "resource_name": "example-instance-475", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example475]", + "search_line": 4277, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "591a586ed47fdeb811c0f29968a0dd0c07c2cc6102e9bad0633f614d53547fb8", + "line": 749, + "resource_type": "aws_instance", + "resource_name": "example-instance-83", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example83]", + "search_line": 749, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "27447d89200b7ec7480179156d713019518e4bba113c94eea1389e65e9fd52fd", + "line": 8876, + "resource_type": "aws_instance", + "resource_name": "example-instance-986", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example986]", + "search_line": 8876, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e141643862eb99244fb913cb40d658cd2f84101f01c3661ea6c1dc1550161db5", + "line": 6176, + "resource_type": "aws_instance", + "resource_name": "example-instance-686", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example686]", + "search_line": 6176, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "59c01847217f16a924a401677eeee4e30d3c9e2c121b4052b935d8408bbc6bca", + "line": 470, + "resource_type": "aws_instance", + "resource_name": "example-instance-52", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example52]", + "search_line": 470, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "399074386d9c67904881bc000e6c5dd835e3d621cb12cb6e271b9662ef3676ad", + "line": 3809, + "resource_type": "aws_instance", + "resource_name": "example-instance-423", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example423]", + "search_line": 3809, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1af325f55f508356b4bd25d2cf4c7d92dfa8a33b824f6709c54142b9e436152a", + "line": 794, + "resource_type": "aws_instance", + "resource_name": "example-instance-88", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example88]", + "search_line": 794, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1a33a09155b44b7bec9bdd790531ddc3587c15b05e7a7d7b8172baa0675a4270", + "line": 4763, + "resource_type": "aws_instance", + "resource_name": "example-instance-529", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example529]", + "search_line": 4763, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b28c0ff4f387ae1f76594601561cda128b448b63c00ad08461be07e4e5cadca9", + "line": 5960, + "resource_type": "aws_instance", + "resource_name": "example-instance-662", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example662]", + "search_line": 5960, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5dd638562589f2b6949ce2707df1c22b51319bf1fdb9c03a08c3e88d89974853", + "line": 7661, + "resource_type": "aws_instance", + "resource_name": "example-instance-851", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example851]", + "search_line": 7661, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c303b917e0db71f0c082c6fb542ce2ccb0a4c71e55ea9ffe2a6e0043b0faae9a", + "line": 5231, + "resource_type": "aws_instance", + "resource_name": "example-instance-581", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example581]", + "search_line": 5231, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9ff4447c93ac33c092cac36f8670fee9d139c5321cbfd32b2e925bdbead217b2", + "line": 7508, + "resource_type": "aws_instance", + "resource_name": "example-instance-834", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example834]", + "search_line": 7508, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f29392edc000e255d56b72f15718bb7cfd0ceeb39bbd6358f4814705b93f5fe0", + "line": 2864, + "resource_type": "aws_instance", + "resource_name": "example-instance-318", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example318]", + "search_line": 2864, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "92e9c766d4d12395e98d86bf6b8ec3795ccab71a6f813dc322dbe1b163a2a165", + "line": 3080, + "resource_type": "aws_instance", + "resource_name": "example-instance-342", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example342]", + "search_line": 3080, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "276060be32d6e28473d659651e25abc44b0f74a870b7dcd14c015787c9499c92", + "line": 5771, + "resource_type": "aws_instance", + "resource_name": "example-instance-641", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example641]", + "search_line": 5771, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1b9503d6e9464c8daff663d85980657265b6ec281faa3c9e808aec73038f92db", + "line": 8102, + "resource_type": "aws_instance", + "resource_name": "example-instance-900", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example900]", + "search_line": 8102, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7b0f5d18362da520f631c25edfaffbf1fe18685f138eab21e9ecffcee177b093", + "line": 5618, + "resource_type": "aws_instance", + "resource_name": "example-instance-624", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example624]", + "search_line": 5618, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dbf31c6fac0b1fc4fd41899eb751d122a0ad4ca1ab892dcd28ea5996e2a2d1ef", + "line": 1379, + "resource_type": "aws_instance", + "resource_name": "example-instance-153", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example153]", + "search_line": 1379, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fb253bd82cb129318bf9ca6929b600ed5e0ff685e3975dc957a3c4b7c33a8735", + "line": 542, + "resource_type": "aws_instance", + "resource_name": "example-instance-60", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example60]", + "search_line": 542, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8d7961d21cffd470a475cf5e7be6e761f5908fdd5c1a2d6a1ba5efe2c7db1724", + "line": 7418, + "resource_type": "aws_instance", + "resource_name": "example-instance-824", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example824]", + "search_line": 7418, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c3da071f41feac36dffa4f0e61a4f7a3e4f82a6a6738977bab6f2e1b08267199", + "line": 7589, + "resource_type": "aws_instance", + "resource_name": "example-instance-843", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example843]", + "search_line": 7589, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b634eaac3ff3750900d07eafa1360a3726984d69e1ae2939ca3c9321ddab8e1b", + "line": 8147, + "resource_type": "aws_instance", + "resource_name": "example-instance-905", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example905]", + "search_line": 8147, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c0f54fed10698ab1cb3432c4befce5f55c23fe587b374b48d528b2ca59362f92", + "line": 5132, + "resource_type": "aws_instance", + "resource_name": "example-instance-570", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example570]", + "search_line": 5132, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a3179b909ccfeb9e76769bcf7d0a0ebe50bd233f9124647306c345ec7232ab3a", + "line": 6806, + "resource_type": "aws_instance", + "resource_name": "example-instance-756", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example756]", + "search_line": 6806, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0982131e8a78cc2baffd53a213ee35f519e28719151551b819e1ead5bb651c21", + "line": 3728, + "resource_type": "aws_instance", + "resource_name": "example-instance-414", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example414]", + "search_line": 3728, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bd5764fdd350a944852109facedd8a65b63786bde9aebc822bd1c7d18d16d4a7", + "line": 5681, + "resource_type": "aws_instance", + "resource_name": "example-instance-631", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example631]", + "search_line": 5681, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b9c9bfce85919f1a02f7790fe639922c09f511269d8605f42c9e877052d93de9", + "line": 5843, + "resource_type": "aws_instance", + "resource_name": "example-instance-649", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example649]", + "search_line": 5843, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "027609fece02f9e40de2997a6563eaefaead40a99e8423b35505060f9fee1e9a", + "line": 6158, + "resource_type": "aws_instance", + "resource_name": "example-instance-684", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example684]", + "search_line": 6158, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "29e1346b58b5f32f241c2168da004577e2cf4177a5156cdb65409c1d805de2e4", + "line": 6284, + "resource_type": "aws_instance", + "resource_name": "example-instance-698", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example698]", + "search_line": 6284, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4f38d684efaac9555ac01054be73b383e42615b17f9cbe19792d4fc782acfe17", + "line": 3062, + "resource_type": "aws_instance", + "resource_name": "example-instance-340", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example340]", + "search_line": 3062, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "67651789993dfac4355dc27dce80fae4faa25cf88f868d3fec0509422c59709f", + "line": 632, + "resource_type": "aws_instance", + "resource_name": "example-instance-70", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example70]", + "search_line": 632, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "65ec69eff1c47ceebe4c734874d823bcff195c45cc2baf8be84fc708e31d9b35", + "line": 137, + "resource_type": "aws_instance", + "resource_name": "example-instance-15", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example15]", + "search_line": 137, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "638c5bb785554cf6e2dd22d74b1743c9ef29791bd967496c29024d9c61f3932d", + "line": 5627, + "resource_type": "aws_instance", + "resource_name": "example-instance-625", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example625]", + "search_line": 5627, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c5e742f36e355220cc953a4fc1dd56a472041fbac02a14eefc5d3382f0356d63", + "line": 3944, + "resource_type": "aws_instance", + "resource_name": "example-instance-438", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example438]", + "search_line": 3944, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "28db927b9f5418eed4acc2e04ececd4444186f52f25630ae6203234c2d4c5da7", + "line": 7391, + "resource_type": "aws_instance", + "resource_name": "example-instance-821", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example821]", + "search_line": 7391, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4bb0b22aefda03eaa4b9761b639e56fc610749507a98be3e2090571f16ce7f2e", + "line": 173, + "resource_type": "aws_instance", + "resource_name": "example-instance-19", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example19]", + "search_line": 173, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6cc318f557ba7ea450e78424e305c3008bf8a33aee9de6ae74f6118081bde1c4", + "line": 6959, + "resource_type": "aws_instance", + "resource_name": "example-instance-773", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example773]", + "search_line": 6959, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3d596cf3dab226f4ebd6af4925182ac349d3b4f9c9610238f8ab1995620442b4", + "line": 8336, + "resource_type": "aws_instance", + "resource_name": "example-instance-926", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example926]", + "search_line": 8336, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "131f5f6b8b26ecaa33174310b7f3b50f0a20c0ec4a1b81c44747f27341348835", + "line": 3431, + "resource_type": "aws_instance", + "resource_name": "example-instance-381", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example381]", + "search_line": 3431, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "777f1662888cf9966181bf2a66ee9768e23bb6c5a6257444a058a44edd7c3161", + "line": 4196, + "resource_type": "aws_instance", + "resource_name": "example-instance-466", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example466]", + "search_line": 4196, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5a9344d21173b6a7e696b041565ea4bb2dab2260936df6410984d6062834ce91", + "line": 4646, + "resource_type": "aws_instance", + "resource_name": "example-instance-516", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example516]", + "search_line": 4646, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b80c374bc4f13c395664da341551ea6ff032e73e2b3d9eb7870bafe10779f4b8", + "line": 7985, + "resource_type": "aws_instance", + "resource_name": "example-instance-887", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example887]", + "search_line": 7985, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "24ec0a61866bfb7dc729d1dc5d7310de85dc823e28f1451a8dd1e2d4dfa1519b", + "line": 4871, + "resource_type": "aws_instance", + "resource_name": "example-instance-541", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example541]", + "search_line": 4871, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "21d062d915fb9a4e662cffd9dd999111badca00f90a42c57cb9488faede0f5dd", + "line": 182, + "resource_type": "aws_instance", + "resource_name": "example-instance-20", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example20]", + "search_line": 182, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e0d839947c8295e696e3063deb62459f10585b942cd0265d1319cf227ee88bd1", + "line": 4430, + "resource_type": "aws_instance", + "resource_name": "example-instance-492", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example492]", + "search_line": 4430, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "269d4386dbb4996b47c42159d672ff6dd35b84246dc551f0758f2462ca405e8e", + "line": 5501, + "resource_type": "aws_instance", + "resource_name": "example-instance-611", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example611]", + "search_line": 5501, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6042c21bed2f84352afcc3888a8e6def6089d8707d084c56e4e8ac8e749792b7", + "line": 6113, + "resource_type": "aws_instance", + "resource_name": "example-instance-679", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example679]", + "search_line": 6113, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "03bf09d85dd9edd42d57ef0b483d0e0976beca0d3ed1516b1e76b2940156c612", + "line": 6698, + "resource_type": "aws_instance", + "resource_name": "example-instance-744", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example744]", + "search_line": 6698, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e547be84b9d9e4acc11e56f5272e8ddf6a1654c220a64676c39b0018acce5a90", + "line": 1514, + "resource_type": "aws_instance", + "resource_name": "example-instance-168", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example168]", + "search_line": 1514, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e8f15c07b8c4f04dc1759a3172fb9179eb9e41e9407a4eb5a6f9db4b735da8c9", + "line": 3458, + "resource_type": "aws_instance", + "resource_name": "example-instance-384", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example384]", + "search_line": 3458, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7c25045fb3d0b45595e9fcac25b91ec79184c0f8eda36a54a772f5728901a5c4", + "line": 506, + "resource_type": "aws_instance", + "resource_name": "example-instance-56", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example56]", + "search_line": 506, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "62b61acb01231aa8679cda7dacac0aa8abb7b1a6aef506a27a7717290f0d27d1", + "line": 7931, + "resource_type": "aws_instance", + "resource_name": "example-instance-881", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example881]", + "search_line": 7931, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5d280095559d6849d768293fa936f9fdcd8f16426170df3744b0d53a847efedd", + "line": 7940, + "resource_type": "aws_instance", + "resource_name": "example-instance-882", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example882]", + "search_line": 7940, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "192f53d7d3f791794c899cee6a35856b856cd283e2fc3c8e9a6a6fbe95e34d65", + "line": 2774, + "resource_type": "aws_instance", + "resource_name": "example-instance-308", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example308]", + "search_line": 2774, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3c0b8fc2795b7e8b98debcd4872466227b8f81d9222a341e543baa5882f01f7f", + "line": 3971, + "resource_type": "aws_instance", + "resource_name": "example-instance-441", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example441]", + "search_line": 3971, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2ec951d5ba221f085e38f72e966f6b914232364a2c550e9c50ffa2fd2cb3ec2e", + "line": 5384, + "resource_type": "aws_instance", + "resource_name": "example-instance-598", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example598]", + "search_line": 5384, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6e6d5aacc1998887c334970453ab6d8ad6dc28ccc27e6ffbbcadda86077bf1a1", + "line": 641, + "resource_type": "aws_instance", + "resource_name": "example-instance-71", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example71]", + "search_line": 641, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a556c5a31615a2e6d81cf22ff4fc5cdde02e09f324117aea3beac1ef10b5d4a9", + "line": 4331, + "resource_type": "aws_instance", + "resource_name": "example-instance-481", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example481]", + "search_line": 4331, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3a2e1a81c262f96bc510b5659b957e93f1adc298f224e27c85440ffa59ae32fd", + "line": 7769, + "resource_type": "aws_instance", + "resource_name": "example-instance-863", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example863]", + "search_line": 7769, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fa4ec50ed2d7df6ba4d81c93490b653d98b5e1b4027664ab3e077c844353e620", + "line": 1271, + "resource_type": "aws_instance", + "resource_name": "example-instance-141", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example141]", + "search_line": 1271, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "db706bbf289eaad0d6ef2df9085c022b9cfc6f8e484786f4b3132ca06862c34a", + "line": 3179, + "resource_type": "aws_instance", + "resource_name": "example-instance-353", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example353]", + "search_line": 3179, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f94ea0e976a367f8f973c784c843b2bdb9cf69a8fc300a1c1ed75c01881248c7", + "line": 4178, + "resource_type": "aws_instance", + "resource_name": "example-instance-464", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example464]", + "search_line": 4178, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cf33596f22bc23a29099f3bcfdd5d3164ab3c22ff21978ad935039dec0c4c069", + "line": 425, + "resource_type": "aws_instance", + "resource_name": "example-instance-47", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example47]", + "search_line": 425, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1ca86f80dfe4e69e31204df1ba5fe303542cc0fab3f1b901e6173a397ea79a88", + "line": 4961, + "resource_type": "aws_instance", + "resource_name": "example-instance-551", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example551]", + "search_line": 4961, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6abc10028ab73a34043769920d681abaed5be5a9e06a370456d164ad53c72c4d", + "line": 8093, + "resource_type": "aws_instance", + "resource_name": "example-instance-899", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example899]", + "search_line": 8093, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "43893e8555bfd8f685cb50f8b9e31be92911ebb74d79ce2ccace563bda2ca299", + "line": 8489, + "resource_type": "aws_instance", + "resource_name": "example-instance-943", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example943]", + "search_line": 8489, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "adb8524f6f0f8ec5d873985fc5631c9c1e0d166e3761606de10885a5b39f0921", + "line": 4997, + "resource_type": "aws_instance", + "resource_name": "example-instance-555", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example555]", + "search_line": 4997, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3c08bfb5ffd1f559ff7452a60adec1802b77f236f4714450f9d3d2c7c4d69a2c", + "line": 524, + "resource_type": "aws_instance", + "resource_name": "example-instance-58", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example58]", + "search_line": 524, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "75081e2665bcf54e056a0305ba1d8e82adf70da8265e6c9a2eb13aba646980a5", + "line": 7724, + "resource_type": "aws_instance", + "resource_name": "example-instance-858", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example858]", + "search_line": 7724, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bd4b4482963a0f828e6214a7b8f3d03db2cd1155911a167801866f907b611fa8", + "line": 2585, + "resource_type": "aws_instance", + "resource_name": "example-instance-287", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example287]", + "search_line": 2585, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "718f22e9129550b136ee940c395705ca97e131cb47265dd0b27e97e6e9194adf", + "line": 4484, + "resource_type": "aws_instance", + "resource_name": "example-instance-498", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example498]", + "search_line": 4484, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "070373f013b4a7161281682175c207268d82a98dbe6a5fabd81e91254a6b9b7d", + "line": 866, + "resource_type": "aws_instance", + "resource_name": "example-instance-96", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example96]", + "search_line": 866, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "919d9db62fa8fa67bdd250f02b6474c2be07f4cd3579f97e669adc400965bb0c", + "line": 1172, + "resource_type": "aws_instance", + "resource_name": "example-instance-130", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example130]", + "search_line": 1172, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a281bb6b8652df17b13396e718b2bc57281875eb147134b72eade71955cbe163", + "line": 6023, + "resource_type": "aws_instance", + "resource_name": "example-instance-669", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example669]", + "search_line": 6023, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b903b208e2629ad35cd88024d106c43c3734367ce28c45e53625970df6635cca", + "line": 668, + "resource_type": "aws_instance", + "resource_name": "example-instance-74", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example74]", + "search_line": 668, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ff0009e5dbfa49a175fdd2bc75a30455d47862444e5931d2d025455c327f14b0", + "line": 7706, + "resource_type": "aws_instance", + "resource_name": "example-instance-856", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example856]", + "search_line": 7706, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "79277008bdaefcaffe03bde8a406476ded7cda10c7098f92349ccfd4019bf6cc", + "line": 434, + "resource_type": "aws_instance", + "resource_name": "example-instance-48", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example48]", + "search_line": 434, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d82cf6ebcef2c7f1410e5a08f6c6cab022acda26780c2049425467cfd68109c7", + "line": 209, + "resource_type": "aws_instance", + "resource_name": "example-instance-23", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example23]", + "search_line": 209, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "63cd2b8f96150632ea9bb4f529653f4ac74521400ae1594d642f8bb19cb4a2a4", + "line": 3512, + "resource_type": "aws_instance", + "resource_name": "example-instance-390", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example390]", + "search_line": 3512, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "edef0f843d01ba33535127777fe5f00b3d15d8bec349a9edccede2b9f72cfb2d", + "line": 7319, + "resource_type": "aws_instance", + "resource_name": "example-instance-813", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example813]", + "search_line": 7319, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4296b70645c254d0b52cc76612afb8d59766208a6e42bae6d1e0d174908afcea", + "line": 4340, + "resource_type": "aws_instance", + "resource_name": "example-instance-482", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example482]", + "search_line": 4340, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6736db0084467e5f641dcd1df29c02dc0b756643db53d920695356703118dd02", + "line": 1631, + "resource_type": "aws_instance", + "resource_name": "example-instance-181", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example181]", + "search_line": 1631, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "70c0c1bf26da69481dcdaf0174b650459ff6a76382c799dd4dafa56daaffd2e4", + "line": 4061, + "resource_type": "aws_instance", + "resource_name": "example-instance-451", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example451]", + "search_line": 4061, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "095885ce76bbca3f76ec613289ab72c5f8f128dfc6521669d9030d9a025ed531", + "line": 6752, + "resource_type": "aws_instance", + "resource_name": "example-instance-750", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example750]", + "search_line": 6752, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a93de78af9cf4e61b3aa34a16e42de2dfe872bcdab460bd543f9eaae1cd54411", + "line": 5861, + "resource_type": "aws_instance", + "resource_name": "example-instance-651", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example651]", + "search_line": 5861, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bc58b9b0889be3db77884aa5e72c4d61090686cc6ce5fb5e59f39fa543eab060", + "line": 8516, + "resource_type": "aws_instance", + "resource_name": "example-instance-946", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example946]", + "search_line": 8516, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a71786ad967f7c0b4f7eabac5a8f3b67b2d2dd388655fd85e2252e84de4ab626", + "line": 7310, + "resource_type": "aws_instance", + "resource_name": "example-instance-812", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example812]", + "search_line": 7310, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8e9a053fdcf415c4388466c2a67d6bda37eac232434718e874b81603fd756a19", + "line": 200, + "resource_type": "aws_instance", + "resource_name": "example-instance-22", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example22]", + "search_line": 200, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "38f4a9fa575442a8b74b4c3953f2b57b49b08cc7d51e639cdf7d02dd76158e81", + "line": 6266, + "resource_type": "aws_instance", + "resource_name": "example-instance-696", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example696]", + "search_line": 6266, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8d942bf3d421f5abb67430e5e61c34e616104dae0d56697984bed64e5298160d", + "line": 4988, + "resource_type": "aws_instance", + "resource_name": "example-instance-554", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example554]", + "search_line": 4988, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "21cac6f64323ae409de3453bfceb382752f89819cccfaeda6bd66510adc2c72f", + "line": 5114, + "resource_type": "aws_instance", + "resource_name": "example-instance-568", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example568]", + "search_line": 5114, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f16b8cda4633dededa94ddae998c15d6cabf3580aeefee51cb1d1711c266edae", + "line": 6446, + "resource_type": "aws_instance", + "resource_name": "example-instance-716", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example716]", + "search_line": 6446, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "959a1b17ef21085e677f92e4b5f5e1f6558f617715a72e019c25da5fa1129ce3", + "line": 6599, + "resource_type": "aws_instance", + "resource_name": "example-instance-733", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example733]", + "search_line": 6599, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8e037f28928f87c6a3ca01c2d561a3ea82899c703d1bd17855517f15dc15ff60", + "line": 1055, + "resource_type": "aws_instance", + "resource_name": "example-instance-117", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example117]", + "search_line": 1055, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "69fd4991a02673543cd5fcc595dd842d3848c1c176f1ef1c1d88218e897c5acb", + "line": 2477, + "resource_type": "aws_instance", + "resource_name": "example-instance-275", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example275]", + "search_line": 2477, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9d585aad4a70009ef2c6b421e10123c9a024a7cd048582045c974a3fce5c7b00", + "line": 8858, + "resource_type": "aws_instance", + "resource_name": "example-instance-984", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example984]", + "search_line": 8858, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2ad3342c9ec98120bac129e28adb284412c1b7d180326245af83f7a8dc18f1f3", + "line": 7292, + "resource_type": "aws_instance", + "resource_name": "example-instance-810", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example810]", + "search_line": 7292, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f3931f4e66b3818680d85876428ac87955521476275c3c2dac796244e3f9e4c7", + "line": 8408, + "resource_type": "aws_instance", + "resource_name": "example-instance-934", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example934]", + "search_line": 8408, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5ce8f6f709c4cf9e1ad7ed84cd90f04f78b63f192f5ba4917a2511e251e8b6c1", + "line": 8714, + "resource_type": "aws_instance", + "resource_name": "example-instance-968", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example968]", + "search_line": 8714, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cc2080b586c1f5a91f997b3a9479983d5eef97eb5137c91c9ad8860904a8dbfc", + "line": 2495, + "resource_type": "aws_instance", + "resource_name": "example-instance-277", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example277]", + "search_line": 2495, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dfa93e5a476277329a22040a13287f35552f6a692daca64ae7582ad6b635b045", + "line": 1136, + "resource_type": "aws_instance", + "resource_name": "example-instance-126", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example126]", + "search_line": 1136, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "15e315e6982a483360dbf3c2be04578d2bf8154e0e0af3fd9331dbc58281f4ee", + "line": 5663, + "resource_type": "aws_instance", + "resource_name": "example-instance-629", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example629]", + "search_line": 5663, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a1d939bbc3d8b5afbcd814c4a89f470f01d568bd77fa405cfa7dc2f66b907466", + "line": 5411, + "resource_type": "aws_instance", + "resource_name": "example-instance-601", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example601]", + "search_line": 5411, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "02b2ec1e48969a4dc7060744f875746443b1c77e092e8f5875b31b5aa95506d1", + "line": 7175, + "resource_type": "aws_instance", + "resource_name": "example-instance-797", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example797]", + "search_line": 7175, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "56d83810dad8e3e5724908a93953a97d918f3c99ead0a44e0fd4b87d7c9e2ca4", + "line": 74, + "resource_type": "aws_instance", + "resource_name": "example-instance-8", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example8]", + "search_line": 74, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "83a584bbe750512e7bf0a517353f52187da671d896d584e637c1325a4f9188de", + "line": 3926, + "resource_type": "aws_instance", + "resource_name": "example-instance-436", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example436]", + "search_line": 3926, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "09e445c699cab87ad09bab3bec76b8673e2d1d6e59a2b89a6d9f5e6d2cb9dd3d", + "line": 7166, + "resource_type": "aws_instance", + "resource_name": "example-instance-796", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example796]", + "search_line": 7166, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "85a453497d892c1e1c792c02e5b0772b9b084838efc6732e395b35e30a636a28", + "line": 4421, + "resource_type": "aws_instance", + "resource_name": "example-instance-491", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example491]", + "search_line": 4421, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bb5e696e7aa5d457dac4595684c189f072586d93698a70fda6bddb12fe302fe8", + "line": 6680, + "resource_type": "aws_instance", + "resource_name": "example-instance-742", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example742]", + "search_line": 6680, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "196ce44f05a2e0662e8ddf6bf74d2ab64978ceb90f86b8789d09c26138efb957", + "line": 8822, + "resource_type": "aws_instance", + "resource_name": "example-instance-980", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example980]", + "search_line": 8822, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3a1fad5be6c55b972f812edd69692a87ce5970f115e6150e8e17984d815e8fce", + "line": 1352, + "resource_type": "aws_instance", + "resource_name": "example-instance-150", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example150]", + "search_line": 1352, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6539d46cc56d28fcf71bb8476ac51254f1f3204c08c583878c4826940937bf2c", + "line": 4520, + "resource_type": "aws_instance", + "resource_name": "example-instance-502", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example502]", + "search_line": 4520, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cc4db8e6261aced6d812d2f05243129cf8211bb6a962e582ef7c924c7541cb25", + "line": 1712, + "resource_type": "aws_instance", + "resource_name": "example-instance-190", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example190]", + "search_line": 1712, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "de3496966740a9047f6ebea6b4a7ed26405a1d35a74f20c999fbbeb09e6a7682", + "line": 3710, + "resource_type": "aws_instance", + "resource_name": "example-instance-412", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example412]", + "search_line": 3710, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7e59a345fa93fa7f8ecb69863494f38ad562713e9a36ff8200ed0c26545ddbbf", + "line": 3764, + "resource_type": "aws_instance", + "resource_name": "example-instance-418", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example418]", + "search_line": 3764, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fcd39877c44de0bf2fe6a129b5142eb329cf0204599c1965cac6ef51220b5faf", + "line": 5366, + "resource_type": "aws_instance", + "resource_name": "example-instance-596", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example596]", + "search_line": 5366, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "15ee0f67cc271688a39ee3fc09e57c6f6ce64ddccc4c6db9adcf39018260891d", + "line": 6878, + "resource_type": "aws_instance", + "resource_name": "example-instance-764", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example764]", + "search_line": 6878, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6d609afffc06db4f265c17f64333a5be97d46056ad4953a9f3d7d88243f84fdd", + "line": 3692, + "resource_type": "aws_instance", + "resource_name": "example-instance-410", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example410]", + "search_line": 3692, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "275799a2bb8a9c647bf99f8af9c1017d056a905062185084278b6a1c2de3881e", + "line": 8462, + "resource_type": "aws_instance", + "resource_name": "example-instance-940", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example940]", + "search_line": 8462, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "da2c48c33caebecdeeafdd75de4cb0366b74ffb56d34ceb36a72790ead00db4b", + "line": 2486, + "resource_type": "aws_instance", + "resource_name": "example-instance-276", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example276]", + "search_line": 2486, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9987f1734a3371f3116be8f3da4e767010b9ea6e71196e0482ea1c5c9cfcaf3d", + "line": 2702, + "resource_type": "aws_instance", + "resource_name": "example-instance-300", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example300]", + "search_line": 2702, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e523bfec214a9bda3a2097fc9bf9de9daa3b8ef8cbec8fefeb9165bcbdd141dc", + "line": 1874, + "resource_type": "aws_instance", + "resource_name": "example-instance-208", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example208]", + "search_line": 1874, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0798beae818b470bd7f2d9556f024d74a651ea690fd41c4aa21b4cdec7ee57be", + "line": 6716, + "resource_type": "aws_instance", + "resource_name": "example-instance-746", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example746]", + "search_line": 6716, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "84355a50503f2004fa36e2cd4549eed6a3282d3f1698c17e4a51bae62112ea39", + "line": 7076, + "resource_type": "aws_instance", + "resource_name": "example-instance-786", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example786]", + "search_line": 7076, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dfe966fb1d2771cbc34d421793530519272dedc5175d76f0e4de996eccf747ec", + "line": 8525, + "resource_type": "aws_instance", + "resource_name": "example-instance-947", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example947]", + "search_line": 8525, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f7a2472eecdab30de1597883cd30184afc3556a12126d54df7e5cc01193ce309", + "line": 3548, + "resource_type": "aws_instance", + "resource_name": "example-instance-394", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example394]", + "search_line": 3548, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b6f9cdde8e4a574ef36df53d376e3ae701cb1480157e3a513369a6fbc2ad2dc5", + "line": 5474, + "resource_type": "aws_instance", + "resource_name": "example-instance-608", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example608]", + "search_line": 5474, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b199a601be1210219016b8abc391f6114e424eda6a48be17b8214cc0a3e3f820", + "line": 6725, + "resource_type": "aws_instance", + "resource_name": "example-instance-747", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example747]", + "search_line": 6725, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "eae5363cd6d39acf4ab4bb95f2e5964aef7a88558384a017e41f8a18cac54cff", + "line": 2225, + "resource_type": "aws_instance", + "resource_name": "example-instance-247", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example247]", + "search_line": 2225, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d46f0933a3fc8c72fcf73f30065bcdd6d43d212f8f63ba69c4ef9c51965f54dc", + "line": 3620, + "resource_type": "aws_instance", + "resource_name": "example-instance-402", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example402]", + "search_line": 3620, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0820a5c07a6e00ef1c14affb84b6c834b4a6977cc87cce322735933bae350364", + "line": 2189, + "resource_type": "aws_instance", + "resource_name": "example-instance-243", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example243]", + "search_line": 2189, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "812e1ec11a974561f3d29138ffa3550e2efdff4cc059567d52cb9d97f48b97e6", + "line": 5789, + "resource_type": "aws_instance", + "resource_name": "example-instance-643", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example643]", + "search_line": 5789, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1a35786f73e889cabed69a6105461ec04163d52f19d6a2319d61c339464d0c24", + "line": 8453, + "resource_type": "aws_instance", + "resource_name": "example-instance-939", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example939]", + "search_line": 8453, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3dc244dacadb3b0154136d8163f80c4c42d4d4e6c57583a6a5532111e98f4152", + "line": 3269, + "resource_type": "aws_instance", + "resource_name": "example-instance-363", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example363]", + "search_line": 3269, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7e7b8af5625c50bb4ae9cfa1e75ba52d32b4a7ea12b58ba672cc13b6f66455bd", + "line": 7535, + "resource_type": "aws_instance", + "resource_name": "example-instance-837", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example837]", + "search_line": 7535, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e789d5d3b0a2c6c4db3c6398e053e6b08a384cf53d505b1f8c62b447cbd8ab57", + "line": 7832, + "resource_type": "aws_instance", + "resource_name": "example-instance-870", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example870]", + "search_line": 7832, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "861c0477547696a7a3bfec84dd966277ad8b193c024b2159eecefe58e282cf10", + "line": 2180, + "resource_type": "aws_instance", + "resource_name": "example-instance-242", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example242]", + "search_line": 2180, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "25b3f1a53d69ba9bbc1e2aa56739fab52be57c30eb79330d16347b92789d0c8a", + "line": 2243, + "resource_type": "aws_instance", + "resource_name": "example-instance-249", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example249]", + "search_line": 2243, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9aff370520bd2881901500da585b26054436dbe9c6aa7ce1be1cdf727a01c70d", + "line": 1190, + "resource_type": "aws_instance", + "resource_name": "example-instance-132", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example132]", + "search_line": 1190, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6472f3a7d81b8e50eec50b488b8ae5138e754eb3996f81222ca2b791316a3742", + "line": 6581, + "resource_type": "aws_instance", + "resource_name": "example-instance-731", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example731]", + "search_line": 6581, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5afe7b14c0cd6beeed2dfb0bf9d4403ef6ef8b9c63dc62f0edec19e70625c8df", + "line": 8660, + "resource_type": "aws_instance", + "resource_name": "example-instance-962", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example962]", + "search_line": 8660, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "753df4edc0e892b531daf91df6d1f59a001cac800d7152a9a75bd6374116daa6", + "line": 1883, + "resource_type": "aws_instance", + "resource_name": "example-instance-209", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example209]", + "search_line": 1883, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c17efd8a30b59bf57d7e92e7302d12692181c79b8c964cdeeb0314da52b6f103", + "line": 2153, + "resource_type": "aws_instance", + "resource_name": "example-instance-239", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example239]", + "search_line": 2153, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7418e9b88372bd13771e00c9a9cb1210c23de9b0d6691a74f9a37cde6dd63d6e", + "line": 1937, + "resource_type": "aws_instance", + "resource_name": "example-instance-215", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example215]", + "search_line": 1937, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7aae9d28bda675d2662927a488565f744383758644c74f33f42f4beaf20b96cd", + "line": 4799, + "resource_type": "aws_instance", + "resource_name": "example-instance-533", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example533]", + "search_line": 4799, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6d61f46dda8b62ee4b7fc7239992e909588286efb74241813aa345519838b23c", + "line": 1415, + "resource_type": "aws_instance", + "resource_name": "example-instance-157", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example157]", + "search_line": 1415, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "56fd863343f907b909f048dacad3d3a08dd96827e694caad1e477ddcc3ac59c3", + "line": 3224, + "resource_type": "aws_instance", + "resource_name": "example-instance-358", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example358]", + "search_line": 3224, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "66daa0ad401e8f0eaf9858f901d558670282da98692e11a3d30e440c4bb5ceeb", + "line": 497, + "resource_type": "aws_instance", + "resource_name": "example-instance-55", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example55]", + "search_line": 497, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "210c67b7e8c258f49b38a6f48ad0dd3e2dc74ee2982b3732d34832c23b42a055", + "line": 8111, + "resource_type": "aws_instance", + "resource_name": "example-instance-901", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example901]", + "search_line": 8111, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "65b2582e81643cba06b32c22c6c67ef43370f0c8472d93bbb7746c00d1271801", + "line": 2261, + "resource_type": "aws_instance", + "resource_name": "example-instance-251", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example251]", + "search_line": 2261, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8990c6c1402045ceb4602edd0494fd2e6c49045c4795f0a3f8a207eaa77118b3", + "line": 3737, + "resource_type": "aws_instance", + "resource_name": "example-instance-415", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example415]", + "search_line": 3737, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f492144ee0a31864b23d9f5eee8f3a91c770bfc2b4bb706c0f181218041b1c51", + "line": 5294, + "resource_type": "aws_instance", + "resource_name": "example-instance-588", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example588]", + "search_line": 5294, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "34a30e7db256ee0694a6504dd3bee8142d7b8ce6eec532a1b3a907417aada499", + "line": 6671, + "resource_type": "aws_instance", + "resource_name": "example-instance-741", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example741]", + "search_line": 6671, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "aa388a2e5c13d964b7d64cb6ef132000d4f083554c682e775314083aa8834955", + "line": 6734, + "resource_type": "aws_instance", + "resource_name": "example-instance-748", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example748]", + "search_line": 6734, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "12747a2a28b1666cb410ee73d9989ffa0f2bd8b91f2215c28c3f55328a0ef8d8", + "line": 5852, + "resource_type": "aws_instance", + "resource_name": "example-instance-650", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example650]", + "search_line": 5852, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e400a82898a7a39eae82e465406785e3999f6a0f7115e5e16458954231a11f60", + "line": 3233, + "resource_type": "aws_instance", + "resource_name": "example-instance-359", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example359]", + "search_line": 3233, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "05c2251634a3b207788eded95be5f982181b41a6d82c66f3ed3da69be726a586", + "line": 3872, + "resource_type": "aws_instance", + "resource_name": "example-instance-430", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example430]", + "search_line": 3872, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8a8e49a0bdb72bbf9ec39449d7ca32d0993e4b63c82048edae028bfdf65db520", + "line": 1820, + "resource_type": "aws_instance", + "resource_name": "example-instance-202", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example202]", + "search_line": 1820, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e630a084b77a9e135f554ddf068738d75193baa0c3273e183585865331b3ac75", + "line": 3935, + "resource_type": "aws_instance", + "resource_name": "example-instance-437", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example437]", + "search_line": 3935, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "45d571f5ddb78cc6ff42ad52be9d786bf25cc2008cc0c79c80ef9dae89c5dfad", + "line": 965, + "resource_type": "aws_instance", + "resource_name": "example-instance-107", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example107]", + "search_line": 965, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a17d7695bbb94a6be88bdd5c76af1d40fdfe967f2e30f8aca1f9b234d10b9ac5", + "line": 8210, + "resource_type": "aws_instance", + "resource_name": "example-instance-912", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example912]", + "search_line": 8210, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1e28880fa7e25044ee6c82b6270e10e5ba4ed4e99c40a5d25cc881cfde8cd348", + "line": 5537, + "resource_type": "aws_instance", + "resource_name": "example-instance-615", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example615]", + "search_line": 5537, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "004eaa159b79ec53a5334394a9fc579025c7ab55c1b292bef629b591dd6e1744", + "line": 5402, + "resource_type": "aws_instance", + "resource_name": "example-instance-600", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example600]", + "search_line": 5402, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "96991c048d6697ea0967cc0e28676f38e9b1ccdf2a4651df9f10d6146fdb06d6", + "line": 3197, + "resource_type": "aws_instance", + "resource_name": "example-instance-355", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example355]", + "search_line": 3197, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "96b781236c97c2a0d2f17a38b5b5ff5b5f7d08565f0bdc2f15a5a3128a810172", + "line": 4610, + "resource_type": "aws_instance", + "resource_name": "example-instance-512", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example512]", + "search_line": 4610, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "439a1c80110d252e59462fb3beebef504345d6d58d478467683512179041f485", + "line": 8030, + "resource_type": "aws_instance", + "resource_name": "example-instance-892", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example892]", + "search_line": 8030, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "43243df484680dd100ff840ca57386b457e5872dd338e997cbe4b9022a030cfc", + "line": 560, + "resource_type": "aws_instance", + "resource_name": "example-instance-62", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example62]", + "search_line": 560, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dd46c90546bc3764ce0a1c7aa9f698ca53640cff6d33582b2567b3fb746045ac", + "line": 3782, + "resource_type": "aws_instance", + "resource_name": "example-instance-420", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example420]", + "search_line": 3782, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c1f8d7b6e2a97f53a6d7ca3e5988bf0c3e23c3adccece3579168c6ba64c33f4e", + "line": 7067, + "resource_type": "aws_instance", + "resource_name": "example-instance-785", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example785]", + "search_line": 7067, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3b79ee2f7d0b9232d4fab8a56a32a4fe8a6ec4af8733ee8935334f42c00faeef", + "line": 7112, + "resource_type": "aws_instance", + "resource_name": "example-instance-790", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example790]", + "search_line": 7112, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0e1b61e03cad803d555e83364fb1fd0cd5b49b6785089173f6b5cfc49774da71", + "line": 8696, + "resource_type": "aws_instance", + "resource_name": "example-instance-966", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example966]", + "search_line": 8696, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d1d06854d0457f252b05698eda0423f040b4d5208b10ec71d2ee73bc5a54c485", + "line": 2063, + "resource_type": "aws_instance", + "resource_name": "example-instance-229", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example229]", + "search_line": 2063, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "455e5f2315973af2ea9ed4d0acc319fdd272275bc911604176feca7f71058d01", + "line": 3593, + "resource_type": "aws_instance", + "resource_name": "example-instance-399", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example399]", + "search_line": 3593, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "249991ab52379f0e91c227a566b07ef8ccf1525ab0027db20c83e1e80acaba1a", + "line": 1397, + "resource_type": "aws_instance", + "resource_name": "example-instance-155", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example155]", + "search_line": 1397, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "804af527ae40923c26979e3a483c15f0ffc4a1bdc5d28f010557d467a5587de2", + "line": 2837, + "resource_type": "aws_instance", + "resource_name": "example-instance-315", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example315]", + "search_line": 2837, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4a46f3b35fe00331b16c251e47ca5c121c940b41e58d69a5445a5be6d6740281", + "line": 20, + "resource_type": "aws_instance", + "resource_name": "example-instance-2", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example2]", + "search_line": 20, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bca88ad519870717c7d4ccb3dab934a2c23a43906f3daba135b2d7560d8fb823", + "line": 596, + "resource_type": "aws_instance", + "resource_name": "example-instance-66", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example66]", + "search_line": 596, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "71b3e2f596450554f013162e75c7a97ef6d1b3d53c079033ed6d15411268f679", + "line": 2657, + "resource_type": "aws_instance", + "resource_name": "example-instance-295", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example295]", + "search_line": 2657, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "37264ff95d36c1b2f1f1567b4a11cba7ce65ff2d8b670cc95278b3821e78e055", + "line": 5042, + "resource_type": "aws_instance", + "resource_name": "example-instance-560", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example560]", + "search_line": 5042, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "af473b7ab3b0783a34849af4ee46ec4612831038b77e10c316a844342484eee3", + "line": 7490, + "resource_type": "aws_instance", + "resource_name": "example-instance-832", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example832]", + "search_line": 7490, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "04c337cf7a2321b1e281984134519d99d71c4c34c4ee5d72607ff2456971ad41", + "line": 308, + "resource_type": "aws_instance", + "resource_name": "example-instance-34", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example34]", + "search_line": 308, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2f485957c887b59cbe7fad2e231e6824b7a0fcb0fcae85c491048ac3e56d5eb4", + "line": 1919, + "resource_type": "aws_instance", + "resource_name": "example-instance-213", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example213]", + "search_line": 1919, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ee53f2c1d48602881d4c9de5d1015b188570083239df7346578bac0ed14956cd", + "line": 3449, + "resource_type": "aws_instance", + "resource_name": "example-instance-383", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example383]", + "search_line": 3449, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3280326ae321d2b765459f2fba8967508aa10de8450fab5ca552ad7029916c21", + "line": 3818, + "resource_type": "aws_instance", + "resource_name": "example-instance-424", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example424]", + "search_line": 3818, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8c2450c7f3cf9cce43b2c009b60a1df7a77915a11cd0ea22431cd79e22b6ea85", + "line": 1658, + "resource_type": "aws_instance", + "resource_name": "example-instance-184", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example184]", + "search_line": 1658, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d3c53e11009557a97e1de9bd9cd2da4b1faa7de76bb6a8cd389723a046cc14d8", + "line": 4187, + "resource_type": "aws_instance", + "resource_name": "example-instance-465", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example465]", + "search_line": 4187, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "14b45edc24bfde9217df0c4ad6843b51dea92ba9c6c06fa159f6cfac94d508ee", + "line": 902, + "resource_type": "aws_instance", + "resource_name": "example-instance-100", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example100]", + "search_line": 902, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6cd6d614887db5cc0803676678d21e75bf1e53bce078b144c007298efc04e031", + "line": 6428, + "resource_type": "aws_instance", + "resource_name": "example-instance-714", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example714]", + "search_line": 6428, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b02600bba2f9a262c949fd24fe14f87ced7d3e73fd82095ec6c2c81aee346625", + "line": 371, + "resource_type": "aws_instance", + "resource_name": "example-instance-41", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example41]", + "search_line": 371, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5580eccfc3a6fde52e63411bd6dff6e26f29b4f0771917a7c675ba2cd59e29f5", + "line": 7958, + "resource_type": "aws_instance", + "resource_name": "example-instance-884", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example884]", + "search_line": 7958, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "32b0399e2bc1301eaca394f49efa45c85939aa59eb0168f7b1f222064a7f218e", + "line": 1028, + "resource_type": "aws_instance", + "resource_name": "example-instance-114", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example114]", + "search_line": 1028, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "04fd13a89d5e765d5580d842891b2413af619918227002ead9fbc2a82a597801", + "line": 5888, + "resource_type": "aws_instance", + "resource_name": "example-instance-654", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example654]", + "search_line": 5888, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "40cd5069ac6aa7cacfac9e2bd5d92c60e2a22e90ae8808e1000c9a6cff6cdb68", + "line": 8255, + "resource_type": "aws_instance", + "resource_name": "example-instance-917", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example917]", + "search_line": 8255, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1a8e7b67f363ac26ce129ede3e12d12ce3dc87e1ac53ef2e7e3f952196215606", + "line": 6311, + "resource_type": "aws_instance", + "resource_name": "example-instance-701", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example701]", + "search_line": 6311, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2452e533639c0febc17cedf642087d6bf4c3b6d3e455294b03c96df989700524", + "line": 4601, + "resource_type": "aws_instance", + "resource_name": "example-instance-511", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example511]", + "search_line": 4601, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b1bdd2af80f5c366b51b2f035bb340ce623baa744b2e3ccb0ae9224a4ca26f88", + "line": 3350, + "resource_type": "aws_instance", + "resource_name": "example-instance-372", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example372]", + "search_line": 3350, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "36610c1e81dbdbe1928e760c1efc04c4ea61f6e8ccfe98a18999ec03a98e8c7c", + "line": 2603, + "resource_type": "aws_instance", + "resource_name": "example-instance-289", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example289]", + "search_line": 2603, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b168ec740d8254f3670f000d2802ca1fadf0b05c589a17e911c2b9a3002760e6", + "line": 3647, + "resource_type": "aws_instance", + "resource_name": "example-instance-405", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example405]", + "search_line": 3647, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2fe6d0965e3f900c83eccadd6c280d6a90a1eae863ecec2bd3ea9b04e333ee83", + "line": 6005, + "resource_type": "aws_instance", + "resource_name": "example-instance-667", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example667]", + "search_line": 6005, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f216ec1dcee278750cb2db835d0b469a42ee8e15dad4bbec4b324d088e33ea89", + "line": 2873, + "resource_type": "aws_instance", + "resource_name": "example-instance-319", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example319]", + "search_line": 2873, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d9333783944a8ab253c68b34870dbb9d6c4275d6858e454cdc79e362a0eedbc8", + "line": 551, + "resource_type": "aws_instance", + "resource_name": "example-instance-61", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example61]", + "search_line": 551, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "12bcf6960811b860dfe46fe7fb3a4308101ed3e9b96317d9ee17d89c610a5015", + "line": 6662, + "resource_type": "aws_instance", + "resource_name": "example-instance-740", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example740]", + "search_line": 6662, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "77a855066daa5f6e523f76b94426037427df4b963593d4709145e83b38a3e38b", + "line": 8327, + "resource_type": "aws_instance", + "resource_name": "example-instance-925", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example925]", + "search_line": 8327, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "eb513e2402f8d28d91ddd182c82224efc2e5415f7e8375e6c438e564bf2b6959", + "line": 164, + "resource_type": "aws_instance", + "resource_name": "example-instance-18", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example18]", + "search_line": 164, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ea566a9110cbc06d9913d692fb5da62f3acf4019b3fe6b8049eba64f5cce3ab8", + "line": 2009, + "resource_type": "aws_instance", + "resource_name": "example-instance-223", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example223]", + "search_line": 2009, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "62944a09576876300551aef07bfb111a35909f123ffbc2ccc62d22a6c446496b", + "line": 2126, + "resource_type": "aws_instance", + "resource_name": "example-instance-236", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example236]", + "search_line": 2126, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8dae10911d5def743823d07aab69665176d02101c9953d0936a9b07d918bb6e2", + "line": 4151, + "resource_type": "aws_instance", + "resource_name": "example-instance-461", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example461]", + "search_line": 4151, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a97801d911a428889757c465850f5305f60ed04b0dcfb7eec9e6d18003f3f69b", + "line": 3584, + "resource_type": "aws_instance", + "resource_name": "example-instance-398", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example398]", + "search_line": 3584, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "10121a56ca45579bdae8745154f2e458f1bb062306ecb7b10ed622d369199e53", + "line": 6923, + "resource_type": "aws_instance", + "resource_name": "example-instance-769", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example769]", + "search_line": 6923, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a049a70de2b2765853dbf9c58eb3f438ca3f227cbf356b83e54da4bfa112c4a3", + "line": 4223, + "resource_type": "aws_instance", + "resource_name": "example-instance-469", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example469]", + "search_line": 4223, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "802e2049fa3f81f66ef13b0080f00c76ca33903ddea0234378fabb4602efdee9", + "line": 2369, + "resource_type": "aws_instance", + "resource_name": "example-instance-263", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example263]", + "search_line": 2369, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7402f6bf4d66b6a0913e40b9ee322a68f5ab4fe20d02b144b86b83e43564dc26", + "line": 4205, + "resource_type": "aws_instance", + "resource_name": "example-instance-467", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example467]", + "search_line": 4205, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "65ced84cb4385012f962b948773315d5baef8b93a7a59be0577fd1a5a2df7004", + "line": 9002, + "resource_type": "aws_instance", + "resource_name": "example-instance-1000", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example1000]", + "search_line": 9002, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "33afe1c19a6221801571bfd4283fa481ad2eef3a286be9dd1bec8b023b9b4ef4", + "line": 3683, + "resource_type": "aws_instance", + "resource_name": "example-instance-409", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example409]", + "search_line": 3683, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0300d541d08d33f66200a8720bebe0c4b959c5ccd3118a7ab33a2db1649d248a", + "line": 6644, + "resource_type": "aws_instance", + "resource_name": "example-instance-738", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example738]", + "search_line": 6644, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8e257694e30e282d8dc3b509c9b9b4f774e044c5f35ac1e46a134696db971ea6", + "line": 2252, + "resource_type": "aws_instance", + "resource_name": "example-instance-250", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example250]", + "search_line": 2252, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bbea236823a65da66b81aa2105f26a30320e9d0b90105b769dcbc7a293f5f61f", + "line": 6302, + "resource_type": "aws_instance", + "resource_name": "example-instance-700", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example700]", + "search_line": 6302, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fc11c6987d8712b650cfe07e59c0a4cb4e78652d4e6cb25ef199e2df27ffa2c1", + "line": 2936, + "resource_type": "aws_instance", + "resource_name": "example-instance-326", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example326]", + "search_line": 2936, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7804301eadb212369567ba59176b3e1408bfd69429b10e3b02d2813c7b9ec713", + "line": 5456, + "resource_type": "aws_instance", + "resource_name": "example-instance-606", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example606]", + "search_line": 5456, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e9c871a3989863e6a398d15d8e717016ae27734b4bb0184c073519a481a06465", + "line": 8912, + "resource_type": "aws_instance", + "resource_name": "example-instance-990", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example990]", + "search_line": 8912, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ec83fd10a72f69e88d6e65f0b4ae311ebd0b25e286bdc76063b1c14eed660fa9", + "line": 533, + "resource_type": "aws_instance", + "resource_name": "example-instance-59", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example59]", + "search_line": 533, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "342c64f7c73e855554c1fe30a2c17cc55dcc4f0351eb013f17da6eeab9aec709", + "line": 3440, + "resource_type": "aws_instance", + "resource_name": "example-instance-382", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example382]", + "search_line": 3440, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e2a594e42760828e14bcfcb29e578e4f8d890468e0a5dd07b601f2d719775dbf", + "line": 803, + "resource_type": "aws_instance", + "resource_name": "example-instance-89", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example89]", + "search_line": 803, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "287e32bdc447f4ba6d3ed9c137edb851e99419cbc86bd7a320cd29c4754451da", + "line": 2558, + "resource_type": "aws_instance", + "resource_name": "example-instance-284", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example284]", + "search_line": 2558, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "14200ef9c1a198e92b04b6a2ce45387b3256a4f05ca52f2adfabcf40ea496a13", + "line": 5735, + "resource_type": "aws_instance", + "resource_name": "example-instance-637", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example637]", + "search_line": 5735, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5b4c695b99e396e929a607c3802c5ad13ce79ac76f3ccd2873493f49978ff9f1", + "line": 8507, + "resource_type": "aws_instance", + "resource_name": "example-instance-945", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example945]", + "search_line": 8507, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "80b59bda2b0ce084075756d755733f8d9ba0ecfcc1082dd01b992db952f19ecc", + "line": 2396, + "resource_type": "aws_instance", + "resource_name": "example-instance-266", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example266]", + "search_line": 2396, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c623f6a0fe94a4d6a92b1321c0a65b66c0ad87405865935f2a8b264c0c56009a", + "line": 2648, + "resource_type": "aws_instance", + "resource_name": "example-instance-294", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example294]", + "search_line": 2648, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b5c002a5f23a14789641de646a0baf52753f3cf8f71acf28a483d42266bdb5f3", + "line": 1568, + "resource_type": "aws_instance", + "resource_name": "example-instance-174", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example174]", + "search_line": 1568, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5b009f2c61426267087e07ee699889309fe8bbc50ae70e8657526a1e1265656a", + "line": 5825, + "resource_type": "aws_instance", + "resource_name": "example-instance-647", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example647]", + "search_line": 5825, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "33beec64a22723c841ea1676fe6d3d32573352d03bf987e60e712781b731e1c2", + "line": 920, + "resource_type": "aws_instance", + "resource_name": "example-instance-102", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example102]", + "search_line": 920, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d5ebb458c28483accf3ef2ba23d89622dce9c110622ead4854279cb5fc3eb2f5", + "line": 191, + "resource_type": "aws_instance", + "resource_name": "example-instance-21", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example21]", + "search_line": 191, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "83deaeb64d40ccc5a9090cd28b481139f46e67de7ad35f0ce63c0cf45de20e22", + "line": 4313, + "resource_type": "aws_instance", + "resource_name": "example-instance-479", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example479]", + "search_line": 4313, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "681359a107c731beb3012ef0db1b9151b9a818f889dfb4b015f274c953abb980", + "line": 5123, + "resource_type": "aws_instance", + "resource_name": "example-instance-569", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example569]", + "search_line": 5123, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "66bb6b40bb763cba24f24b7d21fe43bd509847df8341bc60c39a1325123d498c", + "line": 2630, + "resource_type": "aws_instance", + "resource_name": "example-instance-292", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example292]", + "search_line": 2630, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a9e1ab05af07a92d8d853f50e426c2ca35fee3f75a58412d31fff95999d6eb5e", + "line": 3521, + "resource_type": "aws_instance", + "resource_name": "example-instance-391", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example391]", + "search_line": 3521, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "84d9328cbcd1fe816d72f13fbbd84be6fa82c99423011fbad5fd974be35b651b", + "line": 7454, + "resource_type": "aws_instance", + "resource_name": "example-instance-828", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example828]", + "search_line": 7454, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8ca2b56b8aa9bf613ceb9f1b9edb1a6621317da7ceb9492b0a642b810770c85b", + "line": 2108, + "resource_type": "aws_instance", + "resource_name": "example-instance-234", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example234]", + "search_line": 2108, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d386c2c7da68907c3e03fc8bc11ed41f4e8513c55d0f18d37f32b55147bed319", + "line": 2540, + "resource_type": "aws_instance", + "resource_name": "example-instance-282", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example282]", + "search_line": 2540, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "325e3c9a06fa5307e474f6a7d7702e3f690945e729cc48609180b8a26c2a82c0", + "line": 5798, + "resource_type": "aws_instance", + "resource_name": "example-instance-644", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example644]", + "search_line": 5798, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d4690a7ad4183168170504a7f1e3550de92aabfcf7d9467b5a79895646ee835d", + "line": 6626, + "resource_type": "aws_instance", + "resource_name": "example-instance-736", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example736]", + "search_line": 6626, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4f11ed4117ea4563a0533108889c661a6915aeaf336b5387da6f06262ec6a272", + "line": 2963, + "resource_type": "aws_instance", + "resource_name": "example-instance-329", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example329]", + "search_line": 2963, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "610641e82ea72c2a19d2d11c117bf593716bf8152a47907e91b93c313eea6de3", + "line": 4097, + "resource_type": "aws_instance", + "resource_name": "example-instance-455", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example455]", + "search_line": 4097, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "daaaffd3a4cfe3595d84cfba0b754605058fce797111e81d9a086d3f3076d033", + "line": 6068, + "resource_type": "aws_instance", + "resource_name": "example-instance-674", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example674]", + "search_line": 6068, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "24e2876c9156b8a378564f4f38b53d0c45642af692b36ef2ba8bece67b6d90e5", + "line": 1343, + "resource_type": "aws_instance", + "resource_name": "example-instance-149", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example149]", + "search_line": 1343, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7cb56015d51a4ff6641b953472d5d0d20d24f009b6e2adfb58ed95579b73fff1", + "line": 2432, + "resource_type": "aws_instance", + "resource_name": "example-instance-270", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example270]", + "search_line": 2432, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "caffbdbf1272ede14bc8f0898ab616f9b8b88f99f1ea46e572fe2c446437361e", + "line": 7256, + "resource_type": "aws_instance", + "resource_name": "example-instance-806", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example806]", + "search_line": 7256, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6db025f0f108a715f816f319533df08117e096b7d7c99598933332f2ea786db4", + "line": 2720, + "resource_type": "aws_instance", + "resource_name": "example-instance-302", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example302]", + "search_line": 2720, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b65c050b78658d368cd33f55372cac0f2586be5033eba86986ab7283864b5d43", + "line": 7409, + "resource_type": "aws_instance", + "resource_name": "example-instance-823", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example823]", + "search_line": 7409, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "93817559c915e42915277e102790b35bf5ae4d1cedf16cce387a48968750ace9", + "line": 4628, + "resource_type": "aws_instance", + "resource_name": "example-instance-514", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example514]", + "search_line": 4628, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e4ead95fc584cb7a4deeacd7da8fa5803030e1fad2f6215cfa410648b1905eb0", + "line": 6860, + "resource_type": "aws_instance", + "resource_name": "example-instance-762", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example762]", + "search_line": 6860, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9a79e958f01945ed77ff4973fb7862f532e5d527f5407c32b05e1b662ae5e5bc", + "line": 5357, + "resource_type": "aws_instance", + "resource_name": "example-instance-595", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example595]", + "search_line": 5357, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "246b0779877a693853a9e4c1f938c7d069961895d17cb5025f43d93fde2ce5ad", + "line": 5222, + "resource_type": "aws_instance", + "resource_name": "example-instance-580", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example580]", + "search_line": 5222, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "744aa9cd225948b98f6ccd62ab8f49c42c714333f7c1b4aaeb64a7de647235c5", + "line": 1073, + "resource_type": "aws_instance", + "resource_name": "example-instance-119", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example119]", + "search_line": 1073, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "23d4880666e1dfe824bafa0893e67feeb88ab958d331460656783f2da6c992e6", + "line": 1973, + "resource_type": "aws_instance", + "resource_name": "example-instance-219", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example219]", + "search_line": 1973, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1f3c5e35eb27fe39ca9bddd065d77a9da5ca5f8d3815f1ad039b3a7f71e73fab", + "line": 6032, + "resource_type": "aws_instance", + "resource_name": "example-instance-670", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example670]", + "search_line": 6032, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e05d450f8cfaee3647d966b0c4a94f59ac7e0d2144780b0d2c38466d99afaee5", + "line": 3251, + "resource_type": "aws_instance", + "resource_name": "example-instance-361", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example361]", + "search_line": 3251, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2312ba80ea7288d523c60bacb661a9afcbf974c0146a068dcf9d6926be8f2955", + "line": 11, + "resource_type": "aws_instance", + "resource_name": "example-instance-1", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example1]", + "search_line": 11, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "979109e32e8c72308d7445171c315c925f6093fb876bba0d390637d7853ae53f", + "line": 3701, + "resource_type": "aws_instance", + "resource_name": "example-instance-411", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example411]", + "search_line": 3701, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ebbcecac25fb056fd665bcce6019b013439f7078b0152e4904717716f2f601e2", + "line": 254, + "resource_type": "aws_instance", + "resource_name": "example-instance-28", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example28]", + "search_line": 254, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e6c84e367ef74749b036bea17b32477b7278c25f59461fc8035385fbfbfac462", + "line": 6842, + "resource_type": "aws_instance", + "resource_name": "example-instance-760", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example760]", + "search_line": 6842, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e9e265101292f170bcf7c033966cfc5226f4e9214f8eb7e5cc09946f77eea373", + "line": 3638, + "resource_type": "aws_instance", + "resource_name": "example-instance-404", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example404]", + "search_line": 3638, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "509d1e1e61dd25fd1d9a34729e989d9921dfacc331f9f9add9b637a8223fc148", + "line": 722, + "resource_type": "aws_instance", + "resource_name": "example-instance-80", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example80]", + "search_line": 722, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "755b253fb1893e7ddbe005dc14242fc2d9da7d235c51eb4241efada4a3e52b29", + "line": 1262, + "resource_type": "aws_instance", + "resource_name": "example-instance-140", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example140]", + "search_line": 1262, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c04767dc2adc78b3986e1295e186adee64d1227d6386c268a00d8db3253a6781", + "line": 4556, + "resource_type": "aws_instance", + "resource_name": "example-instance-506", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example506]", + "search_line": 4556, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3c2530e56cb96388b70b96f3da5a53a752db7d1656d06e8b4788202cb6a13771", + "line": 8894, + "resource_type": "aws_instance", + "resource_name": "example-instance-988", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example988]", + "search_line": 8894, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "716c0925f19cf46eddaa556a133e5a67ed3b3a8aaeb60e01b91d73a89fa6d5aa", + "line": 3260, + "resource_type": "aws_instance", + "resource_name": "example-instance-362", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example362]", + "search_line": 3260, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fdc41473b5bbdd4bd20c8244cb53a6d483a44f9f92c310dbf7635ea2ac4e923d", + "line": 65, + "resource_type": "aws_instance", + "resource_name": "example-instance-7", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example7]", + "search_line": 65, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "aa51f21aeeb9f6ed4b39d64476a6f18af0b2eaa05d5d5e5dbb0f982fb8732040", + "line": 1460, + "resource_type": "aws_instance", + "resource_name": "example-instance-162", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example162]", + "search_line": 1460, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "78de58f8473aedc1719f9980f6e42a2681f793fddbc7348a3d6566eebe35b93d", + "line": 5078, + "resource_type": "aws_instance", + "resource_name": "example-instance-564", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example564]", + "search_line": 5078, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2cd2bddea0b34643f87cb354faa856ede40fe416ea96d5096c477b4b7202086a", + "line": 3908, + "resource_type": "aws_instance", + "resource_name": "example-instance-434", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example434]", + "search_line": 3908, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "22d8f59e8074086333dedc32eac88da2f082a919a72d09ca71715f8c7a1e0969", + "line": 8615, + "resource_type": "aws_instance", + "resource_name": "example-instance-957", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example957]", + "search_line": 8615, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "89f5f0f64cc2cd9219a25478e84608ccf31996011d1ef00a6debff63b66004ed", + "line": 1982, + "resource_type": "aws_instance", + "resource_name": "example-instance-220", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example220]", + "search_line": 1982, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "edba49372e3b56592d676de9394a950d460a95e7c40cdfee0c74fadf740da6ee", + "line": 8444, + "resource_type": "aws_instance", + "resource_name": "example-instance-938", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example938]", + "search_line": 8444, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1983af8afae96ba96d3c82a6b3ccd22d6c4729a39cf87c8b10e953f6ed935f9b", + "line": 4052, + "resource_type": "aws_instance", + "resource_name": "example-instance-450", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example450]", + "search_line": 4052, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "86919f785e536a2189f678eff636f58c2df360960c540c884c2c175ace6318b4", + "line": 3413, + "resource_type": "aws_instance", + "resource_name": "example-instance-379", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example379]", + "search_line": 3413, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2f627aec4df057afb1ac84f427fd0f626eff5dc3139ad7d0fb8d14702751e59e", + "line": 4673, + "resource_type": "aws_instance", + "resource_name": "example-instance-519", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example519]", + "search_line": 4673, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8af646e0d5467c31e271adf1a6b09969138f1a74601e549b64e958f4eecddfc4", + "line": 4772, + "resource_type": "aws_instance", + "resource_name": "example-instance-530", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example530]", + "search_line": 4772, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d3db9b5032ee0d5c59ee9adaf0648800b08bbcfc60769750d946cb054cb42b40", + "line": 6104, + "resource_type": "aws_instance", + "resource_name": "example-instance-678", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example678]", + "search_line": 6104, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d98b2c8344ae18c541e1c037c9ac63775b722f23ff628356b8a9061d6b0832df", + "line": 7193, + "resource_type": "aws_instance", + "resource_name": "example-instance-799", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example799]", + "search_line": 7193, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d7ef00f276b6f478a3dcdbf035e0865f5c3c4e2dc58eb0474f47f5dd9ce2e193", + "line": 5168, + "resource_type": "aws_instance", + "resource_name": "example-instance-574", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example574]", + "search_line": 5168, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b2e633f7226a99137f8f4ede647a85b1566158db2c8b71370aa203c6120813c2", + "line": 6914, + "resource_type": "aws_instance", + "resource_name": "example-instance-768", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example768]", + "search_line": 6914, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7e1591e794016aed3214645c6309b35f6fd4ceffd82d2d4f23494bdde0867d7b", + "line": 8129, + "resource_type": "aws_instance", + "resource_name": "example-instance-903", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example903]", + "search_line": 8129, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1ceebd66b23f1dc4cee67a182a923a653157dc9514b4729692eb98b65ad4f6d0", + "line": 5753, + "resource_type": "aws_instance", + "resource_name": "example-instance-639", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example639]", + "search_line": 5753, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "77b34b86d2d94b88f83b4fe19058f2d61a3e6c9f054b00160ba45090a27c93fa", + "line": 6527, + "resource_type": "aws_instance", + "resource_name": "example-instance-725", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example725]", + "search_line": 6527, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6fcc57fe4d919c11fd277bb188ccfd19f10ad3e4398847e889a182aecb20851f", + "line": 7787, + "resource_type": "aws_instance", + "resource_name": "example-instance-865", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example865]", + "search_line": 7787, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4fc83ad8fd226c02d70833f636f60ceed59bc5d7596bcdfc090886b3dee09650", + "line": 3323, + "resource_type": "aws_instance", + "resource_name": "example-instance-369", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example369]", + "search_line": 3323, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ef06e7d36b379fe05c48b9b0190b80cf4b35af9a703d51166fa6c818791c47a3", + "line": 4115, + "resource_type": "aws_instance", + "resource_name": "example-instance-457", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example457]", + "search_line": 4115, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2e570c4cbae5bd60cd72c3d8919fe0713760c2a1a12a65f62af2b6532e8577cd", + "line": 7850, + "resource_type": "aws_instance", + "resource_name": "example-instance-872", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example872]", + "search_line": 7850, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "21c8abfa6cc16918c53a7fc057251343e5a6d41c9f274b06c35d8c3700af25af", + "line": 2450, + "resource_type": "aws_instance", + "resource_name": "example-instance-272", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example272]", + "search_line": 2450, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9157f2aec4c59ffe925f5b438a652b6bbf5f5bf9d51e4cb94fea9b23ffbe77f3", + "line": 5006, + "resource_type": "aws_instance", + "resource_name": "example-instance-556", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example556]", + "search_line": 5006, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "58b83938825f89b98ba8dbb37f397071ab1b9fedbcc94bb77dd9ab3343712c2a", + "line": 4619, + "resource_type": "aws_instance", + "resource_name": "example-instance-513", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example513]", + "search_line": 4619, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fd742a34f56ff5a7837406daec71116421b76f16062a8b7e7e5961309c51b6d0", + "line": 5267, + "resource_type": "aws_instance", + "resource_name": "example-instance-585", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example585]", + "search_line": 5267, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9fcd5502dd0700c827bd0abb5fc8efe8b6f3e04a3640853666efc44e923835a0", + "line": 5834, + "resource_type": "aws_instance", + "resource_name": "example-instance-648", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example648]", + "search_line": 5834, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e30a475389ed7f06cd421a4c9f65aabccde8dc3623c1fbee90a955e9225f15f6", + "line": 7634, + "resource_type": "aws_instance", + "resource_name": "example-instance-848", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example848]", + "search_line": 7634, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a814cffc26909dec3ce1fbec71ef47bae5344c42b3824d986c64514aefffdf79", + "line": 8849, + "resource_type": "aws_instance", + "resource_name": "example-instance-983", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example983]", + "search_line": 8849, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2d0f12ee00c01b034ac66293f83a0b698b137fc58b7e3f936662c88b690cf8b0", + "line": 5609, + "resource_type": "aws_instance", + "resource_name": "example-instance-623", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example623]", + "search_line": 5609, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "987741b99e2c65a2bc355f23ffcc37b0d83c3dff73c931cea62333ff701c1f23", + "line": 8795, + "resource_type": "aws_instance", + "resource_name": "example-instance-977", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example977]", + "search_line": 8795, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bebdbf4e3002f89a2d5fa24f1b9e1fdf5824558329130577fbcd5c0327b9f415", + "line": 5987, + "resource_type": "aws_instance", + "resource_name": "example-instance-665", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example665]", + "search_line": 5987, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "17b4e0686b00b20d7790a2d2e233c70f05eedc8f5a485e5b4d2c732ccbfd75f4", + "line": 4637, + "resource_type": "aws_instance", + "resource_name": "example-instance-515", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example515]", + "search_line": 4637, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d5718054afb14cbbf13555c63a3f7e6e90663cbb6d903d5379f474fa417bb13c", + "line": 8786, + "resource_type": "aws_instance", + "resource_name": "example-instance-976", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example976]", + "search_line": 8786, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "84abebacc5040cbafcdce7827684104c4a4cbf74c6b90b75657ab007a71fbe0f", + "line": 6608, + "resource_type": "aws_instance", + "resource_name": "example-instance-734", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example734]", + "search_line": 6608, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "08b50fe0c4e6628fe1f1b71e977ede7cb3010cf3eb0465dbf40f680127276f53", + "line": 4448, + "resource_type": "aws_instance", + "resource_name": "example-instance-494", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example494]", + "search_line": 4448, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3135e3713601fbffd97eef5d95e6e3b2ab34a0f57e4c58f717fcd05fd7ffebb9", + "line": 5672, + "resource_type": "aws_instance", + "resource_name": "example-instance-630", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example630]", + "search_line": 5672, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fcd233f3f75b5c11a7f54e67b14bd54aab200cb6dd6c2b8dc77195fb1a0cce32", + "line": 2072, + "resource_type": "aws_instance", + "resource_name": "example-instance-230", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example230]", + "search_line": 2072, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d58152e31107414c6ededda15193ba34aec436fab98c6c328f3a2ce32adcc9fc", + "line": 3953, + "resource_type": "aws_instance", + "resource_name": "example-instance-439", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example439]", + "search_line": 3953, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e91faab9a33f0b50def9ed04589f90f81e2760deadd25609f66da255460809ed", + "line": 5717, + "resource_type": "aws_instance", + "resource_name": "example-instance-635", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example635]", + "search_line": 5717, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b6e5e45b054de70259d910a3d1473c8ac7b34113c39e7ad28ae061df17aca484", + "line": 7238, + "resource_type": "aws_instance", + "resource_name": "example-instance-804", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example804]", + "search_line": 7238, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2fe86fc50dd7c5e99b1ced95414a12aba77d6ddd236532c40692b72a05535943", + "line": 7760, + "resource_type": "aws_instance", + "resource_name": "example-instance-862", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example862]", + "search_line": 7760, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "77fe8f48e59cff3217cc5e1e5695abaec10b9d26716f6a45e38dc67efabdcb6e", + "line": 1748, + "resource_type": "aws_instance", + "resource_name": "example-instance-194", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example194]", + "search_line": 1748, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "afdba5b4a77af1781b3778a180f34239242fad545cbf1c67d68c42180d6ad1ef", + "line": 8201, + "resource_type": "aws_instance", + "resource_name": "example-instance-911", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example911]", + "search_line": 8201, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2b75ae9624f3a0e85418a8fa82443a287d5f43c5c57329d646ce1c04df837e7a", + "line": 3611, + "resource_type": "aws_instance", + "resource_name": "example-instance-401", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example401]", + "search_line": 3611, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "989ed4c2b252721bfdd5bba065517dd259c5fb2a9178aea0047a7e7d140b0c48", + "line": 2378, + "resource_type": "aws_instance", + "resource_name": "example-instance-264", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example264]", + "search_line": 2378, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "008439dba876a5599b7531fe4b320d32208903b232f941e266dd5f453bc3c451", + "line": 1298, + "resource_type": "aws_instance", + "resource_name": "example-instance-144", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example144]", + "search_line": 1298, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d95995edba7fe8806a508715320c908591c39890d008d376af13cd5f47efdaca", + "line": 7544, + "resource_type": "aws_instance", + "resource_name": "example-instance-838", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example838]", + "search_line": 7544, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dd26cdde5f2ef9e27da45f1807bbf88895ff08aaed8222c17bed0502f19c2855", + "line": 893, + "resource_type": "aws_instance", + "resource_name": "example-instance-99", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example99]", + "search_line": 893, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "76e6f649d04e1b2decb22611bdc3e450e50df95bc5b9b5a163aa6f5e7ff79912", + "line": 4106, + "resource_type": "aws_instance", + "resource_name": "example-instance-456", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example456]", + "search_line": 4106, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4c5c4ea424fabb27075305d3f711a5da8c16fb5560e31cd86f49f18e76f6a577", + "line": 1685, + "resource_type": "aws_instance", + "resource_name": "example-instance-187", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example187]", + "search_line": 1685, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2cb003761a274b47f257b6df0b415c193dda77c9a507241d849eb21aac15e02e", + "line": 3845, + "resource_type": "aws_instance", + "resource_name": "example-instance-427", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example427]", + "search_line": 3845, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "06872593b7985f9eef298d3fdd5337cc0ec8e40fdd218036db992371fd5eda87", + "line": 785, + "resource_type": "aws_instance", + "resource_name": "example-instance-87", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example87]", + "search_line": 785, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f73dab09536c7aec329bc497ceb7b58dd5074ac5973af0a31af213e037378f47", + "line": 1469, + "resource_type": "aws_instance", + "resource_name": "example-instance-163", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example163]", + "search_line": 1469, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e74c1b04bb4e1ebace8c932ec34c588423f2ffba103d25f25853a3e5d463bd37", + "line": 2801, + "resource_type": "aws_instance", + "resource_name": "example-instance-311", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example311]", + "search_line": 2801, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d1642e0c71d80ec5c7aa4a4d307119b771079e17345a4613abe0dff005d315aa", + "line": 4250, + "resource_type": "aws_instance", + "resource_name": "example-instance-472", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example472]", + "search_line": 4250, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b316af93328bb73de497e3df2a833c2364da3bc778eeec87dbb6e1264804229f", + "line": 6401, + "resource_type": "aws_instance", + "resource_name": "example-instance-711", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example711]", + "search_line": 6401, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7b31ef9a9b41c2ebe1d0f65941ed9c486cb47cd78aa26d90963c962b493aa695", + "line": 2288, + "resource_type": "aws_instance", + "resource_name": "example-instance-254", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example254]", + "search_line": 2288, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "006ae65f55af734d62e383915f3a8f602aa45bd35f82133ad57ad90dceab20ee", + "line": 6014, + "resource_type": "aws_instance", + "resource_name": "example-instance-668", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example668]", + "search_line": 6014, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ba9f797ba99374f5b251258eb76944cfff469d80ec40e1272b1ba0819226da23", + "line": 7751, + "resource_type": "aws_instance", + "resource_name": "example-instance-861", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example861]", + "search_line": 7751, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "36f3146139fdcbcb1b277f343c45fd0505751965c1893612a85d751256b3f319", + "line": 1892, + "resource_type": "aws_instance", + "resource_name": "example-instance-210", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example210]", + "search_line": 1892, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a206c675590c4fff288e13c78d6d71b5d34d8b71883bd6ad75fbe06f669d8153", + "line": 3287, + "resource_type": "aws_instance", + "resource_name": "example-instance-365", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example365]", + "search_line": 3287, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4dd4c33a0ab6ca51eaaf940cfd1a265c00bb36893c70204241e74c88213be73b", + "line": 3980, + "resource_type": "aws_instance", + "resource_name": "example-instance-442", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example442]", + "search_line": 3980, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "04b88f05d1db6d657fe84f7b3dc53589e0cb0a9324bf1881b2806d72bf2e6077", + "line": 4286, + "resource_type": "aws_instance", + "resource_name": "example-instance-476", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example476]", + "search_line": 4286, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "860abd5786a3bf0ddd0c80b17328f16a7bd2ed4b72266bd18e7da152912d3619", + "line": 6059, + "resource_type": "aws_instance", + "resource_name": "example-instance-673", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example673]", + "search_line": 6059, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7ebd1f2a96b64467e51200fbfe7e3acd21a57d303f2409eae1c81a70b6683c6e", + "line": 3674, + "resource_type": "aws_instance", + "resource_name": "example-instance-408", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example408]", + "search_line": 3674, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6b3919767bc1984b7b156ae7464a862b99b5c754b6dbf06217de7b1b26cd1be4", + "line": 7913, + "resource_type": "aws_instance", + "resource_name": "example-instance-879", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example879]", + "search_line": 7913, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cca7c130741a06770ce752ff4cc206940053193a99b433bda654c7e28be3ce3e", + "line": 4241, + "resource_type": "aws_instance", + "resource_name": "example-instance-471", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example471]", + "search_line": 4241, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "be654890c8ba440942aeb79125a1f78058f22a9421b3c2afd1b8ff63603208d4", + "line": 929, + "resource_type": "aws_instance", + "resource_name": "example-instance-103", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example103]", + "search_line": 929, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a3de193f45ed7c4ac482bde2cfa87130200c9dd5bb8b02e36a90091ba913734b", + "line": 1928, + "resource_type": "aws_instance", + "resource_name": "example-instance-214", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example214]", + "search_line": 1928, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9682de94ab8da2ba1eb9eb9bed3efcac3af1082e72573266d6672f0b1767e68b", + "line": 2639, + "resource_type": "aws_instance", + "resource_name": "example-instance-293", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example293]", + "search_line": 2639, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fbcc27a3528a1909ac26f45d3da0bd8dbd03d3d374b4468e7a7d408f8389227b", + "line": 2666, + "resource_type": "aws_instance", + "resource_name": "example-instance-296", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example296]", + "search_line": 2666, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "db33a0d72dfb040504bf5ea7e6a578b7c7311ef3abeeda16a87e8018b4cc2397", + "line": 7598, + "resource_type": "aws_instance", + "resource_name": "example-instance-844", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example844]", + "search_line": 7598, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8aa9500c666d42cbde0a370d5e1246b2c4c066fbe96893245db0e2279a558bd7", + "line": 5069, + "resource_type": "aws_instance", + "resource_name": "example-instance-563", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example563]", + "search_line": 5069, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "81e695bdd5bf8761257b94de1069025dba6dcdc3668ae60581afc09b5b320ed9", + "line": 7049, + "resource_type": "aws_instance", + "resource_name": "example-instance-783", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example783]", + "search_line": 7049, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f0c52572f58364f175898df4058d8579815a54c8c5b97ee5cfbc6e4df17f329a", + "line": 299, + "resource_type": "aws_instance", + "resource_name": "example-instance-33", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example33]", + "search_line": 299, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cb576ad4213ecd5bd473544453bab32273aec4531b88f5f9d062b85651d255ee", + "line": 5564, + "resource_type": "aws_instance", + "resource_name": "example-instance-618", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example618]", + "search_line": 5564, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8b1a427f8664178171e1297aff3befcc3122e6d3b2b39979bf1c3422c5c89a2d", + "line": 8264, + "resource_type": "aws_instance", + "resource_name": "example-instance-918", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example918]", + "search_line": 8264, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e1ab5e2f0ab759cc60409a8a74023f7ea1dbbf606fdeaffd3902ce4087882c63", + "line": 3134, + "resource_type": "aws_instance", + "resource_name": "example-instance-348", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example348]", + "search_line": 3134, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "93d6f296b731b4b1155de5d0c1725cea39c9c104490d9ce3b31f0c57c7197cb7", + "line": 3341, + "resource_type": "aws_instance", + "resource_name": "example-instance-371", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example371]", + "search_line": 3341, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1bc6a9879422508782a6504285615d0fc6c7e3c4a24280877c554a6a9f9dda3f", + "line": 3206, + "resource_type": "aws_instance", + "resource_name": "example-instance-356", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example356]", + "search_line": 3206, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e86a051c30a50935f134b64f39202d6e432fadd847c3763b1df7e4a2d73671bc", + "line": 7994, + "resource_type": "aws_instance", + "resource_name": "example-instance-888", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example888]", + "search_line": 7994, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3bbdc6dfda033d9fc03db1b665c52f011a2e249a35969a11617ba59d8f542547", + "line": 4079, + "resource_type": "aws_instance", + "resource_name": "example-instance-453", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example453]", + "search_line": 4079, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cc11434450dc39a4664d617d24557d8dd48a16b163f02662c25fb66c66fcda3e", + "line": 587, + "resource_type": "aws_instance", + "resource_name": "example-instance-65", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example65]", + "search_line": 587, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9d968acc97a0bd7c1e7037192f3939c645a9c78c77085caacff38f4c405e7a8a", + "line": 1046, + "resource_type": "aws_instance", + "resource_name": "example-instance-116", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example116]", + "search_line": 1046, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3fc0dba9ac8e0e3fe4c8a682cddb6b289d6b943d53afb2a50c4d5b2647c996de", + "line": 4349, + "resource_type": "aws_instance", + "resource_name": "example-instance-483", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example483]", + "search_line": 4349, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "eac3dd29e6fee1d20a8a7c806ac9d46f733b8b6aec1318f64b52406bdbebb9c0", + "line": 1082, + "resource_type": "aws_instance", + "resource_name": "example-instance-120", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example120]", + "search_line": 1082, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8b8ff47f9589bb2821ec99aaf8523f2a109a77384375e528d65e2dc6a2186579", + "line": 7157, + "resource_type": "aws_instance", + "resource_name": "example-instance-795", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example795]", + "search_line": 7157, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5858503e793196cdd5822532230a87d4a78332f1998780dc36f6204f39e10467", + "line": 4835, + "resource_type": "aws_instance", + "resource_name": "example-instance-537", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example537]", + "search_line": 4835, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a73b9f267a43100e360f939b99032b761ad69ab40f5bf83742b47ddaa91a214c", + "line": 5420, + "resource_type": "aws_instance", + "resource_name": "example-instance-602", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example602]", + "search_line": 5420, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d1711bf105af16618b22e0e731ecf5b997d2cb447803ddd7e48c76f17df4d9d5", + "line": 7013, + "resource_type": "aws_instance", + "resource_name": "example-instance-779", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example779]", + "search_line": 7013, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7187154217d044a678f5d44001839dd369d2b95b5bcd81a36f1cf5057e367811", + "line": 4025, + "resource_type": "aws_instance", + "resource_name": "example-instance-447", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example447]", + "search_line": 4025, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "908e61c5730ba9bdf44fde858f28b7db3fde5863a8b0368c6ea9202da356c82a", + "line": 1667, + "resource_type": "aws_instance", + "resource_name": "example-instance-185", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example185]", + "search_line": 1667, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "63fd60ee4f4369065b67b7041e62cbcb7d5bb4596a96eee6efc582044283dfde", + "line": 6761, + "resource_type": "aws_instance", + "resource_name": "example-instance-751", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example751]", + "search_line": 6761, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0bbb9fe9b93278033064911b7821f4c249d9f1430f8abcde217642264d5dd341", + "line": 8552, + "resource_type": "aws_instance", + "resource_name": "example-instance-950", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example950]", + "search_line": 8552, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c4b6abf93a5b5a7bc152a3b5bbe4d9d09804932722039d3e671fb5b88335a6ab", + "line": 7337, + "resource_type": "aws_instance", + "resource_name": "example-instance-815", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example815]", + "search_line": 7337, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d420ba62bcf4b21a95a86abb82b0bb28eb3d706b37e9416c132ed0a4d62dd7fe", + "line": 7823, + "resource_type": "aws_instance", + "resource_name": "example-instance-869", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example869]", + "search_line": 7823, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b0caacc80b853c8a7e99695ae5c813d50ac24c5f6781eeff2f66305f090bd833", + "line": 5978, + "resource_type": "aws_instance", + "resource_name": "example-instance-664", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example664]", + "search_line": 5978, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dfdb24af9286f7cfb57102e9f0fd95ee2ceb67d03da81d85bca781c6157d228d", + "line": 2891, + "resource_type": "aws_instance", + "resource_name": "example-instance-321", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example321]", + "search_line": 2891, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3879bc7b5cabea7b91e121e9a99a235d01297850dfc54e4844d2162bb5e1bc80", + "line": 7265, + "resource_type": "aws_instance", + "resource_name": "example-instance-807", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example807]", + "search_line": 7265, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ba076c6ef360a9cde2ef8709d1902ac9dcba14e8864fecc430899eb03fa75521", + "line": 8534, + "resource_type": "aws_instance", + "resource_name": "example-instance-948", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example948]", + "search_line": 8534, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "79f4667e954bcb1f8691993605e15ee9ac3da9c11fed53db9f7ba33eb51adf6e", + "line": 3854, + "resource_type": "aws_instance", + "resource_name": "example-instance-428", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example428]", + "search_line": 3854, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9b23182d0d07e1100e322cb9e24f0632ac72e44d65278a43d1c62dbcc2d7d07b", + "line": 8309, + "resource_type": "aws_instance", + "resource_name": "example-instance-923", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example923]", + "search_line": 8309, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dd8495d258733642d8769e6c821a896c822753ebea71b44bc2f599df1c7f69cb", + "line": 8228, + "resource_type": "aws_instance", + "resource_name": "example-instance-914", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example914]", + "search_line": 8228, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ef2b37ed4431c437407f9d5bb898353c2480e7ca47b337d985decccc38381d12", + "line": 5915, + "resource_type": "aws_instance", + "resource_name": "example-instance-657", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example657]", + "search_line": 5915, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "71dce921c93cd44f5503aef180e2a7e4d3b65a56025ed859b930be96f31861e7", + "line": 1037, + "resource_type": "aws_instance", + "resource_name": "example-instance-115", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example115]", + "search_line": 1037, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "27c272bd3c4f44c8023e477e1e5d3f05e229e50db3dcb25fc32b90c446c277b9", + "line": 7436, + "resource_type": "aws_instance", + "resource_name": "example-instance-826", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example826]", + "search_line": 7436, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e6fd23c05634a38fe0105eb42dc5b44e5b2c59b96e45b1450ab1884654e6ce99", + "line": 2459, + "resource_type": "aws_instance", + "resource_name": "example-instance-273", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example273]", + "search_line": 2459, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5ae44efe4c5ae9614e1119faf8f4d378c4750edff0c961002f9af9bf50fad1a9", + "line": 6185, + "resource_type": "aws_instance", + "resource_name": "example-instance-687", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example687]", + "search_line": 6185, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "001f3194d2c1e88c4812f67244be4f7ec2841324023f68260d0e9eb9aed6e14c", + "line": 2783, + "resource_type": "aws_instance", + "resource_name": "example-instance-309", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example309]", + "search_line": 2783, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "356feece4098a8908289b2f71d99673639b3eb4ce1653bfb580aa0bbd2069a56", + "line": 3863, + "resource_type": "aws_instance", + "resource_name": "example-instance-429", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example429]", + "search_line": 3863, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bc379763f28c3835006ee0bb129e436385b8d05ee1ad3c8a65f5698775304672", + "line": 2882, + "resource_type": "aws_instance", + "resource_name": "example-instance-320", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example320]", + "search_line": 2882, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ec2934869e75f8f184008f0ff817346a646547a4180e86d8f67e0780a5c17c3a", + "line": 5600, + "resource_type": "aws_instance", + "resource_name": "example-instance-622", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example622]", + "search_line": 5600, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0ce31540440d4d41ff1f919b3783b4b360544dae614a7302a080095aea77505b", + "line": 3188, + "resource_type": "aws_instance", + "resource_name": "example-instance-354", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example354]", + "search_line": 3188, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "34bd9eff4b57c36939dac24eb1895ab08955332fb7a13f7a4b16c4007c6c4088", + "line": 6851, + "resource_type": "aws_instance", + "resource_name": "example-instance-761", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example761]", + "search_line": 6851, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "230306a4f3a6c1ff656179043e882c9a6679161150c391cf27b9bf08617097e4", + "line": 8651, + "resource_type": "aws_instance", + "resource_name": "example-instance-961", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example961]", + "search_line": 8651, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "26166aa7505afc1c57c17685d7f18b709f6419bcfcbbadcab50783dbf5541a0d", + "line": 2594, + "resource_type": "aws_instance", + "resource_name": "example-instance-288", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example288]", + "search_line": 2594, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9203fb6bf8c9adf3f52b70c5d46e7294bd35bced71ad1dcb0cfd408aec025f86", + "line": 3773, + "resource_type": "aws_instance", + "resource_name": "example-instance-419", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example419]", + "search_line": 3773, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b986cd937c948a052a5c4eecb7759e99decaf3936efdcad03975f3ff332fcc8f", + "line": 4853, + "resource_type": "aws_instance", + "resource_name": "example-instance-539", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example539]", + "search_line": 4853, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "108374106bc4f523225b5ad5abf6f5a928cbc283eefbe9dd984926b507bdde87", + "line": 6743, + "resource_type": "aws_instance", + "resource_name": "example-instance-749", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example749]", + "search_line": 6743, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cd8fda8f6154998080395d52701c0ced5d6a7a4ccec601f41709604db0139e64", + "line": 4934, + "resource_type": "aws_instance", + "resource_name": "example-instance-548", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example548]", + "search_line": 4934, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "94bc54ba09110c1405d9c7a9fd6c82fbd97a309cc8190941ff0f143cdf5aeb15", + "line": 1739, + "resource_type": "aws_instance", + "resource_name": "example-instance-193", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example193]", + "search_line": 1739, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "03287b7a3490e3fe7c327cc6ebc1793738a70d54c2b9a9b359d03c5214727516", + "line": 4457, + "resource_type": "aws_instance", + "resource_name": "example-instance-495", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example495]", + "search_line": 4457, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d98f793233294c41c28d4e09437c83a94c6a16c29c2804fb0f12f63a230de3c1", + "line": 8300, + "resource_type": "aws_instance", + "resource_name": "example-instance-922", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example922]", + "search_line": 8300, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c250d01262612a67b9737ec0843641135900639551e67dec2d5aa37fbb76be23", + "line": 4781, + "resource_type": "aws_instance", + "resource_name": "example-instance-531", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example531]", + "search_line": 4781, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e7a374c71576497959dd00fcfa59d2b9e32fabb5af8b9240292b09a7fd41f0a7", + "line": 7517, + "resource_type": "aws_instance", + "resource_name": "example-instance-835", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example835]", + "search_line": 7517, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b45a9df780afb1a08a7a994141399456000a72355bd5a94bc40b53e174e94f40", + "line": 650, + "resource_type": "aws_instance", + "resource_name": "example-instance-72", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example72]", + "search_line": 650, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ceed4121299ec8a357766f5789d9793e88927aecd11e8780df65c26c2d1b307d", + "line": 4817, + "resource_type": "aws_instance", + "resource_name": "example-instance-535", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example535]", + "search_line": 4817, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4fec299244217fc11e52d354fa953427bd924a79b78b65411393e84f849f29b2", + "line": 6338, + "resource_type": "aws_instance", + "resource_name": "example-instance-704", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example704]", + "search_line": 6338, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "854997331548cab95c36cfb9a56b89c1054401387c479e1dee33051d224f0a8e", + "line": 7607, + "resource_type": "aws_instance", + "resource_name": "example-instance-845", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example845]", + "search_line": 7607, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9ff8bbcc13afd59ab6fa6d3486df20a9ae83340ae6bbec7cb32737a225b04c35", + "line": 8777, + "resource_type": "aws_instance", + "resource_name": "example-instance-975", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example975]", + "search_line": 8777, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "153f0868ce666591ab2d61e8d4af2c0954f4565b668584213977fcde5a3b678e", + "line": 1217, + "resource_type": "aws_instance", + "resource_name": "example-instance-135", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example135]", + "search_line": 1217, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1cb407c9940050fb0f9a82949c42d92eac4be0dd2c5ef73912aad55cfbb669d3", + "line": 5105, + "resource_type": "aws_instance", + "resource_name": "example-instance-567", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example567]", + "search_line": 5105, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fce365130ad9c3c05df2a90634959bd8b2e6b623ced4cad6717c55df967db2f8", + "line": 1199, + "resource_type": "aws_instance", + "resource_name": "example-instance-133", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example133]", + "search_line": 1199, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ea010a3d6b4d57221bfcb1b576434473ffcadb7e6894d93aae45275c56b1e13a", + "line": 245, + "resource_type": "aws_instance", + "resource_name": "example-instance-27", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example27]", + "search_line": 245, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "66a0ec0e24e62038f90ceaa6c6cb5563a3e63ca4e364ba995a26e257cd85cf9b", + "line": 8381, + "resource_type": "aws_instance", + "resource_name": "example-instance-931", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example931]", + "search_line": 8381, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "faafd6347f0e5ff61a249024f661979892280dbc613bfbf26aede8a6ae2da8a2", + "line": 1100, + "resource_type": "aws_instance", + "resource_name": "example-instance-122", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example122]", + "search_line": 1100, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7ccc09c1e72a41f5720dcdabbf38218c30da68bb1b9789aa4a20aff0bf4a6f06", + "line": 290, + "resource_type": "aws_instance", + "resource_name": "example-instance-32", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example32]", + "search_line": 290, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "81fb78bbb982fd43a1c987c16bc3c016330a47d74c5e7b79d371879714e8293e", + "line": 2315, + "resource_type": "aws_instance", + "resource_name": "example-instance-257", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example257]", + "search_line": 2315, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "af71661ae7128bbaa8753e2b6ade92665734e9f5ddb5b74fa1a51cc3d54f3b1e", + "line": 1703, + "resource_type": "aws_instance", + "resource_name": "example-instance-189", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example189]", + "search_line": 1703, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6e143090f9caf33ef8588f9b88e83c34fbaa8161d64a6d08c2cbdcc5a9f412da", + "line": 2792, + "resource_type": "aws_instance", + "resource_name": "example-instance-310", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example310]", + "search_line": 2792, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8235275865315fc3ec09104c970feb06d21428b6e04835dfd0afc16973cad452", + "line": 6086, + "resource_type": "aws_instance", + "resource_name": "example-instance-676", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example676]", + "search_line": 6086, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a1bbb0ca961d810a0512eb6793bcd5fac57393956b3569e4953fc5689fb10b0c", + "line": 6248, + "resource_type": "aws_instance", + "resource_name": "example-instance-694", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example694]", + "search_line": 6248, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8864a95ab05dca1efeb28063a9b3b57c74b63353a62cf85d6df5d20200532096", + "line": 1577, + "resource_type": "aws_instance", + "resource_name": "example-instance-175", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example175]", + "search_line": 1577, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "12cc3981d9a7ed3ffb67b9a95043f2fb5531b24f3a47647b47b0646dddc30f55", + "line": 4268, + "resource_type": "aws_instance", + "resource_name": "example-instance-474", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example474]", + "search_line": 4268, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6e8212afc9edc067181f5efd1b7324f47f22a1a2fd89090b2e7d12408f3d7636", + "line": 7922, + "resource_type": "aws_instance", + "resource_name": "example-instance-880", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example880]", + "search_line": 7922, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b881b975d41912fc16b81cba596dda45d456fb1913a1fc355ed79f08f4995973", + "line": 2819, + "resource_type": "aws_instance", + "resource_name": "example-instance-313", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example313]", + "search_line": 2819, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7bae2e693ea2b8d2f3c837415cae4deb0fa2b5278b376396313f60e7ed4e353a", + "line": 272, + "resource_type": "aws_instance", + "resource_name": "example-instance-30", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example30]", + "search_line": 272, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "78e58a853807550b7d67026036d937af0cf42413f73a2dd4067ca9b88af606a9", + "line": 4169, + "resource_type": "aws_instance", + "resource_name": "example-instance-463", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example463]", + "search_line": 4169, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3df41f32d4ea2dddd70ad3571285b5270f3106b8ebc5045ffaaadd015e6c429d", + "line": 623, + "resource_type": "aws_instance", + "resource_name": "example-instance-69", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example69]", + "search_line": 623, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d856c162f6ecd039c955ae7a3c716ba3c06a3f6624a1369b0382784ca0ec605a", + "line": 8498, + "resource_type": "aws_instance", + "resource_name": "example-instance-944", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example944]", + "search_line": 8498, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "73a8388f22092197475a0bd482fa862c1c4ebe8d5189bf76ad7de0a075d34643", + "line": 8732, + "resource_type": "aws_instance", + "resource_name": "example-instance-970", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example970]", + "search_line": 8732, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fbb84e1daec98ea90192cab45b5054713d43dd21467c29c8ea9175f3e2fea653", + "line": 2747, + "resource_type": "aws_instance", + "resource_name": "example-instance-305", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example305]", + "search_line": 2747, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f33f5498393b0c7f602bbe0f74d6a1d6b1d342c3fb42e38ce862b83a5ea418a0", + "line": 5060, + "resource_type": "aws_instance", + "resource_name": "example-instance-562", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example562]", + "search_line": 5060, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "24256b4aa62dd68cb6e95f3b5ee9e71eac6cbf621fa6cebaf41c2a7a2555e99b", + "line": 6257, + "resource_type": "aws_instance", + "resource_name": "example-instance-695", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example695]", + "search_line": 6257, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "01ac1a68d953af535a0b811cb4e06f1b4d538e2f9392a39d8b99e3e601a96277", + "line": 3575, + "resource_type": "aws_instance", + "resource_name": "example-instance-397", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example397]", + "search_line": 3575, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9be25a583ec4e866414a8f836f55d5b0f65d798438bf4f7ae0aa9d013816a73c", + "line": 713, + "resource_type": "aws_instance", + "resource_name": "example-instance-79", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example79]", + "search_line": 713, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8f38c871fe17064633410bb1740d4ecccf0fcb6c27ed964d0dbedab564985084", + "line": 776, + "resource_type": "aws_instance", + "resource_name": "example-instance-86", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example86]", + "search_line": 776, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c0d61271d67520afc44d9f703fddde52119663d878216985d547e41dddcde9c0", + "line": 7085, + "resource_type": "aws_instance", + "resource_name": "example-instance-787", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example787]", + "search_line": 7085, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b6ad907b8df8627430112cec3de6191aff8e5c935fa2895b2463128efee7febe", + "line": 3017, + "resource_type": "aws_instance", + "resource_name": "example-instance-335", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example335]", + "search_line": 3017, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9d9cc585e32dfa153729cc03723390e3dd0fb53ceee33f1d8e62e69936ea1e82", + "line": 2441, + "resource_type": "aws_instance", + "resource_name": "example-instance-271", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example271]", + "search_line": 2441, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8ef47a02e77633b30ca198a4a2d8095231de7f93e2654c20a431f48a4309ad60", + "line": 6347, + "resource_type": "aws_instance", + "resource_name": "example-instance-705", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example705]", + "search_line": 6347, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fb23e3420d4e0b4d291d32096c8368543e0efd2f549585485823aeb5408d98c7", + "line": 2333, + "resource_type": "aws_instance", + "resource_name": "example-instance-259", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example259]", + "search_line": 2333, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2506eca07a62452a5696bcdf6345b31dd3126a433a07a46a3e90802b356381d4", + "line": 5240, + "resource_type": "aws_instance", + "resource_name": "example-instance-582", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example582]", + "search_line": 5240, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bce5c31e2258ce3298f77b01788e8e7b434fd18a15afad50750786185274961c", + "line": 1604, + "resource_type": "aws_instance", + "resource_name": "example-instance-178", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example178]", + "search_line": 1604, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ec9cadac8e1d159d6ccb1ab925855bb0790ecd26b12d5a54a3b1a7a736542dbb", + "line": 6275, + "resource_type": "aws_instance", + "resource_name": "example-instance-697", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example697]", + "search_line": 6275, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fd5936c536e14d45d313466ae6d7fb8adbec66749d95eb8db96a32a7e3d8db48", + "line": 4295, + "resource_type": "aws_instance", + "resource_name": "example-instance-477", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example477]", + "search_line": 4295, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a6f0190073f78965f36ee747e08c6a8557f1107010d1e690ae50ac745c8c42f5", + "line": 5393, + "resource_type": "aws_instance", + "resource_name": "example-instance-599", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example599]", + "search_line": 5393, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8ace73fdf42b393a01141c9caf88b85fbc98a538dc16af39e6cfa32dc291639d", + "line": 1001, + "resource_type": "aws_instance", + "resource_name": "example-instance-111", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example111]", + "search_line": 1001, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c7ce16a79c0853c0fee801505943ac7ca2df2e4369acdb7598615498e5cf38ad", + "line": 1784, + "resource_type": "aws_instance", + "resource_name": "example-instance-198", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example198]", + "search_line": 1784, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a53d36f6d039e021222cb5fce44837eb6e13492603c2a781c4dba64a18d8ec7d", + "line": 8561, + "resource_type": "aws_instance", + "resource_name": "example-instance-951", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example951]", + "search_line": 8561, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0e1e0d70467c3a3b170a69060abef4b47a81401cc0e79d9e7b5c48dbcf19266f", + "line": 2171, + "resource_type": "aws_instance", + "resource_name": "example-instance-241", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example241]", + "search_line": 2171, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9016aae4dfb779381bc80407c536feed9aa529ed9b3b1b95a28ab2ee19f17175", + "line": 7031, + "resource_type": "aws_instance", + "resource_name": "example-instance-781", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example781]", + "search_line": 7031, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c7161dc15fb2e1e539de5269a69b183e6f1136406f4b85ef944ce1ddfda7eb0c", + "line": 1523, + "resource_type": "aws_instance", + "resource_name": "example-instance-169", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example169]", + "search_line": 1523, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bd16a0ef8f0b2ec50acab4a7100985fa221a5a3f01206fcaba21190ae8d8bc69", + "line": 8903, + "resource_type": "aws_instance", + "resource_name": "example-instance-989", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example989]", + "search_line": 8903, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5666f6e8b2d16db389822a8b76917e6095e503604d875055107e7aad1342f818", + "line": 2018, + "resource_type": "aws_instance", + "resource_name": "example-instance-224", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example224]", + "search_line": 2018, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9a8bcfd480f0f60f7eee8062229e3981ca1c118686b1872db6fe7bc2d31ce390", + "line": 2198, + "resource_type": "aws_instance", + "resource_name": "example-instance-244", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example244]", + "search_line": 2198, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5b7eb9f2c41c3e209a51a7c7eeb3d17ac0dfda32e993a7724bdcaa5b7e02f6fd", + "line": 326, + "resource_type": "aws_instance", + "resource_name": "example-instance-36", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example36]", + "search_line": 326, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3a31797adabc5024f4b25d6689fabc62135f690d76c8dfa1c11d6159249112ff", + "line": 5015, + "resource_type": "aws_instance", + "resource_name": "example-instance-557", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example557]", + "search_line": 5015, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f1d0a02753a4220bf89e53373e7f64a69855ad67c56d89923f294b63cdbd460c", + "line": 1109, + "resource_type": "aws_instance", + "resource_name": "example-instance-123", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example123]", + "search_line": 1109, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "665c82b8a223feb42815d8f23de1911035bd8c5d29a760e0da77cc564b8e4fe5", + "line": 5204, + "resource_type": "aws_instance", + "resource_name": "example-instance-578", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example578]", + "search_line": 5204, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "62c149838b0e11ddf18525bc86198fcb31f80b699c1293459dbc96eb7764aff1", + "line": 488, + "resource_type": "aws_instance", + "resource_name": "example-instance-54", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example54]", + "search_line": 488, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "09bc0a5afa664327a8355df6b2f853234cb92b0596e4f67f5968761ed74c7be7", + "line": 8678, + "resource_type": "aws_instance", + "resource_name": "example-instance-964", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example964]", + "search_line": 8678, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "13a1177d7773c8bd8794dcbd20313e1f33f2e9b95f96b5bf1a9552d734d6aa51", + "line": 2675, + "resource_type": "aws_instance", + "resource_name": "example-instance-297", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example297]", + "search_line": 2675, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a9d1bdf8083bcc8f8481faa432f25e8b7fb4c81d78a1ab806f5e19616392a6df", + "line": 7220, + "resource_type": "aws_instance", + "resource_name": "example-instance-802", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example802]", + "search_line": 7220, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2a8c3610e6befcd93a7a57c42b83ecf1ef2fb646d3f7214e5cb1fc24c8acb6b3", + "line": 2765, + "resource_type": "aws_instance", + "resource_name": "example-instance-307", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example307]", + "search_line": 2765, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cca1530973354a77dd365dcd5e312c8992f1597d83c0c8bf30c8eaa7c1420160", + "line": 6869, + "resource_type": "aws_instance", + "resource_name": "example-instance-763", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example763]", + "search_line": 6869, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dcfd854cd100a8e790af63ed2c9b8984d37aa4ebd6fd2cc5c6a6404d0c02114a", + "line": 4394, + "resource_type": "aws_instance", + "resource_name": "example-instance-488", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example488]", + "search_line": 4394, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "04d3c3db906cd32b8b38164a099ae54751bc0b05d5ca59b2d4b0bc3dc30cb0c3", + "line": 5024, + "resource_type": "aws_instance", + "resource_name": "example-instance-558", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example558]", + "search_line": 5024, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "12efcbcd12c7c1f3077f8554e4801bcb2e586cfabc84e4503b12c8ec214d2095", + "line": 3503, + "resource_type": "aws_instance", + "resource_name": "example-instance-389", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example389]", + "search_line": 3503, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9c55aaeb702932242b2f0c2593b185112d07ba789eea8e78e8cd99489c040966", + "line": 1388, + "resource_type": "aws_instance", + "resource_name": "example-instance-154", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example154]", + "search_line": 1388, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "21156fed10f1deb2d347f7d1da418d28299e84d695c842bbce52ccda71e24331", + "line": 1226, + "resource_type": "aws_instance", + "resource_name": "example-instance-136", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example136]", + "search_line": 1226, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "863d6e38b75310be0da91c7c39f01254589118d2e56e1d4ef0b0b7428b4f9d53", + "line": 5429, + "resource_type": "aws_instance", + "resource_name": "example-instance-603", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example603]", + "search_line": 5429, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5d1f3c10d67da00d8e0d8a7460d9b78bd4e26dfa117affad2a477c0fc1b65ba5", + "line": 2729, + "resource_type": "aws_instance", + "resource_name": "example-instance-303", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example303]", + "search_line": 2729, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fad9b18faabbb5dd43081ebba5cc881b7645c02e7029ec9ffc7af3ac873ac0b6", + "line": 4538, + "resource_type": "aws_instance", + "resource_name": "example-instance-504", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example504]", + "search_line": 4538, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "418240dee77efb591860f966bcf2ddd1418137b27c8ed27f96b75631c29ca6cb", + "line": 5807, + "resource_type": "aws_instance", + "resource_name": "example-instance-645", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example645]", + "search_line": 5807, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c5f6c426ffa773be36012ef0f03b05bb33d45ce67425bcf4e47190c66570c0b3", + "line": 5492, + "resource_type": "aws_instance", + "resource_name": "example-instance-610", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example610]", + "search_line": 5492, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bf0472235b713abafca22e174f7055a5806c3aeece543f3a2eec4c321fb77938", + "line": 3719, + "resource_type": "aws_instance", + "resource_name": "example-instance-413", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example413]", + "search_line": 3719, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "63deda44f343146a69fd7d57f60dc4097d0067c71f7a4bc8041c2636b368b1bd", + "line": 4529, + "resource_type": "aws_instance", + "resource_name": "example-instance-503", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example503]", + "search_line": 4529, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b13b7f4adf7c4af5b82fe266dba2b5447ab651df7a87b78612bf633409547903", + "line": 5375, + "resource_type": "aws_instance", + "resource_name": "example-instance-597", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example597]", + "search_line": 5375, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a253aee7d2d43a0910dc26a34aff9f613f47535293a23c6cd0b62a0a9abefb19", + "line": 4466, + "resource_type": "aws_instance", + "resource_name": "example-instance-496", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example496]", + "search_line": 4466, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7068cad02a9b1c67977a4fb84d6978ea3fa0adf48aba36d9fa69a461754b1df1", + "line": 3116, + "resource_type": "aws_instance", + "resource_name": "example-instance-346", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example346]", + "search_line": 3116, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fe7deedb23df8c47d4eecff82c1f5ab78ea0efed6f1618a60adf0b65b9073656", + "line": 2270, + "resource_type": "aws_instance", + "resource_name": "example-instance-252", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example252]", + "search_line": 2270, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9ef5718231c40a6015a0e256f02bafaea3ef8e62799fd790fdea8efb2aed2054", + "line": 4547, + "resource_type": "aws_instance", + "resource_name": "example-instance-505", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example505]", + "search_line": 4547, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "157734086437abcf841df6b091d1303f785ad0b7430c1fb6141464949bbcdd8f", + "line": 4862, + "resource_type": "aws_instance", + "resource_name": "example-instance-540", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example540]", + "search_line": 4862, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "650709f69afe68ad48fa4538988fced2a5a5aa6b637b101a9fca913b05b498bd", + "line": 7094, + "resource_type": "aws_instance", + "resource_name": "example-instance-788", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example788]", + "search_line": 7094, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "270915a2002c7059f88efbf9282d2f76e1dd8f580167dc5b462a8edb78bedf23", + "line": 5573, + "resource_type": "aws_instance", + "resource_name": "example-instance-619", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example619]", + "search_line": 5573, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e07b112b4e6c6b2e0a525f075737d8d19325afb523664f86b2832941f15a57c0", + "line": 8354, + "resource_type": "aws_instance", + "resource_name": "example-instance-928", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example928]", + "search_line": 8354, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a473c2138a20cedc6175ef7578bd28bff37f4b2eea9ac8e5657c15dd0ee3c633", + "line": 5348, + "resource_type": "aws_instance", + "resource_name": "example-instance-594", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example594]", + "search_line": 5348, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9ead66140315eb16ec7bac11c1a18745a7beaeeb677c8e229d4b294dc5f89964", + "line": 3314, + "resource_type": "aws_instance", + "resource_name": "example-instance-368", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example368]", + "search_line": 3314, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "64274a1663fcd690f704cd544e8e5959b6029b8012a617513a1587cb1db34a50", + "line": 4970, + "resource_type": "aws_instance", + "resource_name": "example-instance-552", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example552]", + "search_line": 4970, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ec418440893f9e44656a42a7403b2c74e1d2b8625dadf0abebf6e00b0d34327f", + "line": 2387, + "resource_type": "aws_instance", + "resource_name": "example-instance-265", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example265]", + "search_line": 2387, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a6a5576bb163ab16527ffaf69eaa182b2289623879c425329ef5d0515b566034", + "line": 2297, + "resource_type": "aws_instance", + "resource_name": "example-instance-255", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example255]", + "search_line": 2297, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ff2cd2dd48483fcbe295c05f2534e7f66a2eb28bfe0de24843a6d9225902054f", + "line": 4412, + "resource_type": "aws_instance", + "resource_name": "example-instance-490", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example490]", + "search_line": 4412, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4cdd341a8df7ff5e9766df9067bd52fed9432630b263ba5d368e3367802cb655", + "line": 2342, + "resource_type": "aws_instance", + "resource_name": "example-instance-260", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example260]", + "search_line": 2342, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bace96471df85f23e0f79d520481cae06f0670416b3b16d5cc46b8eed9e3c1bc", + "line": 317, + "resource_type": "aws_instance", + "resource_name": "example-instance-35", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example35]", + "search_line": 317, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2b9a2bcca19fad796eb0fd5402f6eedeb43a4e65d195a53039ed19989cdfd197", + "line": 3296, + "resource_type": "aws_instance", + "resource_name": "example-instance-366", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example366]", + "search_line": 3296, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "aa2d5422d9b15fe99023a0432c66e9cca6f099594c53692eacc30ed6ed03e8ef", + "line": 5339, + "resource_type": "aws_instance", + "resource_name": "example-instance-593", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example593]", + "search_line": 5339, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "768b0bbb54338be2f1a99ae2f1a3dbe134700ebaab5c9faceb616430861a2f06", + "line": 7841, + "resource_type": "aws_instance", + "resource_name": "example-instance-871", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example871]", + "search_line": 7841, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f19c52385411fa21dac80c8ec1e9708591f766d769fa080104ec06a3b40acd54", + "line": 3494, + "resource_type": "aws_instance", + "resource_name": "example-instance-388", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example388]", + "search_line": 3494, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a22ba114ddb6a2d913953e571fda9510b69a1cdc19ccde02feab2d249cee3c58", + "line": 5303, + "resource_type": "aws_instance", + "resource_name": "example-instance-589", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example589]", + "search_line": 5303, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d9f40f5edd4128057a77f342b7df6701de5fe2bce581a7ed90a81b1966398d2a", + "line": 4916, + "resource_type": "aws_instance", + "resource_name": "example-instance-546", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example546]", + "search_line": 4916, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7235ec025353519047819be06c2f4cd4c7b571e07ce9416f0267569005f1a930", + "line": 5951, + "resource_type": "aws_instance", + "resource_name": "example-instance-661", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example661]", + "search_line": 5951, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "50b6be30419f59cd45f212e35338088a213641eba70bec28906564fcb5669123", + "line": 6635, + "resource_type": "aws_instance", + "resource_name": "example-instance-737", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example737]", + "search_line": 6635, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fda1a0390e2c1753e81b1540922557dd5e4fbfb481da6932e49810473a1fc38f", + "line": 4403, + "resource_type": "aws_instance", + "resource_name": "example-instance-489", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example489]", + "search_line": 4403, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ebd623d0cd623faa84c17c431476c6759c8571a876b06a4cf636ed5d5714cbb8", + "line": 6131, + "resource_type": "aws_instance", + "resource_name": "example-instance-681", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example681]", + "search_line": 6131, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "920451a18e67cb1771e127fcc8bdeeb7e11d35538af22ba288bcaa48016b5067", + "line": 7904, + "resource_type": "aws_instance", + "resource_name": "example-instance-878", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example878]", + "search_line": 7904, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b6c04e4ae5df7cf78bad19449cf5781a4396799c6feb8d5aea82a19849ce395f", + "line": 7301, + "resource_type": "aws_instance", + "resource_name": "example-instance-811", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example811]", + "search_line": 7301, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "de9ffcea9be4a91eb2a9ccd290bde53071db3f408dd04f537de5248266cc9d35", + "line": 3881, + "resource_type": "aws_instance", + "resource_name": "example-instance-431", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example431]", + "search_line": 3881, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7dbbd8a856748b3f14482515dcca6ec62c4196d06fc93f2c46cd010e90f9a837", + "line": 4124, + "resource_type": "aws_instance", + "resource_name": "example-instance-458", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example458]", + "search_line": 4124, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cc9b474a7eeb4d9e5cf9d5efa7e1aa5534ccff15b4f8fa50d046d1c288762aae", + "line": 6545, + "resource_type": "aws_instance", + "resource_name": "example-instance-727", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example727]", + "search_line": 6545, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "888aa9f2620fb88634783ea101dd0ea0e61603638da3d6fd8f2c072828d11c37", + "line": 1289, + "resource_type": "aws_instance", + "resource_name": "example-instance-143", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example143]", + "search_line": 1289, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "66c2476d747faae55bda980d5e13700c0cf919fec004f48098483ee0dc9d3998", + "line": 8039, + "resource_type": "aws_instance", + "resource_name": "example-instance-893", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example893]", + "search_line": 8039, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8daa73802dcd79eb1cd520d7807e905d299537257ce54c6693ecd1950b74f527", + "line": 8426, + "resource_type": "aws_instance", + "resource_name": "example-instance-936", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example936]", + "search_line": 8426, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cde2e3b0614f7f5dee3dc1fcce3a9af3237acc3c4b2e07ce98041de25f78d9de", + "line": 3800, + "resource_type": "aws_instance", + "resource_name": "example-instance-422", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example422]", + "search_line": 3800, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4253834549dbada93ffe6502586bd965a7baabe59811ad78a0b03e73f19e46bc", + "line": 5762, + "resource_type": "aws_instance", + "resource_name": "example-instance-640", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example640]", + "search_line": 5762, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "016e281332f2437cdbe2914ccceb9998875bd0c4dc9c5948ecb315b821eb2729", + "line": 2360, + "resource_type": "aws_instance", + "resource_name": "example-instance-262", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example262]", + "search_line": 2360, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c9d8043e032edcabca008d712564ee23c962b5938186d1f49d8f3e2f9b431997", + "line": 3332, + "resource_type": "aws_instance", + "resource_name": "example-instance-370", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example370]", + "search_line": 3332, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "677d5ebac06863989062d96ca36db8ea4bbe1eb69e5c6f496da72b36211b7689", + "line": 6320, + "resource_type": "aws_instance", + "resource_name": "example-instance-702", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example702]", + "search_line": 6320, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "599793ba56a1a85d7a73288cf69b30e9172d5b13212fe540f50340bba89d34a9", + "line": 6779, + "resource_type": "aws_instance", + "resource_name": "example-instance-753", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example753]", + "search_line": 6779, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "466cb53d74a148b3312ff50f8701ea69ee3d0cdb224d847c16145af64e5a6898", + "line": 1064, + "resource_type": "aws_instance", + "resource_name": "example-instance-118", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example118]", + "search_line": 1064, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6435e8923e6ad9ac0d20eee2533952d308ac280672467d3c45798bdfca5f048d", + "line": 6329, + "resource_type": "aws_instance", + "resource_name": "example-instance-703", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example703]", + "search_line": 6329, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "310b0891f4a06d4a442a0a7cefeca67d111b5707524cd6f6e101eb313903a9a2", + "line": 8642, + "resource_type": "aws_instance", + "resource_name": "example-instance-960", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example960]", + "search_line": 8642, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "602d7ea3e75cc4d892eb7af42c84ea0cab18c2e78bea925497b24a228b704ece", + "line": 1676, + "resource_type": "aws_instance", + "resource_name": "example-instance-186", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example186]", + "search_line": 1676, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b8003c93bb89ddfb77013b64a643f9f90810ffcf469f1c1e937c908925d06915", + "line": 2216, + "resource_type": "aws_instance", + "resource_name": "example-instance-246", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example246]", + "search_line": 2216, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "677d5953da25961656862e128f60963f0d9c5e5ec0e2bf2f47e0a9eb2aef69aa", + "line": 1955, + "resource_type": "aws_instance", + "resource_name": "example-instance-217", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example217]", + "search_line": 1955, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c3afb139582df91790c6c78c570f362b57bdf7f86f6c0749226a34e0a6db17ea", + "line": 6239, + "resource_type": "aws_instance", + "resource_name": "example-instance-693", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example693]", + "search_line": 6239, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "acdb9702df1b2633ee5b93571ea4a7181d9c123244faaeb6c8ba99af97cf1eb2", + "line": 7643, + "resource_type": "aws_instance", + "resource_name": "example-instance-849", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example849]", + "search_line": 7643, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1d4f2b18282e4d5b543c0fca3514ee45161d7122aed3a03d98a1b34924fa6b9d", + "line": 7382, + "resource_type": "aws_instance", + "resource_name": "example-instance-820", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example820]", + "search_line": 7382, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c52b170ad54f95dfef087b5c5c4e11a1e3c4acf32c1f53bcfc70e0cbde4e7929", + "line": 947, + "resource_type": "aws_instance", + "resource_name": "example-instance-105", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example105]", + "search_line": 947, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "086a2d63887b00fa1cd2ccfde683426f3006fc58f4cc389ec7041a2f5cee8328", + "line": 3629, + "resource_type": "aws_instance", + "resource_name": "example-instance-403", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example403]", + "search_line": 3629, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c881871389944db542dbea6bd9bb6e92bf81304b3c338286841145ddf575d7d9", + "line": 4700, + "resource_type": "aws_instance", + "resource_name": "example-instance-522", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example522]", + "search_line": 4700, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fc7e5c272a6f7eb660e4d91bbcd2e1562e62dc1b612c59de9d6be40cc61b6839", + "line": 8606, + "resource_type": "aws_instance", + "resource_name": "example-instance-956", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example956]", + "search_line": 8606, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7297051fde7183912864016bb27946b1043b43d7d04b93baab7e7c4f0581feb9", + "line": 2909, + "resource_type": "aws_instance", + "resource_name": "example-instance-323", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example323]", + "search_line": 2909, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0a1c9e559f1fd0114e95d8e17ee703d9ad8e79eb2879177e7b452df8c547ae2d", + "line": 4502, + "resource_type": "aws_instance", + "resource_name": "example-instance-500", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example500]", + "search_line": 4502, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "58654ef77aff053b9f3db89280a6d83414304962fa3448606b3d9fa1d4576eab", + "line": 5924, + "resource_type": "aws_instance", + "resource_name": "example-instance-658", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example658]", + "search_line": 5924, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6020b49ce373e42c66faf2c1e5a685ac3ff2d9ee3164bbebad95bda32ab74d5f", + "line": 8993, + "resource_type": "aws_instance", + "resource_name": "example-instance-999", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example999]", + "search_line": 8993, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ceec8a01efc17255f2a28753a91edd3ab85428a94fd28c2d9e8affeff6d0990b", + "line": 8480, + "resource_type": "aws_instance", + "resource_name": "example-instance-942", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example942]", + "search_line": 8480, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "825e2f30e9d65ec74a25da20b339faad8faf1fe44638a7642e205034f0133897", + "line": 2846, + "resource_type": "aws_instance", + "resource_name": "example-instance-316", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example316]", + "search_line": 2846, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5666c15ac8540b408d1640a3acc766f9b99f6a0e92938b3e92170cd78a725b6f", + "line": 3827, + "resource_type": "aws_instance", + "resource_name": "example-instance-425", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example425]", + "search_line": 3827, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "96e6738ddcae7a6ccd1c3ddc69d906248d4482dd26720fe9e0420c300b2c769d", + "line": 4745, + "resource_type": "aws_instance", + "resource_name": "example-instance-527", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example527]", + "search_line": 4745, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bc9063a69b6dc9006aad06a19b2191a741ac6cfe2a9e7af9734940d378d7ebfa", + "line": 7949, + "resource_type": "aws_instance", + "resource_name": "example-instance-883", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example883]", + "search_line": 7949, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "02ce1714bdf7cfde8a4f7657cb3c3f66788730de71daac44ea11c7b8944ba8f4", + "line": 7733, + "resource_type": "aws_instance", + "resource_name": "example-instance-859", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example859]", + "search_line": 7733, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "942d05c1489cb8fe3e9049e3a9505e6504cc1e61efb144a88d209fdde0386ccb", + "line": 6140, + "resource_type": "aws_instance", + "resource_name": "example-instance-682", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example682]", + "search_line": 6140, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "aa9d1a320dd8bb5d18901a75727e9d28091b9d67451cb61e924b36976579df51", + "line": 6419, + "resource_type": "aws_instance", + "resource_name": "example-instance-713", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example713]", + "search_line": 6419, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d39167b35c67430b217089e549a1beeb4de1b26d225a9b942771195f3f038245", + "line": 5591, + "resource_type": "aws_instance", + "resource_name": "example-instance-621", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example621]", + "search_line": 5591, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "17e4f1ee15d915e949844ed7a4bd9e8ef79b7997e632ba9997a84e44b85ed288", + "line": 6617, + "resource_type": "aws_instance", + "resource_name": "example-instance-735", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example735]", + "search_line": 6617, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bd994597c5e0577d571e21c9675e943083eaec557abafbff004f85860322ed4e", + "line": 7004, + "resource_type": "aws_instance", + "resource_name": "example-instance-778", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example778]", + "search_line": 7004, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5b0b3c6c18d824c9a75bae90e755fd17e8414c63c364ac3ac4479656ffea89b5", + "line": 2090, + "resource_type": "aws_instance", + "resource_name": "example-instance-232", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example232]", + "search_line": 2090, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cc295ec2c05d4aa9966a59ab13b0f5d14d8d3b453c904314c46db3af4769b6b1", + "line": 4808, + "resource_type": "aws_instance", + "resource_name": "example-instance-534", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example534]", + "search_line": 4808, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d53c0c81eaa635251d8156be29daa8f2556c5b4a50880524ca3751ef47420c1e", + "line": 767, + "resource_type": "aws_instance", + "resource_name": "example-instance-85", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example85]", + "search_line": 767, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a2947f67824de3fa51b591f45e9f36be360533623ba1a549c50befe9ba6142e9", + "line": 8048, + "resource_type": "aws_instance", + "resource_name": "example-instance-894", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example894]", + "search_line": 8048, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "465dc9bdcdc9042e7dadba17700fd24f99f8224b0d7e677374c1aa4db32e4973", + "line": 83, + "resource_type": "aws_instance", + "resource_name": "example-instance-9", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example9]", + "search_line": 83, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7a31bdac36ebe516b43484f3dc710dfb13b5ab176c375574aa2b1b8ed5b7dd67", + "line": 7778, + "resource_type": "aws_instance", + "resource_name": "example-instance-864", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example864]", + "search_line": 7778, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "48c240b230499b52ac42b43f5bc3a9f75fed757b9a60862796b4c47c46717449", + "line": 2990, + "resource_type": "aws_instance", + "resource_name": "example-instance-332", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example332]", + "search_line": 2990, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4d38409f3d1a4af64a73e9b220e82400798da3487822447dcfcc3fb1a9660fd3", + "line": 4754, + "resource_type": "aws_instance", + "resource_name": "example-instance-528", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example528]", + "search_line": 4754, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0ab5c70e4ffdde313f9405acae030819398f6fd2fe9755a5ab302423810c17f1", + "line": 6095, + "resource_type": "aws_instance", + "resource_name": "example-instance-677", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example677]", + "search_line": 6095, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c0c921880b02efb83175f420cba5ea5bd9e24b2e9f2976c1975c5f8b16b922c8", + "line": 1640, + "resource_type": "aws_instance", + "resource_name": "example-instance-182", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example182]", + "search_line": 1640, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5da5dd82cd5ae15c660f78d12e135ffaa79257dfc963c5ace2c6205e77a74839", + "line": 4259, + "resource_type": "aws_instance", + "resource_name": "example-instance-473", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example473]", + "search_line": 4259, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b260c648273b7567f7564c9d841908422360bfb6feaf90469e92032780602760", + "line": 6050, + "resource_type": "aws_instance", + "resource_name": "example-instance-672", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example672]", + "search_line": 6050, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "82f5df821b463c99986c14c6a80ab23b0686ccc635324bd75788456ca9244720", + "line": 5528, + "resource_type": "aws_instance", + "resource_name": "example-instance-614", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example614]", + "search_line": 5528, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b59b1d570d1b684c9a590c869ca643f9703b0aa5b6e9915997e726c6d3887ab8", + "line": 5708, + "resource_type": "aws_instance", + "resource_name": "example-instance-634", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example634]", + "search_line": 5708, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d1662a8a200b5d1203971ba0398e4155d88604555558536064aa7ce012c76b64", + "line": 362, + "resource_type": "aws_instance", + "resource_name": "example-instance-40", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example40]", + "search_line": 362, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ae83e2714ffb96cf96529dc3133caa49354c5820bd5509dcb9b5c4cefaf74a05", + "line": 4133, + "resource_type": "aws_instance", + "resource_name": "example-instance-459", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example459]", + "search_line": 4133, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9d8bed0a8902b6fc7a395c32c25b74b11dfa69fce0e41b0e967b0329c948803b", + "line": 2045, + "resource_type": "aws_instance", + "resource_name": "example-instance-227", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example227]", + "search_line": 2045, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c192de1d60ca87d7ea4469b4de99079fd11ad749657bd6ea74eccda960f53caa", + "line": 4304, + "resource_type": "aws_instance", + "resource_name": "example-instance-478", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example478]", + "search_line": 4304, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f2f994cea5d808a6f17c5a735e1c988f64419c3b67c3bf1cfb0cbb430e5fbf9c", + "line": 6950, + "resource_type": "aws_instance", + "resource_name": "example-instance-772", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example772]", + "search_line": 6950, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bf7b9376d8d61d19b22a4ef61d1c54d0a60a32f0f61e0fc711f5c13ae69d6c78", + "line": 8057, + "resource_type": "aws_instance", + "resource_name": "example-instance-895", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example895]", + "search_line": 8057, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4af5ebcb7d91c743bea3c5d6d05c65d46b7ceabc06e7f83236919bf28d13546f", + "line": 3053, + "resource_type": "aws_instance", + "resource_name": "example-instance-339", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example339]", + "search_line": 3053, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7c9e7b806f18879fbd5dc1cf93cdd32abffcd24db61d481a2dc4d0f7230c9cab", + "line": 6932, + "resource_type": "aws_instance", + "resource_name": "example-instance-770", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example770]", + "search_line": 6932, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8e83ea92aa73e06b77074b33eca7ca521809767e841fc62112f761000581840b", + "line": 8399, + "resource_type": "aws_instance", + "resource_name": "example-instance-933", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example933]", + "search_line": 8399, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "76f64cec1ce80a5b45c83ec544acbbe3dfdb23f1e51e1ffe73b282ec6f97936d", + "line": 6077, + "resource_type": "aws_instance", + "resource_name": "example-instance-675", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example675]", + "search_line": 6077, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d83b264a521b4f255b58f397e6cd91ae86112df2a19dde4bdfbcd0110946e65d", + "line": 8363, + "resource_type": "aws_instance", + "resource_name": "example-instance-929", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example929]", + "search_line": 8363, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "938ef97784b3d67feceff390c158b1c56a2c75cabc6d796dc43403c058cb9650", + "line": 3989, + "resource_type": "aws_instance", + "resource_name": "example-instance-443", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example443]", + "search_line": 3989, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7bd65159f5053e7308a535268dc629af42066ad5f8f0b2002a585f59af58b921", + "line": 2504, + "resource_type": "aws_instance", + "resource_name": "example-instance-278", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example278]", + "search_line": 2504, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d49b19e13b1e55489f566714e9bf95284df1f1399d98b25dcaa3df06d5cf5ca1", + "line": 8165, + "resource_type": "aws_instance", + "resource_name": "example-instance-907", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example907]", + "search_line": 8165, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2a146346defa8381fe297797928ffda5bb0c8c4b94b3993c238338dee14e17e5", + "line": 884, + "resource_type": "aws_instance", + "resource_name": "example-instance-98", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example98]", + "search_line": 884, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6a542b1e1dd8773bdc35cf093153b4fe1c4bb6f40698d07a026a743539de8788", + "line": 3098, + "resource_type": "aws_instance", + "resource_name": "example-instance-344", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example344]", + "search_line": 3098, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "57a212ccd7d10ece75cd495a0ebe7d778629aa9f322bfc17a6cce9de9ec6ad4e", + "line": 857, + "resource_type": "aws_instance", + "resource_name": "example-instance-95", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example95]", + "search_line": 857, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "35bdaf7fceed44a4bbb0c6bec5cdbb02fa7c6f89b53778cbd16d20cdf262ecf6", + "line": 5996, + "resource_type": "aws_instance", + "resource_name": "example-instance-666", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example666]", + "search_line": 5996, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "94c6393212e42f96e8f6fd9d2360f84c2345023de7bcb953f132ae97abf3748e", + "line": 4511, + "resource_type": "aws_instance", + "resource_name": "example-instance-501", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example501]", + "search_line": 4511, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0e648f9c5e67bd606c256850271c17ddbf6d8ca1321c8a403f89bb8d4709c44d", + "line": 4160, + "resource_type": "aws_instance", + "resource_name": "example-instance-462", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example462]", + "search_line": 4160, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3ff70a1ea0022e1a0e16bb883316449918f090f93c0aa1d6f96e6ab799a9975f", + "line": 146, + "resource_type": "aws_instance", + "resource_name": "example-instance-16", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example16]", + "search_line": 146, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5c14a7d68419f1b774910898c21db6e11a77dfcdc2798759ce9d31bb7cef20f5", + "line": 6122, + "resource_type": "aws_instance", + "resource_name": "example-instance-680", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example680]", + "search_line": 6122, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ee340c62d6c92276706a74689ac436e009746163934e9e4d8cc72a6cc07dbd56", + "line": 3746, + "resource_type": "aws_instance", + "resource_name": "example-instance-416", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example416]", + "search_line": 3746, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c9fff2be05441fb5e45e11f6bc63783175e62045f54dd72ccfe21b189183b18e", + "line": 3044, + "resource_type": "aws_instance", + "resource_name": "example-instance-338", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example338]", + "search_line": 3044, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0c65ee892723ff44567879f1c8c49f5f45dc7479376ffca74a0f7ae0a236ef3d", + "line": 2918, + "resource_type": "aws_instance", + "resource_name": "example-instance-324", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example324]", + "search_line": 2918, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cb00fab21233f4334ad8acf236c49a5bc47bc48419c2fef481db7cce4743eb18", + "line": 7580, + "resource_type": "aws_instance", + "resource_name": "example-instance-842", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example842]", + "search_line": 7580, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "203fa8429020bd30e3a5178dbadc7af770bda376f9ccd8d60e39581df166f388", + "line": 1838, + "resource_type": "aws_instance", + "resource_name": "example-instance-204", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example204]", + "search_line": 1838, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cff1f28df2b0136d7ac34fb798c1b6a4289c253f1fca8bd631853f668a257315", + "line": 6221, + "resource_type": "aws_instance", + "resource_name": "example-instance-691", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example691]", + "search_line": 6221, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "099d8507d227db7071ddc37ddbccaf42f30a6ee8e516bcece77f33e9c2c7cafe", + "line": 2549, + "resource_type": "aws_instance", + "resource_name": "example-instance-283", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example283]", + "search_line": 2549, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e2b41cdfdb38ab5c691ce7b070d300f7f6931a4016fb22afb3b62c13dfd3d0b0", + "line": 6383, + "resource_type": "aws_instance", + "resource_name": "example-instance-709", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example709]", + "search_line": 6383, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dca67393ae6d120ab4433e835874047bb09081d76650dbbb17cb5bb4df2666bc", + "line": 1991, + "resource_type": "aws_instance", + "resource_name": "example-instance-221", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example221]", + "search_line": 1991, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f83fd4703b8a0b23d3d04faec0db88aa2011411ecaccdf124e679abf5215da12", + "line": 4790, + "resource_type": "aws_instance", + "resource_name": "example-instance-532", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example532]", + "search_line": 4790, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bde826be497e6b6882092401d2733ebcf4b602fac26b4f7217ec4b532d1c908e", + "line": 56, + "resource_type": "aws_instance", + "resource_name": "example-instance-6", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example6]", + "search_line": 56, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8df69f0905b8be36cf0f329fc1b92269b471c123cbb07a60999ce7047202ee5a", + "line": 5816, + "resource_type": "aws_instance", + "resource_name": "example-instance-646", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example646]", + "search_line": 5816, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "749b0a53a581b0248c186f3ef4e3cb7267cbd3f670927a0b595d46100e0158cc", + "line": 110, + "resource_type": "aws_instance", + "resource_name": "example-instance-12", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example12]", + "search_line": 110, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "80f0790efaa40e35ad67ba252060c518e8f85ef5b8051e467b5862528bd5c1c7", + "line": 3476, + "resource_type": "aws_instance", + "resource_name": "example-instance-386", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example386]", + "search_line": 3476, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0924d20f833186ec002988e35b3e6152c40367080889c89912df525208aaf76a", + "line": 5870, + "resource_type": "aws_instance", + "resource_name": "example-instance-652", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example652]", + "search_line": 5870, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "43756ee26f1bcf765a1b8429ab578e671b9e2e7ac147c06af5789e7f4fc9b506", + "line": 1451, + "resource_type": "aws_instance", + "resource_name": "example-instance-161", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example161]", + "search_line": 1451, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e6ca214f38419f8010097693845474182a65db4ba26857b1cd3eaa6998693ec1", + "line": 3566, + "resource_type": "aws_instance", + "resource_name": "example-instance-396", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example396]", + "search_line": 3566, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "749b036bcd0180fbdf25dcae1b31ea0262f14687c211cb0dae4599fef998756c", + "line": 7274, + "resource_type": "aws_instance", + "resource_name": "example-instance-808", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example808]", + "search_line": 7274, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e5f60cc3baed100ba547d6f711a062b6e8d6ea046f56624c1649bd3c0370b234", + "line": 2810, + "resource_type": "aws_instance", + "resource_name": "example-instance-312", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example312]", + "search_line": 2810, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3f4c4956a375829fded0cae7376ed6d9a386cbb2bc44116f14c5f58929d1cc81", + "line": 218, + "resource_type": "aws_instance", + "resource_name": "example-instance-24", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example24]", + "search_line": 218, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e40dc3c7921ca5187cbf7a72820d69829bef74e0882b57579a428df8ae4fd7a3", + "line": 8579, + "resource_type": "aws_instance", + "resource_name": "example-instance-953", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example953]", + "search_line": 8579, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fdc46a7ca3f038a1b4485ae1cfa7e402912c3342ff62d2301dae531e253965e0", + "line": 1019, + "resource_type": "aws_instance", + "resource_name": "example-instance-113", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example113]", + "search_line": 1019, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4e874a4c2dfdc22f7f41760bdf291dca9eccccdaa14dce743d6bfd00d99bb3af", + "line": 8804, + "resource_type": "aws_instance", + "resource_name": "example-instance-978", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example978]", + "search_line": 8804, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bf4778a3d4c411ead72988a4024cc5efd1f5515cd327fa882db178ee0d72a563", + "line": 8885, + "resource_type": "aws_instance", + "resource_name": "example-instance-987", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example987]", + "search_line": 8885, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2d09ca423ebddf0a33d8ba2a76cec72ca98c999f1b76165f50ea4941f0612e8c", + "line": 5780, + "resource_type": "aws_instance", + "resource_name": "example-instance-642", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example642]", + "search_line": 5780, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "20bc95f6b6a16232db3d926890855f1e38fdf2da2343d6e86af9b93f73709ba1", + "line": 1127, + "resource_type": "aws_instance", + "resource_name": "example-instance-125", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example125]", + "search_line": 1127, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "35182235df606c46bf91dcf893ee24e1c7d4860346c9cec1c2538dee8b96e4f5", + "line": 3386, + "resource_type": "aws_instance", + "resource_name": "example-instance-376", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example376]", + "search_line": 3386, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "01330646e7df09c57fa2c886e01ee1cc9ec027b145ab7ee0465d2788dd79628e", + "line": 1649, + "resource_type": "aws_instance", + "resource_name": "example-instance-183", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example183]", + "search_line": 1649, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "365940620c42a0af7633a360fbad503e1ad2604c7d01ae8c0afa7c82d4feb891", + "line": 5033, + "resource_type": "aws_instance", + "resource_name": "example-instance-559", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example559]", + "search_line": 5033, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "75b7b75522d008431e5a2ac5ccef9250ac7dda866a50558dce316a904dbd2c18", + "line": 7526, + "resource_type": "aws_instance", + "resource_name": "example-instance-836", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example836]", + "search_line": 7526, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cca9059d59ef95a772d35c5d8a0139895572ff8cb9dc6b4b4434af7c3d66fb20", + "line": 1091, + "resource_type": "aws_instance", + "resource_name": "example-instance-121", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example121]", + "search_line": 1091, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "57b7ae94a2c92febe8392050dee8c02cd1fecf3faa63491f37910c881ccedc79", + "line": 956, + "resource_type": "aws_instance", + "resource_name": "example-instance-106", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example106]", + "search_line": 956, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d933af28034a2ba6718fff2c3726b0171ca965b8211b41f36277f32da1fdeeb2", + "line": 5726, + "resource_type": "aws_instance", + "resource_name": "example-instance-636", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example636]", + "search_line": 5726, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d18f064c8d125f7bdde4626525f646f87c8aad73fade5a738a11e8ff8246b7a6", + "line": 2522, + "resource_type": "aws_instance", + "resource_name": "example-instance-280", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example280]", + "search_line": 2522, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "faa75bec2e1444782e538d73dfa41ee278e85d54de5950e8e5f46ff458e8e320", + "line": 8120, + "resource_type": "aws_instance", + "resource_name": "example-instance-902", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example902]", + "search_line": 8120, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b437fdbcbdca52682538c4ed4e72e8f2dfe6d25eee254311406b75eff20f1ec5", + "line": 119, + "resource_type": "aws_instance", + "resource_name": "example-instance-13", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example13]", + "search_line": 119, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a7cf8b78da2692661dad4b07aa4a5e96c7d7610d755a9d7ba67d40a48fb92fea", + "line": 5582, + "resource_type": "aws_instance", + "resource_name": "example-instance-620", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example620]", + "search_line": 5582, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "05a580f38bc8cc02e7618abfafdf0fefa832d3cdd0346774adc559b5c0e54f9b", + "line": 3359, + "resource_type": "aws_instance", + "resource_name": "example-instance-373", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example373]", + "search_line": 3359, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6992c3ecd9e7d721d928d7457b494c2dc16b4b7f02c53f11e3040f9eb418768a", + "line": 6374, + "resource_type": "aws_instance", + "resource_name": "example-instance-708", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example708]", + "search_line": 6374, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9e3eddb679c31244dbecbdfbf33897bdc54b98c0da44c7fddc5a57b8ed86ffa4", + "line": 8750, + "resource_type": "aws_instance", + "resource_name": "example-instance-972", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example972]", + "search_line": 8750, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b2674a8fe6575e4ca28ba1d0c3fb111eb44d55392c21090db7ed8d73eada3695", + "line": 6941, + "resource_type": "aws_instance", + "resource_name": "example-instance-771", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example771]", + "search_line": 6941, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "aaf4f1077c5461c57c0f66b33c021b18f1076b7808e5d55ae015589a87916f47", + "line": 6410, + "resource_type": "aws_instance", + "resource_name": "example-instance-712", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example712]", + "search_line": 6410, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "654291bfff943895d094b6e8a7af9ff625e77c0b1634b1ee3e04d8ce2a6bf91d", + "line": 8669, + "resource_type": "aws_instance", + "resource_name": "example-instance-963", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example963]", + "search_line": 8669, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8a47906399934d59b8f90498c6190f26cdcdb73e27f681ce23308dca2a5f8b36", + "line": 4952, + "resource_type": "aws_instance", + "resource_name": "example-instance-550", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example550]", + "search_line": 4952, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "44fe8e9afc462a89e8a09a48c0cfe1710304bd92a97e936ecb80eaa6d3ba1455", + "line": 5096, + "resource_type": "aws_instance", + "resource_name": "example-instance-566", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example566]", + "search_line": 5096, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "eab6379d1aea44fa4a6caee89c11bfd9536d2d58c4b8803b35587cd8d55432fd", + "line": 2738, + "resource_type": "aws_instance", + "resource_name": "example-instance-304", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example304]", + "search_line": 2738, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d25abc8e1ec059a3d9d379b42396fd8e2394362b82fd6fcd1babfcff14fec5af", + "line": 4718, + "resource_type": "aws_instance", + "resource_name": "example-instance-524", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example524]", + "search_line": 4718, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cd3967ea2b7e204c1103eb2c3efdd191fc29c2cc8c84e29e72e54453d5372287", + "line": 6473, + "resource_type": "aws_instance", + "resource_name": "example-instance-719", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example719]", + "search_line": 6473, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e361694fb495fb896120e1c6077bc424762a8473445a1556c42590e3f88470c1", + "line": 2972, + "resource_type": "aws_instance", + "resource_name": "example-instance-330", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example330]", + "search_line": 2972, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5d010d7063cfa37274c327570e6ef85cb0add28d918acca2c1b543909771a565", + "line": 5258, + "resource_type": "aws_instance", + "resource_name": "example-instance-584", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example584]", + "search_line": 5258, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ff5bd7a3e2569294239465988f740cb31ca5e2374d22959a2aaa02180a30c90f", + "line": 7967, + "resource_type": "aws_instance", + "resource_name": "example-instance-885", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example885]", + "search_line": 7967, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b226b8c5101dd2c6311784e28e2ce7669d2f39d180e859e340cc70289503fd8d", + "line": 4016, + "resource_type": "aws_instance", + "resource_name": "example-instance-446", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example446]", + "search_line": 4016, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b947c71b007f4d9bec5ca97355bbf545ae191921246dca1f4af1c7825dec861f", + "line": 6041, + "resource_type": "aws_instance", + "resource_name": "example-instance-671", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example671]", + "search_line": 6041, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3711f84c51e0eafb3ea11c67e21100b7d5be37972f5e218b05caa636ca3d9c80", + "line": 6482, + "resource_type": "aws_instance", + "resource_name": "example-instance-720", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example720]", + "search_line": 6482, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7844a88a5713746146a1d37e921c843b955069cee7839e6341fde8ad7ddde4a5", + "line": 29, + "resource_type": "aws_instance", + "resource_name": "example-instance-3", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example3]", + "search_line": 29, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4de737a22136319928bb4736115028a5f6e9b7719bb55a0ebecf9f670ef77a47", + "line": 5447, + "resource_type": "aws_instance", + "resource_name": "example-instance-605", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example605]", + "search_line": 5447, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8f397a4f71b2c1eb4e8ef83a357f5cbfd45042b64868eb514acb99a7942c5ed6", + "line": 8939, + "resource_type": "aws_instance", + "resource_name": "example-instance-993", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example993]", + "search_line": 8939, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "589cc9fca7f62841c4d2bdef32cf37e5b017faf05d86c35321188634bae80309", + "line": 1730, + "resource_type": "aws_instance", + "resource_name": "example-instance-192", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example192]", + "search_line": 1730, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9ef972db122dba6731cb379618b0316466b4942a2acd139562eea4bb26ba0d77", + "line": 3665, + "resource_type": "aws_instance", + "resource_name": "example-instance-407", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example407]", + "search_line": 3665, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d817401283aada15c06ec0802ec911859d7cf20d38a7bbddf87eac6a174a16c0", + "line": 5249, + "resource_type": "aws_instance", + "resource_name": "example-instance-583", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example583]", + "search_line": 5249, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "30c72b6c9983a4a4a00c2d7b1667495db9440314e65dac4c05dcce42023e1a28", + "line": 7715, + "resource_type": "aws_instance", + "resource_name": "example-instance-857", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example857]", + "search_line": 7715, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "df858b5bb838e99a03972a3d3075e912c7df6ea60ab1f82ccb71385d2ffb8b18", + "line": 6437, + "resource_type": "aws_instance", + "resource_name": "example-instance-715", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example715]", + "search_line": 6437, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7ac69b04207df1af4db5d7df12abe439194114ca04efcaf8980c40ce4892ccad", + "line": 659, + "resource_type": "aws_instance", + "resource_name": "example-instance-73", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example73]", + "search_line": 659, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "56cb235e8bb4cf88fbf4ac6361c4db58206b51d770bb402ad9dc9ac83193bf61", + "line": 7355, + "resource_type": "aws_instance", + "resource_name": "example-instance-817", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example817]", + "search_line": 7355, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4f59d28ab62c3c4d0a7b4c6cc1e7a590e26db49f147c615e1d9f8d0029067994", + "line": 2945, + "resource_type": "aws_instance", + "resource_name": "example-instance-327", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example327]", + "search_line": 2945, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9aea64e6c99c53e08732014672bb9f8e859bc2f2b39897b3096042149cd1b2bb", + "line": 1406, + "resource_type": "aws_instance", + "resource_name": "example-instance-156", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example156]", + "search_line": 1406, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "82ad3353f8ee66c978e0497897ddbbb919e27f653088a23ccdb9cd4aa54e6be4", + "line": 5645, + "resource_type": "aws_instance", + "resource_name": "example-instance-627", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example627]", + "search_line": 5645, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "22c08faae56c7bb892b9fb5b2d2f8b9983d3e669bd1196e73aa2910d7ac648c1", + "line": 8273, + "resource_type": "aws_instance", + "resource_name": "example-instance-919", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example919]", + "search_line": 8273, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cc53948aafd864e137c31af7cfa684550d4ee7f3279eedd8ecf7dbd448c628e3", + "line": 4358, + "resource_type": "aws_instance", + "resource_name": "example-instance-484", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example484]", + "search_line": 4358, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ac308bc82894a9ff8ccfcb6b0e33f9e495333e662a35a001b7a2c320b90f9b3f", + "line": 4844, + "resource_type": "aws_instance", + "resource_name": "example-instance-538", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example538]", + "search_line": 4844, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6a733da21623232dbc4b79745f859019bb26d3e7b6bc3fb156dda0a76dda755a", + "line": 8174, + "resource_type": "aws_instance", + "resource_name": "example-instance-908", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example908]", + "search_line": 8174, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4dc945e251fc4fcb67b62dd68d23c924f96263ba04740513f27e8d2d7ac5c9d5", + "line": 2531, + "resource_type": "aws_instance", + "resource_name": "example-instance-281", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example281]", + "search_line": 2531, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "31f5b3a3b68a54e7d62d3096985340a7c69daa61da12c3ea6a9630a6817b9251", + "line": 4691, + "resource_type": "aws_instance", + "resource_name": "example-instance-521", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example521]", + "search_line": 4691, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "94141fb86c3a7989b0eee1ae2ca2968da8cb4a9fb6187ce237069e9eab1d71a8", + "line": 7283, + "resource_type": "aws_instance", + "resource_name": "example-instance-809", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example809]", + "search_line": 7283, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "16e7699f54c712669af3de665c07329bcc6a47dd88acc6b46959ebb9103a4bfd", + "line": 3962, + "resource_type": "aws_instance", + "resource_name": "example-instance-440", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example440]", + "search_line": 3962, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "99a1c6057f1df33797f0ae2f583d1d908c45ae1a6b4fd3ea99238598f1c57b64", + "line": 1334, + "resource_type": "aws_instance", + "resource_name": "example-instance-148", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example148]", + "search_line": 1334, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a2893bff34ee496467c68e4dd4a1116ab51c099ac166218b1545913d635431c3", + "line": 6797, + "resource_type": "aws_instance", + "resource_name": "example-instance-755", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example755]", + "search_line": 6797, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fa3e1a98e7fb68c36c4df55c15d04b50dec4d7db1baaa7ccb8ad0d67f89e3d56", + "line": 6230, + "resource_type": "aws_instance", + "resource_name": "example-instance-692", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example692]", + "search_line": 6230, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "60203e7c602279abbdc869512b6460306af5ce3b88d41c9b13a5f6986d6261c8", + "line": 6356, + "resource_type": "aws_instance", + "resource_name": "example-instance-706", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example706]", + "search_line": 6356, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "71a8d538a646063d3145e39a55b65d6fa0a5b2f714e22bbe2bf46a9834e9946c", + "line": 4034, + "resource_type": "aws_instance", + "resource_name": "example-instance-448", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example448]", + "search_line": 4034, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4f3733175e95b5b0ab4a28ae00c0070ec61d4639e048031fe9f169498a86ffd5", + "line": 1901, + "resource_type": "aws_instance", + "resource_name": "example-instance-211", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example211]", + "search_line": 1901, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3acfebe5c073a8e55e7e463815d176ea6b1b04ecefa7058494ff34bb7fb649bc", + "line": 6464, + "resource_type": "aws_instance", + "resource_name": "example-instance-718", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example718]", + "search_line": 6464, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7003c069eadcd9f0d504d617ff62d473cfdbfc6f3094d6fe3813af7554819ef0", + "line": 1433, + "resource_type": "aws_instance", + "resource_name": "example-instance-159", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example159]", + "search_line": 1433, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f8316fc6514a3f6b145a476cb19eca5f45e1860211f7d4a1e6567e45a0482bd3", + "line": 2036, + "resource_type": "aws_instance", + "resource_name": "example-instance-226", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example226]", + "search_line": 2036, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b36c1c8bb3e30f4028a8d08a1d2a87948663e8e66b617061365313cc81d5a17d", + "line": 7229, + "resource_type": "aws_instance", + "resource_name": "example-instance-803", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example803]", + "search_line": 7229, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "36d9f9dd527d73c81f0177b4da97bb3b3e37647c04687b0646301ca7a136759a", + "line": 614, + "resource_type": "aws_instance", + "resource_name": "example-instance-68", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example68]", + "search_line": 614, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "80c901e0bbb8a6b7d31ec191286954067bbf01d887fb3dd9be34a120134faa64", + "line": 443, + "resource_type": "aws_instance", + "resource_name": "example-instance-49", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example49]", + "search_line": 443, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d6ce20fca916a56c7c4e8c59e09323fcc327e38404678cfecc60bae02d182887", + "line": 8075, + "resource_type": "aws_instance", + "resource_name": "example-instance-897", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example897]", + "search_line": 8075, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fc492dfe7702c6eef0f462103a25cad4c08bf64300bd397233af04d27880ccfa", + "line": 6986, + "resource_type": "aws_instance", + "resource_name": "example-instance-776", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example776]", + "search_line": 6986, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cb18e1f55ec9bc42d31919a508c05036f0b684951cfa4b93349e09b8822478e6", + "line": 1181, + "resource_type": "aws_instance", + "resource_name": "example-instance-131", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example131]", + "search_line": 1181, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3b29eb742791e45de74e8d975a157f7e5e07e5631ff969973e3be8660e5b27fb", + "line": 5969, + "resource_type": "aws_instance", + "resource_name": "example-instance-663", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example663]", + "search_line": 5969, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "14e79c2f924447e0fdabf67afe00f268c75ac617db3004ca6ea82dfad201df56", + "line": 4709, + "resource_type": "aws_instance", + "resource_name": "example-instance-523", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example523]", + "search_line": 4709, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "be1e324bbe8770ae921cb3ea1495d823b505c727f18ed7c1f8b366049e38ed9d", + "line": 911, + "resource_type": "aws_instance", + "resource_name": "example-instance-101", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example101]", + "search_line": 911, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5d38907e2e16bd61d420b14109cde5023dc2447b4f3fa78f81d373c5fc54c1d4", + "line": 3467, + "resource_type": "aws_instance", + "resource_name": "example-instance-385", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example385]", + "search_line": 3467, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9628da6e2d99bc2209bd6bec08f4898837a3240526169610e6c421b0bff09c54", + "line": 7400, + "resource_type": "aws_instance", + "resource_name": "example-instance-822", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example822]", + "search_line": 7400, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "637ea49ef3da5e4ef576051e7823c097e0acc79f7585a4716b4a4b7a7c18c141", + "line": 5519, + "resource_type": "aws_instance", + "resource_name": "example-instance-613", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example613]", + "search_line": 5519, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9884635478c55fbd7667e87892ce8336d90d146ae2d85fb4bc2f9b17cac67cbd", + "line": 7877, + "resource_type": "aws_instance", + "resource_name": "example-instance-875", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example875]", + "search_line": 7877, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b7b9d4fcfd3ce869e2235a10419a439e39380821775289e46ee91bef8a1a0ad4", + "line": 8291, + "resource_type": "aws_instance", + "resource_name": "example-instance-921", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example921]", + "search_line": 8291, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "437c248ddbe26bcb3cc1831b4e3b852f9f13784dd6e06162c9f7bbb3bf1ad29a", + "line": 1775, + "resource_type": "aws_instance", + "resource_name": "example-instance-197", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example197]", + "search_line": 1775, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2dc3cdddb78bf220a2a39a854735cc7b568863a5b52aefbb3183c10b26f7cae1", + "line": 2684, + "resource_type": "aws_instance", + "resource_name": "example-instance-298", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example298]", + "search_line": 2684, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3408518fdfed76ef3a8379aab46b0ae613b346e7a798c0361332bf23d0d5f4db", + "line": 578, + "resource_type": "aws_instance", + "resource_name": "example-instance-64", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example64]", + "search_line": 578, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "91e13a878f332c90665203271a4c8609cc5d0c44163f74bd175897a0db73042b", + "line": 8156, + "resource_type": "aws_instance", + "resource_name": "example-instance-906", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example906]", + "search_line": 8156, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "178c8fca2edf66ea02ef154d4f5c3689c9571ea30255e139e90f8a2610c94a95", + "line": 1370, + "resource_type": "aws_instance", + "resource_name": "example-instance-152", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example152]", + "search_line": 1370, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b1c9c8e3c5567730120878e70a79565fdd64d19b868953b0ec31099cef279acb", + "line": 8588, + "resource_type": "aws_instance", + "resource_name": "example-instance-954", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example954]", + "search_line": 8588, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ff2319b763230f07dc0b0ab0a9884ab7d79f281adb990f6533ff8276f9b79c0e", + "line": 7472, + "resource_type": "aws_instance", + "resource_name": "example-instance-830", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example830]", + "search_line": 7472, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "90d945b89b26ac1a6b22de67bf11d203e37c7ea719fa2ce116c875df12d515c0", + "line": 6455, + "resource_type": "aws_instance", + "resource_name": "example-instance-717", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example717]", + "search_line": 6455, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e2162f2238ce1068d863332141d1edc99fefd9bad7f56f3ad81d9e0cff0495d9", + "line": 3791, + "resource_type": "aws_instance", + "resource_name": "example-instance-421", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example421]", + "search_line": 3791, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d156695ebfc2e22870992c62c2863dfb0d0ed8c5ce4ba0d966d2f12ad09677c5", + "line": 1163, + "resource_type": "aws_instance", + "resource_name": "example-instance-129", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example129]", + "search_line": 1163, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c6d8f5d58a33e90f0dc9fbe576bec5e12b8f21347d1b459c5b415af2c90bb272", + "line": 2621, + "resource_type": "aws_instance", + "resource_name": "example-instance-291", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example291]", + "search_line": 2621, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f994d407a72ac88d9854cd6af9ae5208d2b83989c2c9f0040d649004682dfe8a", + "line": 6518, + "resource_type": "aws_instance", + "resource_name": "example-instance-724", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example724]", + "search_line": 6518, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f7c6de63dd31e38a4c5c4a8ddcd2aff01896754b8331a70957a3d47e52e84c3e", + "line": 92, + "resource_type": "aws_instance", + "resource_name": "example-instance-10", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example10]", + "search_line": 92, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "73f0a2790519f15a5e41d8205a182a5da866f8db3983a95666c60c9a934738ae", + "line": 983, + "resource_type": "aws_instance", + "resource_name": "example-instance-109", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example109]", + "search_line": 983, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4bfcac5cfc9c048866417cc6d468844ad817bc61dba725c5aec68e72a41b6c23", + "line": 2054, + "resource_type": "aws_instance", + "resource_name": "example-instance-228", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example228]", + "search_line": 2054, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8f07c9f762914e8fa8fd713d015f26699a4d5a04595dd5617ea6ab847e250469", + "line": 3368, + "resource_type": "aws_instance", + "resource_name": "example-instance-374", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example374]", + "search_line": 3368, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9dccdb0b9aff851e80668cbd5da7e318efa7c2976af650cfd558da24d0e0ff20", + "line": 5087, + "resource_type": "aws_instance", + "resource_name": "example-instance-565", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example565]", + "search_line": 5087, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9026e15bc6af628b8c59c821a0ddea0b9457c3ff5157bc70e437eaa55166d535", + "line": 5330, + "resource_type": "aws_instance", + "resource_name": "example-instance-592", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example592]", + "search_line": 5330, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c781e8d48fc5eb55d7094bd2213b44097d394d1860481e54482ee2ac6d7d0a2c", + "line": 5483, + "resource_type": "aws_instance", + "resource_name": "example-instance-609", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example609]", + "search_line": 5483, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4273cd69bb05dc997e076ef409228f084f31049d821d971827f2060d58a648b7", + "line": 7652, + "resource_type": "aws_instance", + "resource_name": "example-instance-850", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example850]", + "search_line": 7652, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "24d785973b8cfd7b455ee3d55fc8452eeacc1742e0849964068cdf478cd14913", + "line": 236, + "resource_type": "aws_instance", + "resource_name": "example-instance-26", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example26]", + "search_line": 236, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cb1f1e31c18f830a03d6feea45dceaaa43ff325c56d57b07e826a2af18a0d729", + "line": 2414, + "resource_type": "aws_instance", + "resource_name": "example-instance-268", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example268]", + "search_line": 2414, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "20e7a15d1ef17b12669b1469b05ea4abe5bd0ae9abe1d15a5fa3c40d12c7006f", + "line": 2513, + "resource_type": "aws_instance", + "resource_name": "example-instance-279", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example279]", + "search_line": 2513, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dcf067ac0f92c53fb014262535223d89ad4864357a2d2333093ea20eeb246162", + "line": 4574, + "resource_type": "aws_instance", + "resource_name": "example-instance-508", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example508]", + "search_line": 4574, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9440c72589cba728bee308f669a43758fbec9af27304025740fdff08cebbe23f", + "line": 7445, + "resource_type": "aws_instance", + "resource_name": "example-instance-827", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example827]", + "search_line": 7445, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1ebe342b3a20055dfd3c73dc31ffe45bb5e2548c1c36a667b28d63a8b759ac33", + "line": 848, + "resource_type": "aws_instance", + "resource_name": "example-instance-94", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example94]", + "search_line": 848, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "55de0156df2a872a58e42254a1dc120af2c6d32b017171d57ef09755f8d4d21b", + "line": 2999, + "resource_type": "aws_instance", + "resource_name": "example-instance-333", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example333]", + "search_line": 2999, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9a024bb7dedd2447af31fd17b306bbd5a2ed83a4c946b91344e8d3531b963bbe", + "line": 4655, + "resource_type": "aws_instance", + "resource_name": "example-instance-517", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example517]", + "search_line": 4655, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9a13b347ef00fed02ca3c23d8a66423b9a1a6cca2f21b25d2b2e789778e7db81", + "line": 8840, + "resource_type": "aws_instance", + "resource_name": "example-instance-982", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example982]", + "search_line": 8840, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "91f261768af7b56645cda7488d870dfcde4d627b4c37b803a71c6a1235004c76", + "line": 2756, + "resource_type": "aws_instance", + "resource_name": "example-instance-306", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example306]", + "search_line": 2756, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "343b887452e40a22f9b6504aabe9125fcc4217ea9121abc31606618715743643", + "line": 758, + "resource_type": "aws_instance", + "resource_name": "example-instance-84", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example84]", + "search_line": 758, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b9eddee8445241f18b7be09446938abca1af3078246c78b43ebeadc516dfed8c", + "line": 1622, + "resource_type": "aws_instance", + "resource_name": "example-instance-180", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example180]", + "search_line": 1622, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "df4ca888f4c8a449edb9f7829fefbeb15131aa090181c7a0bf1925a9a4529c7b", + "line": 1964, + "resource_type": "aws_instance", + "resource_name": "example-instance-218", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example218]", + "search_line": 1964, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0ee14146b0571cfe77189a33cf7468caadfbf686cfb066f2d0342f029a32bfbf", + "line": 1154, + "resource_type": "aws_instance", + "resource_name": "example-instance-128", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example128]", + "search_line": 1154, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8c023bafa904e77f0333d3405eda0b1d1845fca47423c3a91a3f4c76eb2e3be1", + "line": 6815, + "resource_type": "aws_instance", + "resource_name": "example-instance-757", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example757]", + "search_line": 6815, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e888be2132db45dff8bfdf7fbb00385b36facb36d024508e4a813dc451187d70", + "line": 2855, + "resource_type": "aws_instance", + "resource_name": "example-instance-317", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example317]", + "search_line": 2855, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "60e1dec3f9ba405ed69247596335a4a8f44ffea3da40fc6b344fd3a034bd8d70", + "line": 461, + "resource_type": "aws_instance", + "resource_name": "example-instance-51", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example51]", + "search_line": 461, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6d425a418f74edc4eb5114a09ae5acc3a5a6de0cd3c369620ddd0d5066efb6a2", + "line": 6788, + "resource_type": "aws_instance", + "resource_name": "example-instance-754", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example754]", + "search_line": 6788, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b66298f01e0446ee13d364cc2fcb83fe8417572e4c972c302e94e5775a6b5207", + "line": 5186, + "resource_type": "aws_instance", + "resource_name": "example-instance-576", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example576]", + "search_line": 5186, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c714b32916acc3a011f9473703fca41e5076a16fe331e4761eace68c60278aa5", + "line": 7796, + "resource_type": "aws_instance", + "resource_name": "example-instance-866", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example866]", + "search_line": 7796, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9fbcc55cc50457741ab565ae9f9df9c296cb84861ec0d40e0d7f5d485162c649", + "line": 812, + "resource_type": "aws_instance", + "resource_name": "example-instance-90", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example90]", + "search_line": 812, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "75bf920d7190d3b1e30c96f00bb95c305ce98d49fd7374a2bfbeec7a9e62c185", + "line": 7211, + "resource_type": "aws_instance", + "resource_name": "example-instance-801", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example801]", + "search_line": 7211, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "872070a27c76593969fb155675ce8c2d9a2f4010c77d8997436617450cecbdbc", + "line": 6824, + "resource_type": "aws_instance", + "resource_name": "example-instance-758", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example758]", + "search_line": 6824, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "85935d83b7fd775e2ab11d9835864e31abf174290a5d128022d3d7ba3eb4a952", + "line": 2954, + "resource_type": "aws_instance", + "resource_name": "example-instance-328", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example328]", + "search_line": 2954, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "84e88bff9e48729264c5ea16faa76fdd081bdd3afe7060e7ce4c3c708e82d795", + "line": 7121, + "resource_type": "aws_instance", + "resource_name": "example-instance-791", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example791]", + "search_line": 7121, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "51fe6f285ca39561c48b6ed7f2dac49b7692668d3cb0255bfc8d42d42b7eda05", + "line": 8930, + "resource_type": "aws_instance", + "resource_name": "example-instance-992", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example992]", + "search_line": 8930, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b540135b93bb50d4cd49c497b621b0adc1675e84fa0250cc6c0d82f8ffafff95", + "line": 1208, + "resource_type": "aws_instance", + "resource_name": "example-instance-134", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example134]", + "search_line": 1208, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6b2b50e2452cd498421bd7ca36dfc83ea1b3222cb82b9ddfa4fb4947e60aef44", + "line": 128, + "resource_type": "aws_instance", + "resource_name": "example-instance-14", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example14]", + "search_line": 128, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "be2f827c7510c860a50833cb0ca09f039ae501fa931e9dd9e6ce9444a5b8bf1e", + "line": 3125, + "resource_type": "aws_instance", + "resource_name": "example-instance-347", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example347]", + "search_line": 3125, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "afd8a56996a7cfcef4d767364c3b303ac0a7b1f40d215ef6006436b8b7331689", + "line": 8012, + "resource_type": "aws_instance", + "resource_name": "example-instance-890", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example890]", + "search_line": 8012, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1cf4f9d876c15c1d91e534fc3971e15d1a0819268c8aab4923dab5e0637c7987", + "line": 227, + "resource_type": "aws_instance", + "resource_name": "example-instance-25", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example25]", + "search_line": 227, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "17bbb2d7a6d57cef7c6f7fbc1b7b378094dafd44193b0df24804702a18afaefe", + "line": 4070, + "resource_type": "aws_instance", + "resource_name": "example-instance-452", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example452]", + "search_line": 4070, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ca92692046f04795e0308c24a2638e91b4dbb5957ef70ced1073f59c966889e5", + "line": 3917, + "resource_type": "aws_instance", + "resource_name": "example-instance-435", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example435]", + "search_line": 3917, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d643f4deb763911c8d6074f47a6fb9f4239946038725deb7e8992ee50efb7386", + "line": 407, + "resource_type": "aws_instance", + "resource_name": "example-instance-45", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example45]", + "search_line": 407, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8132efad9dd52fe4a06b58147519a02c1c727c741100b977d5670cf5b29e0a22", + "line": 3404, + "resource_type": "aws_instance", + "resource_name": "example-instance-378", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example378]", + "search_line": 3404, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cce4bcfdd2bb2a174daf5267f56a85922e99639aaf0f1177989b59b14c28942e", + "line": 3602, + "resource_type": "aws_instance", + "resource_name": "example-instance-400", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example400]", + "search_line": 3602, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e8695a3f1308576b315dcc1bfe528e6d0d8fb6d489922f944c1e1fa9503043f3", + "line": 3656, + "resource_type": "aws_instance", + "resource_name": "example-instance-406", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example406]", + "search_line": 3656, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b27c22ee57113931b67a24901b77be524dc931ec0ba0067fd0ccfd1d557755d7", + "line": 8597, + "resource_type": "aws_instance", + "resource_name": "example-instance-955", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example955]", + "search_line": 8597, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dafd8637574d7c91ee9a42e144315a617d5487c7d5f812b9b00e454917c99c65", + "line": 1586, + "resource_type": "aws_instance", + "resource_name": "example-instance-176", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example176]", + "search_line": 1586, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7c2ef82c78d1679fb11db7d933b78d0777dcf059150c48507502ea3f01cb9deb", + "line": 2081, + "resource_type": "aws_instance", + "resource_name": "example-instance-231", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example231]", + "search_line": 2081, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1f6181d93b160ddd2a6f6ba58a552042a606540d46b839f22f4e1b5a74d63a5a", + "line": 5933, + "resource_type": "aws_instance", + "resource_name": "example-instance-659", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example659]", + "search_line": 5933, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "103c330ca358a1de2742942a7b8813ac7841d0813c7f2303b051724f53cd11b8", + "line": 8633, + "resource_type": "aws_instance", + "resource_name": "example-instance-959", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example959]", + "search_line": 8633, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9ac9d430b276ae61e5989c1e2ec4641518db1004173f42062fd2ad60d468d01b", + "line": 5159, + "resource_type": "aws_instance", + "resource_name": "example-instance-573", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example573]", + "search_line": 5159, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "192cd8ec606cbc4b388214a3a3062054de8d956955f62e5206eed599f2caeb97", + "line": 6653, + "resource_type": "aws_instance", + "resource_name": "example-instance-739", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example739]", + "search_line": 6653, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b992f20d0f2107e091b3b8492999bdc87ae61f8769da594ff26742c7b4a0d9f2", + "line": 1946, + "resource_type": "aws_instance", + "resource_name": "example-instance-216", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example216]", + "search_line": 1946, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e7e77328a433424d3812bd3124c80678728b5c8eaad3fc6824c63a59cac6e32a", + "line": 6203, + "resource_type": "aws_instance", + "resource_name": "example-instance-689", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example689]", + "search_line": 6203, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2aa9b3d8a393dd0b8e19343e37b4debbf03945c77821007fb026e0e738045ac2", + "line": 1694, + "resource_type": "aws_instance", + "resource_name": "example-instance-188", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example188]", + "search_line": 1694, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "38e455c7f3f92178a18aa0c0f620fb69d86958baac782319a8975370d815c357", + "line": 5465, + "resource_type": "aws_instance", + "resource_name": "example-instance-607", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example607]", + "search_line": 5465, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "212dd53cc0d6f751091c292995bfb35e6ca13d4c91477c4507a38d4945d4d0ff", + "line": 6212, + "resource_type": "aws_instance", + "resource_name": "example-instance-690", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example690]", + "search_line": 6212, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "93ce36a22eef4d54b9fede352da29a743b238385bfe89b705663507dd0a1bf52", + "line": 6995, + "resource_type": "aws_instance", + "resource_name": "example-instance-777", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example777]", + "search_line": 6995, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "05d47b4ab128d1e3adcedb150360e6b5bff2332bb7cfda1e58edd53d15113c52", + "line": 3755, + "resource_type": "aws_instance", + "resource_name": "example-instance-417", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example417]", + "search_line": 3755, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7a68022eea6fec344977a490c87cc749b5d93befefae634ab5cc70cc2e7ba7c3", + "line": 4439, + "resource_type": "aws_instance", + "resource_name": "example-instance-493", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example493]", + "search_line": 4439, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6c85e3353a0c67494d9193f75a80201a4222c49118743288cbb4f2aaab145645", + "line": 8624, + "resource_type": "aws_instance", + "resource_name": "example-instance-958", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example958]", + "search_line": 8624, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2e837dc1e7df7c1bca26c1cad79fa2923e3698dda46d406f7d68e8e8a91b6700", + "line": 7184, + "resource_type": "aws_instance", + "resource_name": "example-instance-798", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example798]", + "search_line": 7184, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ae3c47988b2a716ba32c5ff45aae0561c5a6e5e02b2f192d38ca8276e5b5047a", + "line": 3161, + "resource_type": "aws_instance", + "resource_name": "example-instance-351", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example351]", + "search_line": 3161, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "37e924dafe4682808fe7556c92be14ab2e7e973e973b17734b5c9a2777740af9", + "line": 8282, + "resource_type": "aws_instance", + "resource_name": "example-instance-920", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example920]", + "search_line": 8282, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1d71c6ffcc63324ce6b473f0d3e5f4eb7a30bcafc6b20850e5d8c8bec64f666d", + "line": 8813, + "resource_type": "aws_instance", + "resource_name": "example-instance-979", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example979]", + "search_line": 8813, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "36339135f84ebf4bcb328ae07fb6c9e4b6a546d5a114699f2eb615f0c4262f50", + "line": 3377, + "resource_type": "aws_instance", + "resource_name": "example-instance-375", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example375]", + "search_line": 3377, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6bc3c01a3de6847850e8b23ea9c52b076c36817ea6b4e3ef46b89da4ab95a51b", + "line": 7670, + "resource_type": "aws_instance", + "resource_name": "example-instance-852", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example852]", + "search_line": 7670, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "93402e996a28db298fbaf72bf8905905a70cc67b379e0f76c0bb9162bf8732de", + "line": 5177, + "resource_type": "aws_instance", + "resource_name": "example-instance-575", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example575]", + "search_line": 5177, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8d0202e1d581dc56ec0a66a2ff607245296c6767296c84c3784c12ed4e78d784", + "line": 5510, + "resource_type": "aws_instance", + "resource_name": "example-instance-612", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example612]", + "search_line": 5510, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c1d5226ace6c2dad4b13bd6eb456cf1a39186cb15008f1d0329fbcc3f85047cb", + "line": 8543, + "resource_type": "aws_instance", + "resource_name": "example-instance-949", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example949]", + "search_line": 8543, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "69dd5723e13e397a8506a1dd49139bbbe0d36ccb40f1fcb1f1a78ce2baf7d394", + "line": 7886, + "resource_type": "aws_instance", + "resource_name": "example-instance-876", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example876]", + "search_line": 7886, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "21e04bdeb56ebbeb6264f503b10156459e25a5a575d414c2757274a38a6ace45", + "line": 8372, + "resource_type": "aws_instance", + "resource_name": "example-instance-930", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example930]", + "search_line": 8372, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b5d1a531fb86091d516eb6ffc11ab0672b611500bc3524e6a4d2d384b2eef39b", + "line": 5744, + "resource_type": "aws_instance", + "resource_name": "example-instance-638", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example638]", + "search_line": 5744, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7a6a49b875bdb2ec1b1952009d8fdf39ee3c15e624a008f59ece0dcc32a95399", + "line": 6365, + "resource_type": "aws_instance", + "resource_name": "example-instance-707", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example707]", + "search_line": 6365, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a59ddc5658bc44698a59d8e7f2f03d6279cb1086306ce4742b449c93c03e25f7", + "line": 8345, + "resource_type": "aws_instance", + "resource_name": "example-instance-927", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example927]", + "search_line": 8345, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ae2736eada8d36d515b396817f5ab46127c51d9095cca88a513b39174022f7f0", + "line": 2279, + "resource_type": "aws_instance", + "resource_name": "example-instance-253", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example253]", + "search_line": 2279, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c1504abf447582d1252d3d817122b55926fb86e8688343a13e718bf2a2a8f14d", + "line": 4583, + "resource_type": "aws_instance", + "resource_name": "example-instance-509", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example509]", + "search_line": 4583, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a4ac9428fa39d3415a4c3761b5a5dd215cf606e06bf4e9eb383e4d0bcce2909b", + "line": 5195, + "resource_type": "aws_instance", + "resource_name": "example-instance-577", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example577]", + "search_line": 5195, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "861120708c066f264ba6ff229a6eb4cc0d3b71ff8749e07d6116cb2b3f086456", + "line": 6509, + "resource_type": "aws_instance", + "resource_name": "example-instance-723", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example723]", + "search_line": 6509, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9b1552ae1f64b94dc11717d4115e05b4e68006627e69eb23ca83bd7e6d192b30", + "line": 3107, + "resource_type": "aws_instance", + "resource_name": "example-instance-345", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example345]", + "search_line": 3107, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0c28756b05f5c96db45d7fd86afccab7ae018c4ce4fc07f1ec72a3eb127582e4", + "line": 335, + "resource_type": "aws_instance", + "resource_name": "example-instance-37", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example37]", + "search_line": 335, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3ff3ee4b86be6a074d35b49fd5745aff8f4b741e41b62f4871b7abd716b504a1", + "line": 3998, + "resource_type": "aws_instance", + "resource_name": "example-instance-444", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example444]", + "search_line": 3998, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7205abacaf1e4db56ae9c8da0677cf6c53c9d299bebc60c800f447ce66977f03", + "line": 3485, + "resource_type": "aws_instance", + "resource_name": "example-instance-387", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example387]", + "search_line": 3485, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "82df69956daac9e422ef9af9d4c9ea3238b18fd7b41e3e7f5d4ea36c6bef7f0a", + "line": 4493, + "resource_type": "aws_instance", + "resource_name": "example-instance-499", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example499]", + "search_line": 4493, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2e40607b90136b79813303b90bd9ff6a7b2f405e6e8ff3a80486390aa082d635", + "line": 515, + "resource_type": "aws_instance", + "resource_name": "example-instance-57", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example57]", + "search_line": 515, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0bd856c4d6f82652eac3edfbc46ff9edf61571c1a4b815b8c2484e3d553eee76", + "line": 7571, + "resource_type": "aws_instance", + "resource_name": "example-instance-841", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example841]", + "search_line": 7571, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "76f1effd8fe9ea826cf86f5164d7e136bb5b4c0939fa6d9bd5154fb188be3f5f", + "line": 7688, + "resource_type": "aws_instance", + "resource_name": "example-instance-854", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example854]", + "search_line": 7688, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9cc4275153b6621affdfad632159f37726ca48ac868e78f14614c59647629352", + "line": 605, + "resource_type": "aws_instance", + "resource_name": "example-instance-67", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example67]", + "search_line": 605, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ecff228539f8e8a34aa2e878cd25e304d6d4d3f972678fb6685458fffabe717f", + "line": 5897, + "resource_type": "aws_instance", + "resource_name": "example-instance-655", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example655]", + "search_line": 5897, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d7d538458b5766f39e6fbe4be04b8e3511c57548dd97caffabacf355751f9826", + "line": 6833, + "resource_type": "aws_instance", + "resource_name": "example-instance-759", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example759]", + "search_line": 6833, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4d20e01b5c80eeed0b6fe9e14cc4582269f6e7221f0c135d4009b6a70f7d347d", + "line": 2900, + "resource_type": "aws_instance", + "resource_name": "example-instance-322", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example322]", + "search_line": 2900, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5bccca5ce3e496e50069bc7a75fab82a95067a2394f76c91a8089de62bc4e8c0", + "line": 938, + "resource_type": "aws_instance", + "resource_name": "example-instance-104", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example104]", + "search_line": 938, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f265bdab8db25e4b353dd506e8dc9cc9aac1394d5311a152a78b09137053701b", + "line": 1829, + "resource_type": "aws_instance", + "resource_name": "example-instance-203", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example203]", + "search_line": 1829, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "342435496ec00b9e7eb30b994c8e05fad586291148b5b5ce2bd42be7e4521b2d", + "line": 389, + "resource_type": "aws_instance", + "resource_name": "example-instance-43", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example43]", + "search_line": 389, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6e3fa61d85d80d5641241c99e0675bb433665e5379c6278c2328b19a4b0776af", + "line": 4232, + "resource_type": "aws_instance", + "resource_name": "example-instance-470", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example470]", + "search_line": 4232, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5dab017bb6740191013f5cf78514cef778c86dc50149175b8b8894b9694e3f40", + "line": 7058, + "resource_type": "aws_instance", + "resource_name": "example-instance-784", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example784]", + "search_line": 7058, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "517dc8991e4d3eb58c07016a1b59e28863c018ff18e10b65a0352fce59902a1b", + "line": 3008, + "resource_type": "aws_instance", + "resource_name": "example-instance-334", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example334]", + "search_line": 3008, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "616f91db3c6d3c2357fc4f23d44baa20dcd7dc8f26542b80f857ae2781bc0e5f", + "line": 452, + "resource_type": "aws_instance", + "resource_name": "example-instance-50", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example50]", + "search_line": 452, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "af99df47a483b13c93ce418bf07e663e41796681bb4927081fb9053747f4fb0c", + "line": 7697, + "resource_type": "aws_instance", + "resource_name": "example-instance-855", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example855]", + "search_line": 7697, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1aa04914b27953c79f22c176a5cd3b2f1138f9a02b61f7c84aac27f98290bc4e", + "line": 8975, + "resource_type": "aws_instance", + "resource_name": "example-instance-997", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example997]", + "search_line": 8975, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "079fe8e157e560d293fd91673708fef7e03e43795f54ecba1c8b64978aabf057", + "line": 1145, + "resource_type": "aws_instance", + "resource_name": "example-instance-127", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example127]", + "search_line": 1145, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "59183ac1809c774068337d78995b836b4777a3fa65916314461b781417c79c0d", + "line": 4664, + "resource_type": "aws_instance", + "resource_name": "example-instance-518", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example518]", + "search_line": 4664, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "263dfe843dfe404fd881e6501a5478e7007fb75306e7bac55232ac21e4dcba08", + "line": 1910, + "resource_type": "aws_instance", + "resource_name": "example-instance-212", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example212]", + "search_line": 1910, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8eee2d74be66813500217d077ddcbc8ea75fa1566988c67f47952b028ffc614f", + "line": 2234, + "resource_type": "aws_instance", + "resource_name": "example-instance-248", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example248]", + "search_line": 2234, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "540e4bcf35c78c1380d010b5f8020fcd8fbdec65d4c12410f20ae070185074b1", + "line": 263, + "resource_type": "aws_instance", + "resource_name": "example-instance-29", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example29]", + "search_line": 263, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b72f1b7f8b8c3981d9b6344d0a48227e5730cf3052c6a64ece90179304c66943", + "line": 7427, + "resource_type": "aws_instance", + "resource_name": "example-instance-825", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example825]", + "search_line": 7427, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a8affc61da362e0d3e2e5404d53026eeed35d0219ea749cc9a529166c9096eec", + "line": 4826, + "resource_type": "aws_instance", + "resource_name": "example-instance-536", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example536]", + "search_line": 4826, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "67610585c3327f36c55ad4331d4ec545af9e010059f1d71d903db3b457fece5a", + "line": 5051, + "resource_type": "aws_instance", + "resource_name": "example-instance-561", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example561]", + "search_line": 5051, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9c742bfb0d69b2da69c4171e27c5f4c4591fe4c9ca21861154d63cc9d872548a", + "line": 6392, + "resource_type": "aws_instance", + "resource_name": "example-instance-710", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example710]", + "search_line": 6392, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b7e07464d363953a58873017c3d756dcf0a840dadf69473386508f4bd85c03b6", + "line": 7328, + "resource_type": "aws_instance", + "resource_name": "example-instance-814", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example814]", + "search_line": 7328, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8cdd2b7f3b4676478dcf7ebb69a4eb45d0a622d9b587d98f1a699dc8c72d76ee", + "line": 704, + "resource_type": "aws_instance", + "resource_name": "example-instance-78", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example78]", + "search_line": 704, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5e42b7c88a1796fff3781308a8bfb3a66586c0dddb22eeee24af0d95250ecee1", + "line": 7130, + "resource_type": "aws_instance", + "resource_name": "example-instance-792", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example792]", + "search_line": 7130, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3265bd68613d9258f1b0227febec813b7ab0580452bf5e0b0ad5ab2f441311c4", + "line": 5699, + "resource_type": "aws_instance", + "resource_name": "example-instance-633", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example633]", + "search_line": 5699, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "03671976fb6290209eb8b9ba064a3d502dfa79ee82a45d08d01fcb557ee162be", + "line": 7463, + "resource_type": "aws_instance", + "resource_name": "example-instance-829", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example829]", + "search_line": 7463, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e7334a34415875e736c5ad3088a6a60fe41b3f6ce5d0ad9e95bf7bebfb5e7e01", + "line": 1496, + "resource_type": "aws_instance", + "resource_name": "example-instance-166", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example166]", + "search_line": 1496, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2d686a2c00fbd4b812f27da38ea18a4eb15751d9ae6138024d0f5ec133b1b620", + "line": 1793, + "resource_type": "aws_instance", + "resource_name": "example-instance-199", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example199]", + "search_line": 1793, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "601c43f2530400c36b51bb39110ac702c1f04ffebd51cc43ca4b736e17964a80", + "line": 398, + "resource_type": "aws_instance", + "resource_name": "example-instance-44", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example44]", + "search_line": 398, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f8ad2adac259009d55741d5bcaeac40bb57ec58528acaabad6eff822b88fe497", + "line": 6905, + "resource_type": "aws_instance", + "resource_name": "example-instance-767", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example767]", + "search_line": 6905, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3ef9dffe0baac1efb256fb2b4a10484fd70ae9570fe9da1a6994e4f1c405153d", + "line": 4898, + "resource_type": "aws_instance", + "resource_name": "example-instance-544", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example544]", + "search_line": 4898, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "076aac9ff07ba37b3abb12c50b16e8aa7e4ac9e0f9234a9d2a2284ed402de412", + "line": 2027, + "resource_type": "aws_instance", + "resource_name": "example-instance-225", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example225]", + "search_line": 2027, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "11b2b734e0e8538870d8d787616211b15bba129e4f51098ce7953f35be97864f", + "line": 380, + "resource_type": "aws_instance", + "resource_name": "example-instance-42", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example42]", + "search_line": 380, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "981892b7bbd71f887a85508d476d91df355a38808902d1616aa3fa89bf47bffa", + "line": 4043, + "resource_type": "aws_instance", + "resource_name": "example-instance-449", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example449]", + "search_line": 4043, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3a83a817ecc21f3e399a5c15c59830531ad8f0882fdded3d8b87d3ece62f83ac", + "line": 1280, + "resource_type": "aws_instance", + "resource_name": "example-instance-142", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example142]", + "search_line": 1280, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4c83b50c8e97e01f2051d8f551bc939bdbe73034dd46df69e0f6f05bac3e54a1", + "line": 5438, + "resource_type": "aws_instance", + "resource_name": "example-instance-604", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example604]", + "search_line": 5438, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3a262e5812442fba106b1a7dcd031a19be34896a28c3cf9fafc632a2344df144", + "line": 6977, + "resource_type": "aws_instance", + "resource_name": "example-instance-775", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example775]", + "search_line": 6977, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "68941b5f799424f4cf286b42b67fe170e0348b5f33f1cef5f1bcaf7560f1f6ab", + "line": 7346, + "resource_type": "aws_instance", + "resource_name": "example-instance-816", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example816]", + "search_line": 7346, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1e54198da997be50a208da3157b51d2ce60ff271428107f5983d18c2dbf2d0b4", + "line": 8768, + "resource_type": "aws_instance", + "resource_name": "example-instance-974", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example974]", + "search_line": 8768, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "83f2895ca2160992146d6d9761be80b50709a1712c8d2f822f4a15b4e2acc13c", + "line": 8570, + "resource_type": "aws_instance", + "resource_name": "example-instance-952", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example952]", + "search_line": 8570, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5c4cdaab6198130fd3a8311eea71ded3291ec78f73b085ba4249affa0f7e2bb5", + "line": 155, + "resource_type": "aws_instance", + "resource_name": "example-instance-17", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example17]", + "search_line": 155, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cb0e688735e53bef2e0e23ee3d66b47e7ab71f09d34caaf7272e84660618c246", + "line": 8471, + "resource_type": "aws_instance", + "resource_name": "example-instance-941", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example941]", + "search_line": 8471, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "45a3eb43e8c0a97473d03b756e8dd54a10b6f5f514d2555e86cfc8905850565d", + "line": 3143, + "resource_type": "aws_instance", + "resource_name": "example-instance-349", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example349]", + "search_line": 3143, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "983ef00b864102853e58ec184721ef95453db6dec596e7ce63b3108dbe28af8c", + "line": 1487, + "resource_type": "aws_instance", + "resource_name": "example-instance-165", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example165]", + "search_line": 1487, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2217d344c8d17bd99a41b0c6959a131c49e7154826abe16f255672111af44769", + "line": 7148, + "resource_type": "aws_instance", + "resource_name": "example-instance-794", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example794]", + "search_line": 7148, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3161cd0480edf3c45747363e233edd113eace8878310ff357bf3f1a7bea95230", + "line": 2468, + "resource_type": "aws_instance", + "resource_name": "example-instance-274", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example274]", + "search_line": 2468, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1e4f6f953902e02fe2e145036cc187f0b0aeb560d1ae24a768c34c04c88f1d09", + "line": 5312, + "resource_type": "aws_instance", + "resource_name": "example-instance-590", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example590]", + "search_line": 5312, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fbd0dea8892d7e6e443943936bb5c8001da41f8a080a2ac0b794c76baca8bf64", + "line": 2711, + "resource_type": "aws_instance", + "resource_name": "example-instance-301", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example301]", + "search_line": 2711, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "66575726e5043fa72bc7d600593715e89180ff1676c13315a044dade8e9c22a0", + "line": 695, + "resource_type": "aws_instance", + "resource_name": "example-instance-77", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example77]", + "search_line": 695, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a158f0140a14dbdad8d9d05f4fbb0c5aaa12ce69d195e7244bc94dd92341e36e", + "line": 1118, + "resource_type": "aws_instance", + "resource_name": "example-instance-124", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example124]", + "search_line": 1118, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3c4b6e209d75368c63a8a00aef1363140eb8bf0c9781a4c2d7866a6231408baf", + "line": 3170, + "resource_type": "aws_instance", + "resource_name": "example-instance-352", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example352]", + "search_line": 3170, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "99ac015694fd0f2a3737314f44fe6a6658ff43f58b20e17545a54e5d077206bb", + "line": 8237, + "resource_type": "aws_instance", + "resource_name": "example-instance-915", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example915]", + "search_line": 8237, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2e66d04d707b3fa64c310d996601a45d678668f5c97839eb744b3f049a0ee487", + "line": 8921, + "resource_type": "aws_instance", + "resource_name": "example-instance-991", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example991]", + "search_line": 8921, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "65e6c2a558387585be6fb7dda76b0521a7607df17a6e0bb39a3ad8c48b05c49e", + "line": 8948, + "resource_type": "aws_instance", + "resource_name": "example-instance-994", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example994]", + "search_line": 8948, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "baf8afa5448d3370ef5ffa6f2707e0338e4c1638d4fdb16a13c2f89ae1a9f781", + "line": 2207, + "resource_type": "aws_instance", + "resource_name": "example-instance-245", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example245]", + "search_line": 2207, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8c8fdc013c9126f72a8af92885f40378c310bb47a95878cc1f29d587f26f090b", + "line": 1856, + "resource_type": "aws_instance", + "resource_name": "example-instance-206", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example206]", + "search_line": 1856, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3bd60dd7754c22216dafd7c3908d76d03350211f16dfffe38bffe63d4154f6b4", + "line": 416, + "resource_type": "aws_instance", + "resource_name": "example-instance-46", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example46]", + "search_line": 416, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8df1e2c679eaeb54bd0cb8d46fe344ba3c3338221172cc50d362c2be0b873177", + "line": 3890, + "resource_type": "aws_instance", + "resource_name": "example-instance-432", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example432]", + "search_line": 3890, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7b2cdd086f741a325bf31674b8b6f2e3fd1df141006fd501cb1e6e78bf55a6bd", + "line": 344, + "resource_type": "aws_instance", + "resource_name": "example-instance-38", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example38]", + "search_line": 344, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3d3cca136e63c465e467bfa5301796bb1be0a927fa88a8f3323750d68bda7cb3", + "line": 1766, + "resource_type": "aws_instance", + "resource_name": "example-instance-196", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example196]", + "search_line": 1766, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8916239bc944a22586bd36bce586367b63000169bc0292ff2ca7481a15d1bbe4", + "line": 1478, + "resource_type": "aws_instance", + "resource_name": "example-instance-164", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example164]", + "search_line": 1478, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "43c620f5fd0614bdbf17ae9db3f7864ab4ea0337e4e877ccbc8f089f7c578cd3", + "line": 1865, + "resource_type": "aws_instance", + "resource_name": "example-instance-207", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example207]", + "search_line": 1865, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "662c3c6210dc91f4d24feb16bb19a0aadba6028983c9889ce8656f4fa2ca7292", + "line": 5546, + "resource_type": "aws_instance", + "resource_name": "example-instance-616", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example616]", + "search_line": 5546, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f1f82da219b3a78dbabfcde853e4b1061a2c8c2193e3e9b46201819232f6031e", + "line": 1721, + "resource_type": "aws_instance", + "resource_name": "example-instance-191", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example191]", + "search_line": 1721, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a994a93f8da5208948658dd6fd40aa74eb2ff57fad415c30bb1c9aa82cf0fb29", + "line": 3539, + "resource_type": "aws_instance", + "resource_name": "example-instance-393", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example393]", + "search_line": 3539, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9370efaf8f3a378e3e5b8298449a7df13765d2ae783b63aa53b00cf964cd09f5", + "line": 4142, + "resource_type": "aws_instance", + "resource_name": "example-instance-460", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example460]", + "search_line": 4142, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "25f929bdf7b196581f187db0b9a4bffc5d47a6e20c67e62eb1bd509a474a325f", + "line": 4727, + "resource_type": "aws_instance", + "resource_name": "example-instance-525", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example525]", + "search_line": 4727, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8cf8b20e5e11856909ac9efe2762bf7dcff0cf1932b49aeb90e3e04544b9660c", + "line": 740, + "resource_type": "aws_instance", + "resource_name": "example-instance-82", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example82]", + "search_line": 740, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f474129f8b30f97b9ca3425ae35d592bb20d19db243274d9cfd06aac0b82d6c6", + "line": 6887, + "resource_type": "aws_instance", + "resource_name": "example-instance-765", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example765]", + "search_line": 6887, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dbd932b5b8f00e83bee797428f234d06ae99d222b6317160b951ea6c14c2c4cf", + "line": 8084, + "resource_type": "aws_instance", + "resource_name": "example-instance-898", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example898]", + "search_line": 8084, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f97e8c25d1f12d0f9d1c8ce971abbc4f4b978f8725a3c17c93f1fb93bdb1f90e", + "line": 7562, + "resource_type": "aws_instance", + "resource_name": "example-instance-840", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example840]", + "search_line": 7562, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9a908c72e2d9a73786492e433e2987474eba3811165daff6d5d9ebec1d0f0bf5", + "line": 8435, + "resource_type": "aws_instance", + "resource_name": "example-instance-937", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example937]", + "search_line": 8435, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e3f613728cefb43c18cc55259823fbb8e8eabe4cdb4525217a974b49ed663ec5", + "line": 2306, + "resource_type": "aws_instance", + "resource_name": "example-instance-256", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example256]", + "search_line": 2306, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fc3fd3bbd0d224c82161c11e6bf4601b55c6a66ef6cf542f69c69c7ea553a970", + "line": 6554, + "resource_type": "aws_instance", + "resource_name": "example-instance-728", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example728]", + "search_line": 6554, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dcd1e908343fed582317a5edf0b0968d18a709294e9012b68495b0587b6228f3", + "line": 8723, + "resource_type": "aws_instance", + "resource_name": "example-instance-969", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example969]", + "search_line": 8723, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f83524288e5a6a914160a1194f0aca9214bfb2344cc36b71e85c58f6f524b98f", + "line": 38, + "resource_type": "aws_instance", + "resource_name": "example-instance-4", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example4]", + "search_line": 38, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f5b80bc8492938140e5bdfd1316075e863cab65300e54e4c2d5ff5410cb47a91", + "line": 4943, + "resource_type": "aws_instance", + "resource_name": "example-instance-549", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example549]", + "search_line": 4943, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e85dd8bae354b1ea39782f376f6ddf70979f29890e38264da830d91872758759", + "line": 4682, + "resource_type": "aws_instance", + "resource_name": "example-instance-520", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example520]", + "search_line": 4682, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1e2f7daa666cec3bffcd42f2cdecd732c06666b3cd402282800c682e2d847960", + "line": 1505, + "resource_type": "aws_instance", + "resource_name": "example-instance-167", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example167]", + "search_line": 1505, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ee774d54f60d0dc41f9bf0816a2e43682f0622779ad4fa791e14dc4339c83f0d", + "line": 839, + "resource_type": "aws_instance", + "resource_name": "example-instance-93", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example93]", + "search_line": 839, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4fa998bf65495399d2b092583e28a2a63aa6effb15ad2560bea02debf7a58512", + "line": 4367, + "resource_type": "aws_instance", + "resource_name": "example-instance-485", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example485]", + "search_line": 4367, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "462ae985c79baa9efa7a223008f83ee1d54de1fce26fc529ed88fed1679eb8b4", + "line": 5906, + "resource_type": "aws_instance", + "resource_name": "example-instance-656", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example656]", + "search_line": 5906, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "26ebcad64fbd3947c5cae330f12ea707901d8cc02c32e73a19fd206d03503001", + "line": 7139, + "resource_type": "aws_instance", + "resource_name": "example-instance-793", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example793]", + "search_line": 7139, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d1549ce7601bbe3dad46cf83b29500cb05285d8ac376afca9e25a85afd768b2e", + "line": 1550, + "resource_type": "aws_instance", + "resource_name": "example-instance-172", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example172]", + "search_line": 1550, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f374ae074e1cfcbc84360057b4237b21f9974545ab9d9309832c26727edd775d", + "line": 7103, + "resource_type": "aws_instance", + "resource_name": "example-instance-789", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example789]", + "search_line": 7103, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0659b14ac37aee6c7a8e1039104565f993d76d396797ee488a55a41eca613f17", + "line": 1541, + "resource_type": "aws_instance", + "resource_name": "example-instance-171", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example171]", + "search_line": 1541, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f22524404c9a5bb0ac5b2fa9bfa5876821c354db7a6e877898b66d57c095455d", + "line": 3395, + "resource_type": "aws_instance", + "resource_name": "example-instance-377", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example377]", + "search_line": 3395, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f4323122f25ba432d42a88b62fe2f91ee44704ce032c8418e24c97cd12345996", + "line": 5276, + "resource_type": "aws_instance", + "resource_name": "example-instance-586", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example586]", + "search_line": 5276, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e75c22b763c3b446bcd421f46764706021ed5b0c65924e5dd9315a150e5f4e7f", + "line": 8003, + "resource_type": "aws_instance", + "resource_name": "example-instance-889", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example889]", + "search_line": 8003, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "77e16247ab870bec07c8505e876543ecf62aa21f1b1af98aff81caf2c470bcd6", + "line": 7022, + "resource_type": "aws_instance", + "resource_name": "example-instance-780", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example780]", + "search_line": 7022, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d96232cdca8761bdfe0e870f752d07d108b7d90048903ffe594e29fb344fbc10", + "line": 5213, + "resource_type": "aws_instance", + "resource_name": "example-instance-579", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example579]", + "search_line": 5213, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "51986454e66bcd8f2b8450cf154463311a2414512931870fa2c360c457453ac0", + "line": 5321, + "resource_type": "aws_instance", + "resource_name": "example-instance-591", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example591]", + "search_line": 5321, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a7d790f8f8eb7d939febd9e4ae844637b7f317176e2d83e365488a05a9fb70b6", + "line": 281, + "resource_type": "aws_instance", + "resource_name": "example-instance-31", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example31]", + "search_line": 281, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7d5110f9457a39508291c9c328f4e5d155203d1286ec64b4cc9fd567e7476c63", + "line": 8417, + "resource_type": "aws_instance", + "resource_name": "example-instance-935", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example935]", + "search_line": 8417, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "289400dbe0b9f199601fe4988ef91615e01599be0d6de596ff4ec533c99286af", + "line": 1532, + "resource_type": "aws_instance", + "resource_name": "example-instance-170", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example170]", + "search_line": 1532, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ace4f7af792e214950775c1b715bae56b1ae43613b00618ecbeab7b13945f26d", + "line": 1613, + "resource_type": "aws_instance", + "resource_name": "example-instance-179", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example179]", + "search_line": 1613, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3112f44e7ccb5be8a97b9ada9ff84a556f0f26925684a4a1e5cc656c837327f0", + "line": 2144, + "resource_type": "aws_instance", + "resource_name": "example-instance-238", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example238]", + "search_line": 2144, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fb28a54d7c56f8dda2dab8ab6a6429afee44496c6105611b7cd4de59d60e5853", + "line": 4907, + "resource_type": "aws_instance", + "resource_name": "example-instance-545", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example545]", + "search_line": 4907, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1c1afb9d695001e7411d98acc348ec1b857210f38e29aa96b8cecc39a32ccee6", + "line": 7859, + "resource_type": "aws_instance", + "resource_name": "example-instance-873", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example873]", + "search_line": 7859, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fc7c2f6a406ab93830909e236daa4a874793cb80e6e1db27a44c97e26fbdbc04", + "line": 5942, + "resource_type": "aws_instance", + "resource_name": "example-instance-660", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example660]", + "search_line": 5942, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "aad4e6ae54b8f87a16ffc619b16ae9e0454a7cf40cb264e21410398c2a701bb9", + "line": 2099, + "resource_type": "aws_instance", + "resource_name": "example-instance-233", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example233]", + "search_line": 2099, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fb9832741355c86abdb0284623c97736c54afc228bea41fc087822687b23f9e8", + "line": 2351, + "resource_type": "aws_instance", + "resource_name": "example-instance-261", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example261]", + "search_line": 2351, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "733c1fd4f689706c896074f2560249fc6f52bcb0d58c9ab15534d8eed1cc2d27", + "line": 2000, + "resource_type": "aws_instance", + "resource_name": "example-instance-222", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example222]", + "search_line": 2000, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0a8fefff75709a8fbb42f88bc703b705202fa2a0643b4cbc467d2bdcbcdc53a1", + "line": 1802, + "resource_type": "aws_instance", + "resource_name": "example-instance-200", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example200]", + "search_line": 1802, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d8dc62d4704e22f39790ef4979927157073c57960d2500477c45bacbe46754b2", + "line": 821, + "resource_type": "aws_instance", + "resource_name": "example-instance-91", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example91]", + "search_line": 821, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5d627a7b04f8b883a023736a44dfd16d9373d507eecb3bbb34c5e112f6255a12", + "line": 47, + "resource_type": "aws_instance", + "resource_name": "example-instance-5", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example5]", + "search_line": 47, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7ca407996f332bd1dc6d9423c9817eae22ad54a825903748be040311200f5530", + "line": 8966, + "resource_type": "aws_instance", + "resource_name": "example-instance-996", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example996]", + "search_line": 8966, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5bf1050f6d9041383bdc04508a0fc4dbd5658326dc829163d5b40aab0e7254d7", + "line": 1442, + "resource_type": "aws_instance", + "resource_name": "example-instance-160", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example160]", + "search_line": 1442, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "104ddbf07bf5a1acd312f910e4d4d10f60dea88c83c729df1580c2837b69fb5c", + "line": 6293, + "resource_type": "aws_instance", + "resource_name": "example-instance-699", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example699]", + "search_line": 6293, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1430bd4ec7a98eaeca929c01383d5b1a3a8c9e8a787cb301f9662a429c7829ab", + "line": 7553, + "resource_type": "aws_instance", + "resource_name": "example-instance-839", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example839]", + "search_line": 7553, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9808d55e38128b8d6f2efdc69fa7491acb92a852514fbf658bef52a847fada1b", + "line": 7805, + "resource_type": "aws_instance", + "resource_name": "example-instance-867", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example867]", + "search_line": 7805, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b2b3cf44ac18fc2674e42f89c9c7393450c1e13dd2896c9b7f33818258cc6444", + "line": 1235, + "resource_type": "aws_instance", + "resource_name": "example-instance-137", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example137]", + "search_line": 1235, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "57b9381a78c747c1d2b9595435ddb84a088ff0f58c374a29332c12828b569bcf", + "line": 1316, + "resource_type": "aws_instance", + "resource_name": "example-instance-146", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example146]", + "search_line": 1316, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "221c0331809576b02d6b34dd300b7868d120a07b6e2bc4c1eed0e8ba1bff4b38", + "line": 5636, + "resource_type": "aws_instance", + "resource_name": "example-instance-626", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example626]", + "search_line": 5636, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "033122d9b3b83615ac7afd71ff8c5b53118dab335a215e054603ed1d432876dc", + "line": 686, + "resource_type": "aws_instance", + "resource_name": "example-instance-76", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example76]", + "search_line": 686, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a13cf5ac19aecc8fbee4b100d25cc9773bad59c8fad74f601aa6a1596e57067b", + "line": 569, + "resource_type": "aws_instance", + "resource_name": "example-instance-63", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example63]", + "search_line": 569, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "65b6d02b9ffea89b615e6fb27883dc96962b8762f600b99e38ffd32cc11f22cc", + "line": 7040, + "resource_type": "aws_instance", + "resource_name": "example-instance-782", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example782]", + "search_line": 7040, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1cd49ad9bb24479e3c4caa8a6ce96528b45c635842bd4676e76e4768aba19af7", + "line": 8138, + "resource_type": "aws_instance", + "resource_name": "example-instance-904", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example904]", + "search_line": 8138, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7d1002a13ab312cfcea9e2866d6b9d630e1f067510fba3a4aa96ba368d8edfd5", + "line": 8741, + "resource_type": "aws_instance", + "resource_name": "example-instance-971", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example971]", + "search_line": 8741, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "915e6b30ff9d14a4a9aa6536160d03a625c4918de3f5d1c7477f0d3a2ec9172a", + "line": 1244, + "resource_type": "aws_instance", + "resource_name": "example-instance-138", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example138]", + "search_line": 1244, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1c99d88cac9fff471e0fe1262c20bf0c0c1f1140ddd207ae15023eec933a606e", + "line": 479, + "resource_type": "aws_instance", + "resource_name": "example-instance-53", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example53]", + "search_line": 479, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7ad6fbee35b1b6b2c64fbb20ef61952fd63a837312393164d29cd1f83989bcb2", + "line": 6500, + "resource_type": "aws_instance", + "resource_name": "example-instance-722", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example722]", + "search_line": 6500, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f415fe91003b7a45611f7f3a92642e9c800402270a5276e79872455e362778ae", + "line": 8687, + "resource_type": "aws_instance", + "resource_name": "example-instance-965", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example965]", + "search_line": 8687, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "af1f6fc43bdb4f3a22095067866ffa55cb90fec2d5d016a70fa41a5b663bdbad", + "line": 4376, + "resource_type": "aws_instance", + "resource_name": "example-instance-486", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example486]", + "search_line": 4376, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e5a7230cdebefa47e88986c8f34a82187200dc647bf2cb01bc0d1049893cf191", + "line": 5690, + "resource_type": "aws_instance", + "resource_name": "example-instance-632", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example632]", + "search_line": 5690, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0b0807ad3cc5591557058630a4ee6ec9820316292082ff4cdb2e92716e943105", + "line": 8318, + "resource_type": "aws_instance", + "resource_name": "example-instance-924", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example924]", + "search_line": 8318, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b4ff31eb0ddc074c3895460d33ed40e491924a850d65230e6bbbac671d3e34c1", + "line": 8831, + "resource_type": "aws_instance", + "resource_name": "example-instance-981", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example981]", + "search_line": 8831, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6687e8a0e5da06c34fae7cfe21f7377aebc2c83ed133a16c8835f13acf113670", + "line": 1010, + "resource_type": "aws_instance", + "resource_name": "example-instance-112", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example112]", + "search_line": 1010, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "14e398286dbe652d08ede48bc79256e66a5d40c30f1ceb9c7fa723a68af8a720", + "line": 7976, + "resource_type": "aws_instance", + "resource_name": "example-instance-886", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example886]", + "search_line": 7976, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "89ba9ed76be8cdc3ea6ce80b91e937fe4688f6143b5632f35de126f379e0e027", + "line": 4007, + "resource_type": "aws_instance", + "resource_name": "example-instance-445", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example445]", + "search_line": 4007, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "61f3cc6a5f04ba3f9a73f1c11ed57daa6c1e06d8f448c30b64476a09231cb472", + "line": 7616, + "resource_type": "aws_instance", + "resource_name": "example-instance-846", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example846]", + "search_line": 7616, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d7913abca6c395a5abf4265c541bf7e13a43c133c6ec4673ecc325583149f460", + "line": 2612, + "resource_type": "aws_instance", + "resource_name": "example-instance-290", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example290]", + "search_line": 2612, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2e788d00b43252d713be4c6fb2d63051138ee6a8ab23d93d1986cd31e5aa6b2b", + "line": 1361, + "resource_type": "aws_instance", + "resource_name": "example-instance-151", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example151]", + "search_line": 1361, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "69c3babe98ada4b6c4e4904c3446d672b4153153c18dc240c342e8667e8cf24c", + "line": 4475, + "resource_type": "aws_instance", + "resource_name": "example-instance-497", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example497]", + "search_line": 4475, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4d204f3c56a80539505dfb98d82a04f70ef683de79d5f50096cdd87b9dc9d620", + "line": 875, + "resource_type": "aws_instance", + "resource_name": "example-instance-97", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example97]", + "search_line": 875, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b75f28147b8db2d9a0186308998b0556caa604619fbfda747532feeb654f7934", + "line": 1307, + "resource_type": "aws_instance", + "resource_name": "example-instance-145", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example145]", + "search_line": 1307, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6ca0093f76f667e1c2e65417bb959ce8fcb16d571ca28d4fd6554e7b74d7404a", + "line": 3152, + "resource_type": "aws_instance", + "resource_name": "example-instance-350", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example350]", + "search_line": 3152, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d60d9d85ed06f839ba0c55ed0bada06d356d161b82ee813beb325debc341630d", + "line": 3242, + "resource_type": "aws_instance", + "resource_name": "example-instance-360", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example360]", + "search_line": 3242, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6479f364f52c771090260f19548ea528bedab89342190daebe3a4d63701978c2", + "line": 5654, + "resource_type": "aws_instance", + "resource_name": "example-instance-628", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example628]", + "search_line": 5654, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "03c6c5b05a99afae4d599a796e528064ce1dd2daf41763e5752c01edfce0a64c", + "line": 2927, + "resource_type": "aws_instance", + "resource_name": "example-instance-325", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example325]", + "search_line": 2927, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3946caeb5a5d8a1721f443ecfce0b83b60ad66d35fd58a716f7cd63ae1ceeda3", + "line": 7364, + "resource_type": "aws_instance", + "resource_name": "example-instance-818", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example818]", + "search_line": 7364, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fb83ccf3a4a8d4d9e8df32b924970e257e1ec338f244ae0def1aecd1a9da5a2f", + "line": 7373, + "resource_type": "aws_instance", + "resource_name": "example-instance-819", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example819]", + "search_line": 7373, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ccf39adec4f3a3debee62043c86b96811fc8e35f98cd03694801cd2a022a141a", + "line": 8759, + "resource_type": "aws_instance", + "resource_name": "example-instance-973", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example973]", + "search_line": 8759, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3a73c03099c95fb96bba32c0b8631a27d2ffd855e21818f9faeb874c9c8b8d0c", + "line": 3035, + "resource_type": "aws_instance", + "resource_name": "example-instance-337", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example337]", + "search_line": 3035, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "65abe186669c7d739d47409e4bd2b334a22612d5eb417c8fa9be09d7ae559086", + "line": 3278, + "resource_type": "aws_instance", + "resource_name": "example-instance-364", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example364]", + "search_line": 3278, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7be5fdd02a3cf79986c12b91391ac18402b4ff2b22792deb0dc00f2bdd4a69d1", + "line": 6536, + "resource_type": "aws_instance", + "resource_name": "example-instance-726", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example726]", + "search_line": 6536, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4f4910701daef2577dbd89b469bb4a0203f53680f42a6a06e567973f044ee0ac", + "line": 6896, + "resource_type": "aws_instance", + "resource_name": "example-instance-766", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[example766]", + "search_line": 6896, + "search_value": "", + "expected_value": "Attribute 'vpc_security_group_ids' should be defined and not null", + "actual_value": "Attribute 'vpc_security_group_ids' is undefined or null" + } + ] + }, + { + "query_name": "IAM Access Analyzer Not Enabled", + "query_id": "e592a0c5-5bdb-414c-9066-5dba7cdea370", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/accessanalyzer_analyzer", + "severity": "LOW", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Best Practices", + "experimental": false, + "description": "IAM Access Analyzer should be enabled and configured to continuously monitor resource permissions", + "description_id": "d03e85ae", + "files": [ + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "aa346cd1642a83b40e221f96a43d88dbfacecdf1f8e5314c24145f8d35530197", + "line": 7, + "resource_type": "n/a", + "resource_name": "n/a", + "issue_type": "MissingAttribute", + "search_key": "resource", + "search_line": -1, + "search_value": "", + "expected_value": "'aws_accessanalyzer_analyzer' should be set", + "actual_value": "'aws_accessanalyzer_analyzer' is undefined" + } + ] + }, + { + "query_name": "EC2 Instance Monitoring Disabled", + "query_id": "23b70e32-032e-4fa6-ba5c-82f56b9980e6", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/instance#monitoring", + "severity": "INFO", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Observability", + "experimental": false, + "description": "EC2 Instance should have detailed monitoring enabled. With detailed monitoring enabled data is available in 1-minute periods", + "description_id": "0d5413e6", + "files": [ + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d3159e999ef2059b60ebcefa105daad6d52ae372f0920d59ccadcd43692bd5b6", + "line": 6977, + "resource_type": "aws_instance", + "resource_name": "example-instance-775", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example775}}", + "search_line": 6977, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example775)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example775)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f2befba087a39ff8acf68fa09817c8412ccd3676bf6f34c1d8e1b0174be7349b", + "line": 8606, + "resource_type": "aws_instance", + "resource_name": "example-instance-956", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example956}}", + "search_line": 8606, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example956)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example956)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f9ef7619a4e4aaebed8ae8a6284580143de5c68e4cb78c6ef3be9e6ebda92596", + "line": 8291, + "resource_type": "aws_instance", + "resource_name": "example-instance-921", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example921}}", + "search_line": 8291, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example921)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example921)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "720cda6ee6a615abb1f03a955c3348fc0c8ba90bad02c135e5f5fd99513b86f7", + "line": 6338, + "resource_type": "aws_instance", + "resource_name": "example-instance-704", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example704}}", + "search_line": 6338, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example704)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example704)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b7f27804ae576a2e9f635b74f19e8d3f10c9152948328b8b2ee9c5e0a16743f7", + "line": 4502, + "resource_type": "aws_instance", + "resource_name": "example-instance-500", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example500}}", + "search_line": 4502, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example500)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example500)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ecb23d6bdd5a47aaacd59385c0f17ceab6c004990cf1ea8b6a765b012e950926", + "line": 6275, + "resource_type": "aws_instance", + "resource_name": "example-instance-697", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example697}}", + "search_line": 6275, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example697)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example697)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0b0dd351ba484f52c2d19b76b83620dd9dd12476b85984e4326cceeb3119c50e", + "line": 650, + "resource_type": "aws_instance", + "resource_name": "example-instance-72", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example72}}", + "search_line": 650, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example72)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example72)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a50ee035d0bc6b5717ad9e72a712c61c3547a8d65617cb75ba6079e63d19a85e", + "line": 7076, + "resource_type": "aws_instance", + "resource_name": "example-instance-786", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example786}}", + "search_line": 7076, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example786)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example786)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9c3212fa5a6839b78a5ad440f425d17878a70668c779c236d0bcea6bfb33bb5d", + "line": 434, + "resource_type": "aws_instance", + "resource_name": "example-instance-48", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example48}}", + "search_line": 434, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example48)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example48)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3d3d6173fa081e8a50c993df50a7cdfdb0b48fde45219416d8274315966a1408", + "line": 5726, + "resource_type": "aws_instance", + "resource_name": "example-instance-636", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example636}}", + "search_line": 5726, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example636)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example636)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "36bab0fdc5e8fb113c1f51b85db6b3f18f961c912b0f9e145f7ef213bad8f7a4", + "line": 1667, + "resource_type": "aws_instance", + "resource_name": "example-instance-185", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example185}}", + "search_line": 1667, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example185)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example185)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6425dd78fd74cf3d8c0013e0cb5900d1acd9516d30ed73d2f0596773c11c8444", + "line": 2342, + "resource_type": "aws_instance", + "resource_name": "example-instance-260", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example260}}", + "search_line": 2342, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example260)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example260)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "faa40b15dceeabddad81d6db546a7ded7c194a998e70f063f7c6692ead9d2df4", + "line": 3584, + "resource_type": "aws_instance", + "resource_name": "example-instance-398", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example398}}", + "search_line": 3584, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example398)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example398)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ac4e033bd3cf176af50cec6fade1533e4f432ba3d538130facadd667b865eedb", + "line": 3233, + "resource_type": "aws_instance", + "resource_name": "example-instance-359", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example359}}", + "search_line": 3233, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example359)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example359)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8491f4a2714ad4dee82ea7ab1a25b347ceae5b92e552e55028076abc4aadedb5", + "line": 8408, + "resource_type": "aws_instance", + "resource_name": "example-instance-934", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example934}}", + "search_line": 8408, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example934)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example934)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f0b1e921c3da43c9e6eec3115b738bbacd5733fecf9fceedc3dc299df0462d31", + "line": 6572, + "resource_type": "aws_instance", + "resource_name": "example-instance-730", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example730}}", + "search_line": 6572, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example730)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example730)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "733f0678070e66871dfe6779e644592e9e3e22e4089a93c61c9b41f163883f3e", + "line": 8453, + "resource_type": "aws_instance", + "resource_name": "example-instance-939", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example939}}", + "search_line": 8453, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example939)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example939)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c0c9d0e7646e6af2b7664083871ee49ca176589673f4f94cdc35a53c33dee7a1", + "line": 4691, + "resource_type": "aws_instance", + "resource_name": "example-instance-521", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example521}}", + "search_line": 4691, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example521)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example521)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8b1a1672cf0529311a95d145f7c0ea789e3f2601cc0528c413b227af89e975d4", + "line": 4916, + "resource_type": "aws_instance", + "resource_name": "example-instance-546", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example546}}", + "search_line": 4916, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example546)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example546)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "71e0ea5d89a9f6f119916c110f5d1d24692b307c77bcebc93e2b0f5a7abfcc4e", + "line": 443, + "resource_type": "aws_instance", + "resource_name": "example-instance-49", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example49}}", + "search_line": 443, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example49)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example49)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "641908964a78f492ab6de0b7ee2fe1ae531f05e1d7805aad590e9a0d7ca6eed3", + "line": 1730, + "resource_type": "aws_instance", + "resource_name": "example-instance-192", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example192}}", + "search_line": 1730, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example192)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example192)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "77dfd8cbf5fc7be0485e1431c504ee8b8aa3babcf6a877d17fee83eb0c74da08", + "line": 3179, + "resource_type": "aws_instance", + "resource_name": "example-instance-353", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example353}}", + "search_line": 3179, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example353)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example353)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d168875b37ee80d51f93252e36eaa9a9ce8a1f7e5df0371e400a1bd671ac6777", + "line": 2693, + "resource_type": "aws_instance", + "resource_name": "example-instance-299", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example299}}", + "search_line": 2693, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example299)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example299)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e8295758de6d4211150ad204d7c40a33d6179e1ae7e4d6fe54119db20e004830", + "line": 4421, + "resource_type": "aws_instance", + "resource_name": "example-instance-491", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example491}}", + "search_line": 4421, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example491)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example491)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5504ff4d64247776750c33bd9d6f9fd2f74ef27d90aa90ac19d18d458eeb38e3", + "line": 6266, + "resource_type": "aws_instance", + "resource_name": "example-instance-696", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example696}}", + "search_line": 6266, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example696)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example696)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1f2f179a6007a421f16f720bd3cbe8f20dabff019623a1027a6467e6af0bc2cc", + "line": 632, + "resource_type": "aws_instance", + "resource_name": "example-instance-70", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example70}}", + "search_line": 632, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example70)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example70)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "72c9896fc0b898eee6b5fcc4ce42836599257c341a1647244d517df0201a9c73", + "line": 7094, + "resource_type": "aws_instance", + "resource_name": "example-instance-788", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example788}}", + "search_line": 7094, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example788)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example788)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f091359c2ea20aca4f918c1b89172c1294b6b071195c548847d40fcd69600af7", + "line": 5348, + "resource_type": "aws_instance", + "resource_name": "example-instance-594", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example594}}", + "search_line": 5348, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example594)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example594)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "73b99c1030d64f7147b1a8e24a2eed7899e1f1c320401bab5f3bbcc209f30d35", + "line": 3935, + "resource_type": "aws_instance", + "resource_name": "example-instance-437", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example437}}", + "search_line": 3935, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example437)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example437)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "64825c5bce9939f562af1bc1b1974f674d70ff331423abb1b3cefb445d506c5f", + "line": 3188, + "resource_type": "aws_instance", + "resource_name": "example-instance-354", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example354}}", + "search_line": 3188, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example354)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example354)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1670e270f17c7fc0c58c8181fc24860963348b285dda4782b8b2a1926a970b4a", + "line": 3557, + "resource_type": "aws_instance", + "resource_name": "example-instance-395", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example395}}", + "search_line": 3557, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example395)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example395)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c8483ef815460787858908c3dec5cab6bd5995be8920d2921226f0cb43ad6e7b", + "line": 920, + "resource_type": "aws_instance", + "resource_name": "example-instance-102", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example102}}", + "search_line": 920, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example102)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example102)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e48f8fbb227d578514f004ffb36b34882cc2bc68426b53849827c3cf7d1cebfa", + "line": 2189, + "resource_type": "aws_instance", + "resource_name": "example-instance-243", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example243}}", + "search_line": 2189, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example243)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example243)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "57e9226f3019a55c52ea7ccbafad6e7e92c48eb2cb63c603061bedd847d88161", + "line": 5573, + "resource_type": "aws_instance", + "resource_name": "example-instance-619", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example619}}", + "search_line": 5573, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example619)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example619)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ef7d266217626122873747bf809c2fd26a5254c1d3dae0fa7ff6ea68e70b4824", + "line": 1163, + "resource_type": "aws_instance", + "resource_name": "example-instance-129", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example129}}", + "search_line": 1163, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example129)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example129)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0002da4df3e8d8e2107c8cd651603b02a3fbf8cfdce5a3320197d22cb2c4870d", + "line": 659, + "resource_type": "aws_instance", + "resource_name": "example-instance-73", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example73}}", + "search_line": 659, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example73)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example73)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4aa64ff8e03277d2879ed3a0c46d492792b773eed92a84c56b52efc466ce83d6", + "line": 245, + "resource_type": "aws_instance", + "resource_name": "example-instance-27", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example27}}", + "search_line": 245, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example27)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example27)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "864e6325d3de41c9f9692e76a1b57521248d58b54ba43df7b192326bd58c50e7", + "line": 5600, + "resource_type": "aws_instance", + "resource_name": "example-instance-622", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example622}}", + "search_line": 5600, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example622)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example622)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2ddac679f457ce57dec72894024c52bbb06e3eb99ff43182136b184ca2844a17", + "line": 7400, + "resource_type": "aws_instance", + "resource_name": "example-instance-822", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example822}}", + "search_line": 7400, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example822)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example822)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d2a50654bfbd925c099cde6b7f7d1d192aca362237db9767997b391da0045425", + "line": 7175, + "resource_type": "aws_instance", + "resource_name": "example-instance-797", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example797}}", + "search_line": 7175, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example797)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example797)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cb236d65f4a325e69eff37f8d9805edba4f4136856dd4bef51c07aa53fc6d60e", + "line": 2477, + "resource_type": "aws_instance", + "resource_name": "example-instance-275", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example275}}", + "search_line": 2477, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example275)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example275)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3845485fd660e601bc01494c26d244f9e90596ed9f3d4178ec08c4813e000724", + "line": 1154, + "resource_type": "aws_instance", + "resource_name": "example-instance-128", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example128}}", + "search_line": 1154, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example128)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example128)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "924a5cae4d4295334096a7a0e664ada138cd1f6b28f15eaa6af540d69aa67a1e", + "line": 4430, + "resource_type": "aws_instance", + "resource_name": "example-instance-492", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example492}}", + "search_line": 4430, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example492)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example492)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c76e58fcc43bc38d384990ea726e56f496db1b895621304dcb910b5572c3bde9", + "line": 5114, + "resource_type": "aws_instance", + "resource_name": "example-instance-568", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example568}}", + "search_line": 5114, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example568)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example568)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bfce35558adc1d7b31ee0ed6a91c5c0a46abff2daefcbb121509edb83f45c07e", + "line": 7238, + "resource_type": "aws_instance", + "resource_name": "example-instance-804", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example804}}", + "search_line": 7238, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example804)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example804)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1a0a3d1aea633273dc0bf5ddc3b8e175a3ec3e10102a52bdde6a62b94fec526f", + "line": 8786, + "resource_type": "aws_instance", + "resource_name": "example-instance-976", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example976}}", + "search_line": 8786, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example976)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example976)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cc8a31b4eb66a19d3f6463999fe74f03b82e77bbcdfccb346b5586e8d5753c96", + "line": 6905, + "resource_type": "aws_instance", + "resource_name": "example-instance-767", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example767}}", + "search_line": 6905, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example767)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example767)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "514705ad7dded929dbb3dfcc8c37b3fa4fc145cac11515a58404a2961030f63e", + "line": 3566, + "resource_type": "aws_instance", + "resource_name": "example-instance-396", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example396}}", + "search_line": 3566, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example396)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example396)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cc990bc509d9b330c833b4f59ff484bbaad447b000217d456ed22d74840b1070", + "line": 7841, + "resource_type": "aws_instance", + "resource_name": "example-instance-871", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example871}}", + "search_line": 7841, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example871)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example871)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e7de1e15e0d9064cdaa2ebf5fa007082ce0de84ea1489d636d00e4c0ef951124", + "line": 7409, + "resource_type": "aws_instance", + "resource_name": "example-instance-823", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example823}}", + "search_line": 7409, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example823)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example823)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3557e4866ccf49c9d7fac0f4723d501008d4783f7714f2d37a130d3f4355a288", + "line": 7958, + "resource_type": "aws_instance", + "resource_name": "example-instance-884", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example884}}", + "search_line": 7958, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example884)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example884)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ebaff7f8abc077d51b4fd18dd151824c63010e37f4626ac2a5f45e1487a2f0f0", + "line": 6257, + "resource_type": "aws_instance", + "resource_name": "example-instance-695", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example695}}", + "search_line": 6257, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example695)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example695)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b52d5464d9bd22f215663df1344e61d7df7b219791908864a57d8afa285f9697", + "line": 1001, + "resource_type": "aws_instance", + "resource_name": "example-instance-111", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example111}}", + "search_line": 1001, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example111)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example111)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a8babd29dbb3399ed724b71376d1ac1e453db1561aa3390b87b006962165fd56", + "line": 5555, + "resource_type": "aws_instance", + "resource_name": "example-instance-617", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example617}}", + "search_line": 5555, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example617)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example617)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c1f00f73066f8dc1ef342231cf5451f9bc659016718255eb4859793e76c34eb5", + "line": 5663, + "resource_type": "aws_instance", + "resource_name": "example-instance-629", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example629}}", + "search_line": 5663, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example629)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example629)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "018b37360f8b8e3a249af76e85269c163c63f6f83efae6e99e95daebc2d56412", + "line": 5807, + "resource_type": "aws_instance", + "resource_name": "example-instance-645", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example645}}", + "search_line": 5807, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example645)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example645)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "da01e5081b86318d1303207c5229efd7b098384851632337886835b5f41e150d", + "line": 5474, + "resource_type": "aws_instance", + "resource_name": "example-instance-608", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example608}}", + "search_line": 5474, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example608)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example608)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4f17a8845d062acbe0d774141593a99b35f2889645842f5873d4c4cd6b52ffaa", + "line": 2783, + "resource_type": "aws_instance", + "resource_name": "example-instance-309", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example309}}", + "search_line": 2783, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example309)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example309)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "587b3efe668bc5d43f48466aed48637a4b03afc4d2635ec8b86e37e5520184e7", + "line": 5735, + "resource_type": "aws_instance", + "resource_name": "example-instance-637", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example637}}", + "search_line": 5735, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example637)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example637)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "990ed9c5ac3a7f9952ea83a336c434436bb780532d98790d2affcee32ba8e0ee", + "line": 1658, + "resource_type": "aws_instance", + "resource_name": "example-instance-184", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example184}}", + "search_line": 1658, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example184)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example184)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4e383cd48a978bee1e2e5b98b368ae06077411665dc566680ae68d8a945b4a80", + "line": 3629, + "resource_type": "aws_instance", + "resource_name": "example-instance-403", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example403}}", + "search_line": 3629, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example403)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example403)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c13f5e2a50505b610004193817436d41e18a3b605bc621032e401a5d6c5ef226", + "line": 1352, + "resource_type": "aws_instance", + "resource_name": "example-instance-150", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example150}}", + "search_line": 1352, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example150)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example150)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "09679d0584587cf6e9591d8c5b1bdc367d401bbfb2ec7f6293820506e79fc6ed", + "line": 8876, + "resource_type": "aws_instance", + "resource_name": "example-instance-986", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example986}}", + "search_line": 8876, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example986)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example986)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a0c4b738400e5b9606abb0f4eeaefcfdbcb1179c0fcef308d5722f18dee3fbf3", + "line": 5393, + "resource_type": "aws_instance", + "resource_name": "example-instance-599", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example599}}", + "search_line": 5393, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example599)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example599)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5fe8e289ec2ca7cf1252ea30dcda6f552b3acafc203a2c9590ad6d5af12d0f7d", + "line": 7382, + "resource_type": "aws_instance", + "resource_name": "example-instance-820", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example820}}", + "search_line": 7382, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example820)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example820)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "822b33601b7baa270d70e3c77930815fcec3da33b1f34712eb314c1864e90912", + "line": 8201, + "resource_type": "aws_instance", + "resource_name": "example-instance-911", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example911}}", + "search_line": 8201, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example911)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example911)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d73abd37661488007a31c3bb6eb253a30df05b0454cf4f69f86c18b2f7c0fd2a", + "line": 8804, + "resource_type": "aws_instance", + "resource_name": "example-instance-978", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example978}}", + "search_line": 8804, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example978)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example978)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bcef5969ad19d3874901d27ec7c1be7f400ae04e67e2cf438f2a6dd2fa8ecb85", + "line": 1487, + "resource_type": "aws_instance", + "resource_name": "example-instance-165", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example165}}", + "search_line": 1487, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example165)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example165)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "aadaf89fbd659be1160beace05c9f4ae110d9c3de242b0fad220cac2354ef06d", + "line": 3161, + "resource_type": "aws_instance", + "resource_name": "example-instance-351", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example351}}", + "search_line": 3161, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example351)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example351)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "143c60cedce653d983cc01fc786832367be505f80f4b3b2dca9e4ded5e52ad91", + "line": 7733, + "resource_type": "aws_instance", + "resource_name": "example-instance-859", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example859}}", + "search_line": 7733, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example859)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example859)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "800281bf8be7cce6e0dd2978a86d92ba6f6a4349a3c66203612f3dcf3885e452", + "line": 5987, + "resource_type": "aws_instance", + "resource_name": "example-instance-665", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example665}}", + "search_line": 5987, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example665)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example665)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b6753638c179429f552573adf68ba1d115c5eb18ecc4b7f332460ba55d6f7cd5", + "line": 5843, + "resource_type": "aws_instance", + "resource_name": "example-instance-649", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example649}}", + "search_line": 5843, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example649)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example649)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "901a94eb0138253d1c4e06076a3492c38b8a99db5c651c6ca526af5004cd21dc", + "line": 5960, + "resource_type": "aws_instance", + "resource_name": "example-instance-662", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example662}}", + "search_line": 5960, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example662)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example662)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e54ccebc4da528a13f19f9acdd5e9e9f1ec4a6cc8e817cc6c14d7fa6c47d09ef", + "line": 2549, + "resource_type": "aws_instance", + "resource_name": "example-instance-283", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example283}}", + "search_line": 2549, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example283)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example283)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ec831000d60c187f07b2d7224a2ea21f051531d9af2ead03375387b04c3f75fc", + "line": 4232, + "resource_type": "aws_instance", + "resource_name": "example-instance-470", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example470}}", + "search_line": 4232, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example470)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example470)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "58d9d2508709d976573ffac9a7d051fea305eee4662a0fd1e9ffa403e3ff8c65", + "line": 6662, + "resource_type": "aws_instance", + "resource_name": "example-instance-740", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example740}}", + "search_line": 6662, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example740)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example740)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "30b0b40063c52c51648ed39d58448bab33edc92b8ebc1a78b4a70acb84d83ad2", + "line": 5141, + "resource_type": "aws_instance", + "resource_name": "example-instance-571", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example571}}", + "search_line": 5141, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example571)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example571)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "88f9e7756c5b0d671d7ee7c8bc199c60e677faa555b4c8b407d43beb9906082f", + "line": 2531, + "resource_type": "aws_instance", + "resource_name": "example-instance-281", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example281}}", + "search_line": 2531, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example281)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example281)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7601b06b9ba3c219d0ca5ebdb91305e23260d6e717e04a37986030db6c12cb8e", + "line": 3305, + "resource_type": "aws_instance", + "resource_name": "example-instance-367", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example367}}", + "search_line": 3305, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example367)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example367)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b70f487a26302de5841539e95d6528e88cc6ed9fe08cd19a6b4aef8c9826c5b4", + "line": 1100, + "resource_type": "aws_instance", + "resource_name": "example-instance-122", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example122}}", + "search_line": 1100, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example122)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example122)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bea2775b0761b6cb1424de52cf6778dbcefd591ead619386f1f68275497a87ed", + "line": 2009, + "resource_type": "aws_instance", + "resource_name": "example-instance-223", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example223}}", + "search_line": 2009, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example223)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example223)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "16f7f564500b91c6c3a75b6647d37be9dccc968747639fe5058b2e04ba33e45b", + "line": 2045, + "resource_type": "aws_instance", + "resource_name": "example-instance-227", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example227}}", + "search_line": 2045, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example227)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example227)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "76fdc93d6cf341d5eb9736fc47d1bbee8702c430655a9800c816ca67a806be6c", + "line": 3350, + "resource_type": "aws_instance", + "resource_name": "example-instance-372", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example372}}", + "search_line": 3350, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example372)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example372)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "92be5db4ad52dd826fbd4adf44ad4229d328323f40533987c8686d5e4cf64b22", + "line": 5465, + "resource_type": "aws_instance", + "resource_name": "example-instance-607", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example607}}", + "search_line": 5465, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example607)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example607)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4919a44cf352fb98b614797bbb11cac25663b8bcbe434c1b6b404a0d2546db61", + "line": 4340, + "resource_type": "aws_instance", + "resource_name": "example-instance-482", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example482}}", + "search_line": 4340, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example482)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example482)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9ae1a4e80449a512a75c5aef5d65b98780078b7d20e38a1542420fd7d0dca741", + "line": 4592, + "resource_type": "aws_instance", + "resource_name": "example-instance-510", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example510}}", + "search_line": 4592, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example510)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example510)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5e370a2602b962244a9fc0e8a4521dd86c83eb03dac056423e55b488deb840d3", + "line": 7616, + "resource_type": "aws_instance", + "resource_name": "example-instance-846", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example846}}", + "search_line": 7616, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example846)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example846)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8b3a72600b6fcaf714cf51d8cba6e7ec41230f8e51a5c3d7fa546a5c1a64c08f", + "line": 8561, + "resource_type": "aws_instance", + "resource_name": "example-instance-951", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example951}}", + "search_line": 8561, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example951)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example951)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "35ab102c7254191ed9476cdcd4324175ddc10e24ef240b019c037f448d222882", + "line": 6554, + "resource_type": "aws_instance", + "resource_name": "example-instance-728", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example728}}", + "search_line": 6554, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example728)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example728)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8d0c07e6dc0936a0e2b3fcb967f590afd936b2669f4a2871dbe21c66c4ea2ab1", + "line": 542, + "resource_type": "aws_instance", + "resource_name": "example-instance-60", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example60}}", + "search_line": 542, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example60)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example60)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6c419e14ed7b80e864cdcb18560c048afbd969f80a5eadcadb11dd577297af2f", + "line": 7571, + "resource_type": "aws_instance", + "resource_name": "example-instance-841", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example841}}", + "search_line": 7571, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example841)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example841)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "38af26ccadaa68f4e21f6c262a39be659ccc0d2b96f0fafa4c72542089f994d0", + "line": 1046, + "resource_type": "aws_instance", + "resource_name": "example-instance-116", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example116}}", + "search_line": 1046, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example116)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example116)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "307e70bc63ad21cef5cf1a6aeef9477f8cab20464d291882f6af81cb50c430b2", + "line": 2630, + "resource_type": "aws_instance", + "resource_name": "example-instance-292", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example292}}", + "search_line": 2630, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example292)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example292)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a5a0bada53f8a46613cd0649d2e9492df22d0e330ff8b2e51397795600e333be", + "line": 3908, + "resource_type": "aws_instance", + "resource_name": "example-instance-434", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example434}}", + "search_line": 3908, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example434)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example434)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "24f18d5f247ed278b71c7043535a16860f48a19e5eed9f1417b6cbdc2c301ffb", + "line": 7490, + "resource_type": "aws_instance", + "resource_name": "example-instance-832", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example832}}", + "search_line": 7490, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example832)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example832)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "07a8c89435f45b9df80365fa4d97ac2698bc3b76ee362032f8dfa500f49af3d1", + "line": 2981, + "resource_type": "aws_instance", + "resource_name": "example-instance-331", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example331}}", + "search_line": 2981, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example331)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example331)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3fdaf036bba61ec65227f56fd03bc796c4e34217b400fa5668cf7270d9264b30", + "line": 1838, + "resource_type": "aws_instance", + "resource_name": "example-instance-204", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example204}}", + "search_line": 1838, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example204)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example204)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "57a23e1a5d1128f6a7e44a61cb646f48b46c389eaea3fb96e5b6d34f3cc9fb2f", + "line": 5429, + "resource_type": "aws_instance", + "resource_name": "example-instance-603", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example603}}", + "search_line": 5429, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example603)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example603)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "97f90c9ab9927e848170bfc6938d013da841be25ecdc443421394f1602a3d160", + "line": 4781, + "resource_type": "aws_instance", + "resource_name": "example-instance-531", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example531}}", + "search_line": 4781, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example531)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example531)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f7e99cd0cfeb99467e6a9d5f9368270a6e3ba8f7e8807053b37219defff5eb80", + "line": 776, + "resource_type": "aws_instance", + "resource_name": "example-instance-86", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example86}}", + "search_line": 776, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example86)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example86)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ec12650f8cad5f1cded363a1102306f9daf09382e2138deed36534c100dd72e2", + "line": 2072, + "resource_type": "aws_instance", + "resource_name": "example-instance-230", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example230}}", + "search_line": 2072, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example230)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example230)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5f49ac6cc5cc45236a1dd95e1931b3480d11a34a7f85bc9d026270241a64ed7a", + "line": 7211, + "resource_type": "aws_instance", + "resource_name": "example-instance-801", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example801}}", + "search_line": 7211, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example801)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example801)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cda49c68fb9a8ad9307201c524b21914a4e364bcb1f62153594ffcbe4a38ca6e", + "line": 8048, + "resource_type": "aws_instance", + "resource_name": "example-instance-894", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example894}}", + "search_line": 8048, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example894)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example894)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bd4f88e2bb9a10c124325bcc546093d2832333246683236b720e6e32626c2937", + "line": 4529, + "resource_type": "aws_instance", + "resource_name": "example-instance-503", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example503}}", + "search_line": 4529, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example503)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example503)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "16496e04682280c1530560c48e8d9ac7060b8a3fb8e0f4273d6cb0abdb4a6d82", + "line": 686, + "resource_type": "aws_instance", + "resource_name": "example-instance-76", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example76}}", + "search_line": 686, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example76)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example76)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b4570d415b610edef8535385599f2bdfbd73695fd16333ec51ec6baa808b03b9", + "line": 7796, + "resource_type": "aws_instance", + "resource_name": "example-instance-866", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example866}}", + "search_line": 7796, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example866)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example866)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e2689db17ef3fce7b4217336a95221f5b6d435fadebf08c5e78d2df28380e88a", + "line": 7769, + "resource_type": "aws_instance", + "resource_name": "example-instance-863", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example863}}", + "search_line": 7769, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example863)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example863)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "673961aedf81565ac4b4368eeb0bf26f9a8d6138caec1dbbf1b462543c52ecb8", + "line": 7895, + "resource_type": "aws_instance", + "resource_name": "example-instance-877", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example877}}", + "search_line": 7895, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example877)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example877)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "76a22e513f06cc3d15bc6d034046ef1907d4caffe485d03d1e84f18aef086711", + "line": 8525, + "resource_type": "aws_instance", + "resource_name": "example-instance-947", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example947}}", + "search_line": 8525, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example947)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example947)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8c0de4402f49635d1b10425982194227cd96c8fa052b61068ce4c2ad0fb19cb5", + "line": 5150, + "resource_type": "aws_instance", + "resource_name": "example-instance-572", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example572}}", + "search_line": 5150, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example572)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example572)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e6bfbb8c388ef9d9743cf1479b409591d3d91d8be41ca24b2104b4129712694d", + "line": 1892, + "resource_type": "aws_instance", + "resource_name": "example-instance-210", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example210}}", + "search_line": 1892, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example210)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example210)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "28f5e9398af305a51ebbc5e7f0958a7a6bb1717dc52aea58873488c35bed0297", + "line": 1253, + "resource_type": "aws_instance", + "resource_name": "example-instance-139", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example139}}", + "search_line": 1253, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example139)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example139)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "565a9d32d2214719c1553656045b086cb6e972780fdc2130480452c7859c646f", + "line": 3638, + "resource_type": "aws_instance", + "resource_name": "example-instance-404", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example404}}", + "search_line": 3638, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example404)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example404)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c799fae13f3ea4ec48e09d21c74844b8a3f8899411706f6fc819d78eb0e3318e", + "line": 4466, + "resource_type": "aws_instance", + "resource_name": "example-instance-496", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example496}}", + "search_line": 4466, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example496)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example496)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "256f45a96c4fd30a839f6d4e18c0db62fa069238bd1ede1f5e5ad6618ff726bf", + "line": 4106, + "resource_type": "aws_instance", + "resource_name": "example-instance-456", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example456}}", + "search_line": 4106, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example456)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example456)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "62398457baa3583bb315e681b1343d89d99165f766b41c4752375294de677d71", + "line": 5078, + "resource_type": "aws_instance", + "resource_name": "example-instance-564", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example564}}", + "search_line": 5078, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example564)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example564)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b77be8cd09a56f83081cf1c807c0bb5fe4a4de30a948f7e4758c4fe655ac63b8", + "line": 1919, + "resource_type": "aws_instance", + "resource_name": "example-instance-213", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example213}}", + "search_line": 1919, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example213)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example213)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4dfdbf8b7bf15560cea5e1278ec31a2f21e145f75d7b31f61761df69bbe06d80", + "line": 8939, + "resource_type": "aws_instance", + "resource_name": "example-instance-993", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example993}}", + "search_line": 8939, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example993)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example993)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0cf6cf00092d63a958a8ba0032a9d24d987e37ae1dc045c57bcd3325b09ab774", + "line": 488, + "resource_type": "aws_instance", + "resource_name": "example-instance-54", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example54}}", + "search_line": 488, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example54)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example54)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fc02da53b9e9bcb1d0fb457572bcc10dcc3694f0f7040be7b464c85e2021bda6", + "line": 1523, + "resource_type": "aws_instance", + "resource_name": "example-instance-169", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example169}}", + "search_line": 1523, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example169)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example169)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d86b29436591857541642bd1591d70534cd2d6404b9b7d3ce5e754fe722c662f", + "line": 2990, + "resource_type": "aws_instance", + "resource_name": "example-instance-332", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example332}}", + "search_line": 2990, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example332)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example332)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "282e6944bef68ff937d46c88714435498c2125dd09ccd13f2613cb7a1eaf67a2", + "line": 4583, + "resource_type": "aws_instance", + "resource_name": "example-instance-509", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example509}}", + "search_line": 4583, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example509)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example509)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b00b36a9667db33ef23ac56aec06224f89971b3d42a2709965b32819901005d3", + "line": 4538, + "resource_type": "aws_instance", + "resource_name": "example-instance-504", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example504}}", + "search_line": 4538, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example504)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example504)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5a3c0e0ac7fac6cc5959f3170d1bc3c3cd13582a72dff2154fa6783997cc8327", + "line": 7778, + "resource_type": "aws_instance", + "resource_name": "example-instance-864", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example864}}", + "search_line": 7778, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example864)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example864)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a9f66666ad3dd459a5c16be680c296a4ae2fb2bf0512a4f631444fa22429bb42", + "line": 6869, + "resource_type": "aws_instance", + "resource_name": "example-instance-763", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example763}}", + "search_line": 6869, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example763)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example763)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "be1a5461482a116768d9e57bb0f7ea9aa133ab04e88be2f12ae31442cb19c764", + "line": 2486, + "resource_type": "aws_instance", + "resource_name": "example-instance-276", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example276}}", + "search_line": 2486, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example276)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example276)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cf6326b5f557de95a3a785c50a427e189a067e415688db426a11b647673b9f03", + "line": 3458, + "resource_type": "aws_instance", + "resource_name": "example-instance-384", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example384}}", + "search_line": 3458, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example384)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example384)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c860f73d66f54591d2e63cc554b0b6677ba653b64c7fd7e3d7bb4dd87b39b0ba", + "line": 596, + "resource_type": "aws_instance", + "resource_name": "example-instance-66", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example66}}", + "search_line": 596, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example66)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example66)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "58a2ee68710284edb6b314c66f848088435661c556de1f8a66624c1f16962007", + "line": 38, + "resource_type": "aws_instance", + "resource_name": "example-instance-4", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example4}}", + "search_line": 38, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example4)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example4)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a6e4ff429e8958e9506b88718057857d0ab0316a0f79f38eab41187bed5057d5", + "line": 2270, + "resource_type": "aws_instance", + "resource_name": "example-instance-252", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example252}}", + "search_line": 2270, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example252)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example252)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "689a8dd504e8042e18de60dbf921498e08242f1766bfdc99c156e7c6f620e83f", + "line": 5762, + "resource_type": "aws_instance", + "resource_name": "example-instance-640", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example640}}", + "search_line": 5762, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example640)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example640)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e5aa810cba5f73d0c9482ae9d321efb75d0cde7909c199f5361fae5fd786615e", + "line": 8588, + "resource_type": "aws_instance", + "resource_name": "example-instance-954", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example954}}", + "search_line": 8588, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example954)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example954)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1d134b76bca678d9df37f7ffd94666e3b549d6b5070e77bba36cfabeee2af6c4", + "line": 1280, + "resource_type": "aws_instance", + "resource_name": "example-instance-142", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example142}}", + "search_line": 1280, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example142)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example142)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "edac4f63a641d2febeb1a58d4f6ca20cc5547b122d43f53dcc885d4808ae4cc2", + "line": 2927, + "resource_type": "aws_instance", + "resource_name": "example-instance-325", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example325}}", + "search_line": 2927, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example325)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example325)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "aeab8756b0df7b2e4a7dc1da80d97136cb6f807130aab1fdc981c44ae75e56f7", + "line": 7499, + "resource_type": "aws_instance", + "resource_name": "example-instance-833", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example833}}", + "search_line": 7499, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example833)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example833)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "715c866f5b0da6d0e12d9fabad31dfb15cb90f5fd7868fde5577a09d86162e6e", + "line": 299, + "resource_type": "aws_instance", + "resource_name": "example-instance-33", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example33}}", + "search_line": 299, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example33)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example33)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "758cc4ee3a0b9f457803ac5e354c100e04933a5c1040637dd21663b985ab06a1", + "line": 6086, + "resource_type": "aws_instance", + "resource_name": "example-instance-676", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example676}}", + "search_line": 6086, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example676)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example676)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1446ae3caaf047b72c81890a406258c2cf90975b5f24d7e6c4f206de68cab5d1", + "line": 1703, + "resource_type": "aws_instance", + "resource_name": "example-instance-189", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example189}}", + "search_line": 1703, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example189)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example189)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4f71848fcf79896c7c77d5ecaf259669a6b9fd5d7ab83a6fae41d5c629fa6e19", + "line": 1388, + "resource_type": "aws_instance", + "resource_name": "example-instance-154", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example154}}", + "search_line": 1388, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example154)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example154)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bf81f1b32ef5b936a75d740c4690d5b6e7b3a82252f9a81c345d13b48576e950", + "line": 2144, + "resource_type": "aws_instance", + "resource_name": "example-instance-238", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example238}}", + "search_line": 2144, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example238)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example238)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7c4142014d1656101264a7ba6902eef9f2410e95866c328b8c1bd035f80ca70d", + "line": 6212, + "resource_type": "aws_instance", + "resource_name": "example-instance-690", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example690}}", + "search_line": 6212, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example690)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example690)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "30f7f5b78e2d8d9fec963f3aba7fc2597a64ef31afbad7989f50ad4b123ad318", + "line": 8795, + "resource_type": "aws_instance", + "resource_name": "example-instance-977", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example977}}", + "search_line": 8795, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example977)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example977)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "af87e97d1f02d780d9e7362feb905dfddb6e467c0d47690bbe442fc3d833931b", + "line": 1505, + "resource_type": "aws_instance", + "resource_name": "example-instance-167", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example167}}", + "search_line": 1505, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example167)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example167)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9bb613b34350a1f619c6455392ee829711cd1baffafa34453bcff17e57568c89", + "line": 6770, + "resource_type": "aws_instance", + "resource_name": "example-instance-752", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example752}}", + "search_line": 6770, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example752)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example752)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2c14daccc94f9772ee91e700a634e97ac8782c7d7b3077b5a1815537ece1fedb", + "line": 3530, + "resource_type": "aws_instance", + "resource_name": "example-instance-392", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example392}}", + "search_line": 3530, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example392)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example392)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c51e41487c86728cf9bbf6601dda33b5ef030b36c2246e8e4dd499e866eab84d", + "line": 3260, + "resource_type": "aws_instance", + "resource_name": "example-instance-362", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example362}}", + "search_line": 3260, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example362)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example362)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5f52d8418d1b411f52191510595aea6df114863387a57612acb80749e8e29c64", + "line": 7670, + "resource_type": "aws_instance", + "resource_name": "example-instance-852", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example852}}", + "search_line": 7670, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example852)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example852)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bfc38f8ba35e7994f33547423781f21e9f951a477ae6c817b12d06db15baa2c8", + "line": 2306, + "resource_type": "aws_instance", + "resource_name": "example-instance-256", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example256}}", + "search_line": 2306, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example256)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example256)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "29b006cf56034b233f3d1e6bbd3891ef1eee5659428689e022ccb4acaa9910be", + "line": 5303, + "resource_type": "aws_instance", + "resource_name": "example-instance-589", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example589}}", + "search_line": 5303, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example589)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example589)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9f829074b685209c8d57a890e9b1bc1d544fc2bd30fb6c98036cc753f8343549", + "line": 2171, + "resource_type": "aws_instance", + "resource_name": "example-instance-241", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example241}}", + "search_line": 2171, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example241)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example241)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1147d7b55b40e47d2af78fbe9ed10b8eacb28a36036322e101b04485a41c1eff", + "line": 1721, + "resource_type": "aws_instance", + "resource_name": "example-instance-191", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example191}}", + "search_line": 1721, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example191)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example191)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8a7fb4ee111cbcd4d727068f28a5cb49dbe5d3a73fe4a2dee4595709c36b5247", + "line": 7319, + "resource_type": "aws_instance", + "resource_name": "example-instance-813", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example813}}", + "search_line": 7319, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example813)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example813)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e3dbea48985ae7ebcaa1df1ce3c714b2290c9cda45ea02fcef0ff2ef344b1422", + "line": 2099, + "resource_type": "aws_instance", + "resource_name": "example-instance-233", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example233}}", + "search_line": 2099, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example233)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example233)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1ba0e764a83a2ca2d20fe15ab707d5a94c191bd715c6a825c82d37edddf4f432", + "line": 5717, + "resource_type": "aws_instance", + "resource_name": "example-instance-635", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example635}}", + "search_line": 5717, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example635)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example635)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "290651d6c4f9df2dede2743b11740e7d1fb231d037db24835cedad2b819b02a3", + "line": 2351, + "resource_type": "aws_instance", + "resource_name": "example-instance-261", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example261}}", + "search_line": 2351, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example261)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example261)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "79e534d64a85aaff0edc74ab5d0f629863213ae7a1c01034994db792bdf47671", + "line": 7724, + "resource_type": "aws_instance", + "resource_name": "example-instance-858", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example858}}", + "search_line": 7724, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example858)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example858)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "80047f3a5b3c509f37ffb59cd92e402ef9e3c076f31b032ae83f316270061a65", + "line": 7193, + "resource_type": "aws_instance", + "resource_name": "example-instance-799", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example799}}", + "search_line": 7193, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example799)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example799)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f91c5c3b306f70f56f013b4d0cfc7509861823dc5ef3977a9310c16970a6116c", + "line": 1190, + "resource_type": "aws_instance", + "resource_name": "example-instance-132", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example132}}", + "search_line": 1190, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example132)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example132)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "938cd82c448bae73b68505f5477aed01418668ceec273bef38ee194283592cee", + "line": 6608, + "resource_type": "aws_instance", + "resource_name": "example-instance-734", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example734}}", + "search_line": 6608, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example734)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example734)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1bd6149fe533412af1b0dc62be594c11bdd942f543f3cb4d76d2239c66847f11", + "line": 8984, + "resource_type": "aws_instance", + "resource_name": "example-instance-998", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example998}}", + "search_line": 8984, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example998)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example998)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "359fb0121e1ca63bdb064f67f49eef9b7aa77c8a3388059a17689724564e3120", + "line": 101, + "resource_type": "aws_instance", + "resource_name": "example-instance-11", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example11}}", + "search_line": 101, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example11)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example11)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dbcbcd9efb8a100c374ff6af4a4b9058aabb213e8c06bb464995c1203cd2c826", + "line": 110, + "resource_type": "aws_instance", + "resource_name": "example-instance-12", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example12}}", + "search_line": 110, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example12)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example12)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6ba19e03252dc07c999614f3b62571a09e0b5a4471e7204cfb6028e687835ffa", + "line": 4790, + "resource_type": "aws_instance", + "resource_name": "example-instance-532", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example532}}", + "search_line": 4790, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example532)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example532)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c194f48c992530b1213968189729152dd03c47c670dd52023daa0c58263ae890", + "line": 6059, + "resource_type": "aws_instance", + "resource_name": "example-instance-673", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example673}}", + "search_line": 6059, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example673)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example673)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5407afaafc940bcfc0ff037ec4430bb2807db697aa8905146a3fa1f38233dfa2", + "line": 2621, + "resource_type": "aws_instance", + "resource_name": "example-instance-291", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example291}}", + "search_line": 2621, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example291)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example291)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bbf6f3fc2daab649508ddd03b571796710980ca898465ccb762de0e1ce241a02", + "line": 3242, + "resource_type": "aws_instance", + "resource_name": "example-instance-360", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example360}}", + "search_line": 3242, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example360)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example360)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "423e011be9b5c1b3903c103c5df6a3684da750695396e3935452c4b49b725f1d", + "line": 3719, + "resource_type": "aws_instance", + "resource_name": "example-instance-413", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example413}}", + "search_line": 3719, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example413)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example413)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6b9371fa0deaaae057626b12e0fd0be7c9048ea4a2aeded50c30b5eb0c0d006b", + "line": 1775, + "resource_type": "aws_instance", + "resource_name": "example-instance-197", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example197}}", + "search_line": 1775, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example197)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example197)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "816172734f6d1c8fe6f293b14d07971d00ee99f2d7ad627d44fa844920fbb157", + "line": 5159, + "resource_type": "aws_instance", + "resource_name": "example-instance-573", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example573}}", + "search_line": 5159, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example573)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example573)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "159b2180e9e110e8719215d324049184db264f3e454fb0bb54a86b8034c1aed9", + "line": 1964, + "resource_type": "aws_instance", + "resource_name": "example-instance-218", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example218}}", + "search_line": 1964, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example218)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example218)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8be8b0718df92b2a4014fa58f7bcda6b8824535c60ceef663025120729f3778b", + "line": 1334, + "resource_type": "aws_instance", + "resource_name": "example-instance-148", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example148}}", + "search_line": 1334, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example148)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example148)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d754312fc96e6c4123a15256814c8a8d2c3774c4ba78b4bb3ebddfd5ccce81cf", + "line": 4646, + "resource_type": "aws_instance", + "resource_name": "example-instance-516", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example516}}", + "search_line": 4646, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example516)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example516)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "654eaa604b7790f3a24ecba8357ce2246b52fd24b5de681229aed9cc34d7a0b0", + "line": 7130, + "resource_type": "aws_instance", + "resource_name": "example-instance-792", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example792}}", + "search_line": 7130, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example792)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example792)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8803f6b37395f2d65fde895afa286b503b40eb8ce65e867603ec95e673986434", + "line": 731, + "resource_type": "aws_instance", + "resource_name": "example-instance-81", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example81}}", + "search_line": 731, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example81)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example81)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6e847e9ad5e107b92376a9914f0ed4bd25f13830dbe8465419b9e672b5c8407c", + "line": 7661, + "resource_type": "aws_instance", + "resource_name": "example-instance-851", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example851}}", + "search_line": 7661, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example851)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example851)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8e9a16f0195444b97f28ef545c0b4df37e280c160dcf504375d5f4a2caecccbb", + "line": 4358, + "resource_type": "aws_instance", + "resource_name": "example-instance-484", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example484}}", + "search_line": 4358, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example484)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example484)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "47a14cb63cd1db983f283f247bcf7263e8b712866d15e9943929841fa0878690", + "line": 5222, + "resource_type": "aws_instance", + "resource_name": "example-instance-580", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example580}}", + "search_line": 5222, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example580)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example580)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c1c953dfe1b6931425bade035b1ff6a96a694c34e5e4211e594a27541d653af0", + "line": 7634, + "resource_type": "aws_instance", + "resource_name": "example-instance-848", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example848}}", + "search_line": 7634, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example848)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example848)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7081905f00babd688973ecc152453450b6fa6f737a92c2327c3d8260c4a36784", + "line": 2468, + "resource_type": "aws_instance", + "resource_name": "example-instance-274", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example274}}", + "search_line": 2468, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example274)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example274)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "391b4673b43ad42c73de7f4e21a1bf4bcca15aadd61e7b00d73b40e1e0ac6fed", + "line": 6752, + "resource_type": "aws_instance", + "resource_name": "example-instance-750", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example750}}", + "search_line": 6752, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example750)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example750)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "733371a0d362b5be80ea0ab76da9cf68377da78e7c88585c09011d4934baa5ee", + "line": 8156, + "resource_type": "aws_instance", + "resource_name": "example-instance-906", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example906}}", + "search_line": 8156, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example906)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example906)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6b5cad38a0747e183b419b8e67522243def3fd6ebe0f81f88c323dcc078d3ffc", + "line": 5096, + "resource_type": "aws_instance", + "resource_name": "example-instance-566", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example566}}", + "search_line": 5096, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example566)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example566)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "31da6364762201621cd5d7096b9a031830567d7984bfead0020f0b180a01855a", + "line": 119, + "resource_type": "aws_instance", + "resource_name": "example-instance-13", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example13}}", + "search_line": 119, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example13)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example13)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3f4f78f0f1787e56c036a0b9ef68c398d7f2bb8e100a566ff14f5bbd658edb72", + "line": 2504, + "resource_type": "aws_instance", + "resource_name": "example-instance-278", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example278}}", + "search_line": 2504, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example278)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example278)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cf66cdb4064a56a834b235d2ca53ad34abf1271a72e9cdceccad8a130be90d0d", + "line": 6518, + "resource_type": "aws_instance", + "resource_name": "example-instance-724", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example724}}", + "search_line": 6518, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example724)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example724)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7f8a0e24ffca5347c5b4bf644ca7f8711ba0d079a11af667b44a640a435e624b", + "line": 1469, + "resource_type": "aws_instance", + "resource_name": "example-instance-163", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example163}}", + "search_line": 1469, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example163)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example163)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "777a3c29cbfe951441b2fb0abb6e62567be51004164288fac26226d91711c7e5", + "line": 2063, + "resource_type": "aws_instance", + "resource_name": "example-instance-229", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example229}}", + "search_line": 2063, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example229)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example229)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "efb3d5ecfc96aaddecc5dae0e825dace68b95c3be212f97cbbe73285523e51ca", + "line": 56, + "resource_type": "aws_instance", + "resource_name": "example-instance-6", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example6}}", + "search_line": 56, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example6)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example6)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "749d848df7a835c1c6a1674be63ae8f3591ec5e92f080481e10290b1144a89e8", + "line": 3665, + "resource_type": "aws_instance", + "resource_name": "example-instance-407", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example407}}", + "search_line": 3665, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example407)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example407)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3f8008db0119ec0a35a3b812aba19799a475cd0d784e14e18cf94c11d8373460", + "line": 2450, + "resource_type": "aws_instance", + "resource_name": "example-instance-272", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example272}}", + "search_line": 2450, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example272)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example272)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c7f2bd45b2b15d661be515b6f19fac0b9dc5f4d89f47acb1c6b30df0cb605688", + "line": 2657, + "resource_type": "aws_instance", + "resource_name": "example-instance-295", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example295}}", + "search_line": 2657, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example295)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example295)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4e19f586d462751b1d9b5a8fa0074b3ece6bad8f0199566eee0ce958d8198966", + "line": 6221, + "resource_type": "aws_instance", + "resource_name": "example-instance-691", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example691}}", + "search_line": 6221, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example691)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example691)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "43a9e1234a72e5b83ca5d7c046258130d1797625fefca966358da89adbd54f10", + "line": 758, + "resource_type": "aws_instance", + "resource_name": "example-instance-84", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example84}}", + "search_line": 758, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example84)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example84)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f2218a0445e9598e1ec4012a99a4be834829c11130cd6e3c68c64ab1b71a7be8", + "line": 3431, + "resource_type": "aws_instance", + "resource_name": "example-instance-381", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example381}}", + "search_line": 3431, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example381)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example381)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "67061e8d424ff88d5e00bb247fd1b646dbc83c671de8eb3a16567b576b120ee4", + "line": 1271, + "resource_type": "aws_instance", + "resource_name": "example-instance-141", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example141}}", + "search_line": 1271, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example141)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example141)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "23b430f774c5b9b09fd363f6891532391db8961e29b084db818da222b72659e0", + "line": 7202, + "resource_type": "aws_instance", + "resource_name": "example-instance-800", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example800}}", + "search_line": 7202, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example800)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example800)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b0d88b3e0ef45e7d4a71fb62d197425261c4190487b7bbcce3239de4351b24aa", + "line": 803, + "resource_type": "aws_instance", + "resource_name": "example-instance-89", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example89}}", + "search_line": 803, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example89)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example89)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "66711b942c63d3f6a4f00174d1a032d0cb513ce18b821bafe6b8f34b89032166", + "line": 2495, + "resource_type": "aws_instance", + "resource_name": "example-instance-277", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example277}}", + "search_line": 2495, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example277)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example277)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5c0726ff5251b4cf0c47f9575bdca72db929bd81fc19f831e787e50a6d1a778d", + "line": 560, + "resource_type": "aws_instance", + "resource_name": "example-instance-62", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example62}}", + "search_line": 560, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example62)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example62)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4f34f4d804adee71b4bc6961b11ab5fe49d1a7f85fb2c209121d159467c12773", + "line": 3980, + "resource_type": "aws_instance", + "resource_name": "example-instance-442", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example442}}", + "search_line": 3980, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example442)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example442)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4882550a866ff1ceb9afd44b0443591d3d4d8e27614cad6fba9baaa3f72b7d60", + "line": 8165, + "resource_type": "aws_instance", + "resource_name": "example-instance-907", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example907}}", + "search_line": 8165, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example907)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example907)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ee7326d9d62c0060f97d3a9ae53a7847de1a760dd85a57bfa6e9cb678cae2ff9", + "line": 2108, + "resource_type": "aws_instance", + "resource_name": "example-instance-234", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example234}}", + "search_line": 2108, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example234)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example234)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f1e55ee69b9315d832c6fb1aea2cc998d17b9f34c168b32c793c234fa576aba2", + "line": 6851, + "resource_type": "aws_instance", + "resource_name": "example-instance-761", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example761}}", + "search_line": 6851, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example761)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example761)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "08f45bd7849781dd4bef0371f8d5eef554826fc9445d297c6b02ab41e4a96d3b", + "line": 902, + "resource_type": "aws_instance", + "resource_name": "example-instance-100", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example100}}", + "search_line": 902, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example100)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example100)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5d173637cd6c7b64309c867b8130d70b65a86fbec0b4b9ebeed76f2a517b5911", + "line": 3971, + "resource_type": "aws_instance", + "resource_name": "example-instance-441", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example441}}", + "search_line": 3971, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example441)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example441)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "58cccaa9c0974e302d789068fe66bfdddb06ab5802e7272479a10d5af614d171", + "line": 8381, + "resource_type": "aws_instance", + "resource_name": "example-instance-931", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example931}}", + "search_line": 8381, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example931)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example931)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4639ca8b0958cb29ae11507e87f786080e3c38b40ccf8f107599e37fa7667257", + "line": 7445, + "resource_type": "aws_instance", + "resource_name": "example-instance-827", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example827}}", + "search_line": 7445, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example827)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example827)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6be788d191f7c5b8f65039f5bd38ef6e5ef9b036cef6af9e2d2746e8eb944029", + "line": 3548, + "resource_type": "aws_instance", + "resource_name": "example-instance-394", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example394}}", + "search_line": 3548, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example394)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example394)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "023fe31727168ae43b0a209027c49c2b5f0366fe93c0b0640bc2c0b69c435646", + "line": 7904, + "resource_type": "aws_instance", + "resource_name": "example-instance-878", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example878}}", + "search_line": 7904, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example878)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example878)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ff5116886d70b6289bdd22fa914620eb99994c99c63a156b26e1ca8003bfe2fd", + "line": 8435, + "resource_type": "aws_instance", + "resource_name": "example-instance-937", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example937}}", + "search_line": 8435, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example937)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example937)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3725c3769ec7946a71757f7de15e913bb65bdf38d7f88082756cb733996383aa", + "line": 8534, + "resource_type": "aws_instance", + "resource_name": "example-instance-948", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example948}}", + "search_line": 8534, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example948)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example948)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8d0a79decc85c83ba20378699fc957b56edd0847b6a45e46160ac4d20874a962", + "line": 20, + "resource_type": "aws_instance", + "resource_name": "example-instance-2", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example2}}", + "search_line": 20, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example2)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example2)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8ec5c10c394bc1cd6bdf94719788c028f590ac940ee304b437f9b22b55f57f5b", + "line": 2135, + "resource_type": "aws_instance", + "resource_name": "example-instance-237", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example237}}", + "search_line": 2135, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example237)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example237)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a9a561f6d977b8df8d651108539e72bf9fb25afd3aac9d43dc7fb9d549847939", + "line": 2522, + "resource_type": "aws_instance", + "resource_name": "example-instance-280", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example280}}", + "search_line": 2522, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example280)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example280)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "28a4f74a6ea95bdbbe3f45568f502d9ed81896f4e95ac57e2fa87b7e77649d19", + "line": 5861, + "resource_type": "aws_instance", + "resource_name": "example-instance-651", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example651}}", + "search_line": 5861, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example651)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example651)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "330d20148f9d36d45414ac8dec98b48d6ff2d6e50173ed229bf1f86287014030", + "line": 380, + "resource_type": "aws_instance", + "resource_name": "example-instance-42", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example42}}", + "search_line": 380, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example42)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example42)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d3c226842447c51ba8896c29629ca4e76052daa8ce76f2c2322666d05cef924e", + "line": 6617, + "resource_type": "aws_instance", + "resource_name": "example-instance-735", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example735}}", + "search_line": 6617, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example735)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example735)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2912267745489993d07ef6b781a4695235c633463faafa769edf6c3312415be7", + "line": 7832, + "resource_type": "aws_instance", + "resource_name": "example-instance-870", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example870}}", + "search_line": 7832, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example870)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example870)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2e010e09244ff587c05c13d5ffc0e785e1be145bfb5b893448131d133b6b4b3e", + "line": 6041, + "resource_type": "aws_instance", + "resource_name": "example-instance-671", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example671}}", + "search_line": 6041, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example671)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example671)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1166adeed263d6856568bfc37813a6b44577c5438c12a07eeeff31ffd61b1d2a", + "line": 1325, + "resource_type": "aws_instance", + "resource_name": "example-instance-147", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example147}}", + "search_line": 1325, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example147)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example147)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "366be4690739035382b3a0b706ded173c7aec05f520958d2b533daeaab4e9db8", + "line": 8615, + "resource_type": "aws_instance", + "resource_name": "example-instance-957", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example957}}", + "search_line": 8615, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example957)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example957)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "94718958261199fd116c926b3e5cbc609de50ad6c7e7452a4ddc48e326ec44d4", + "line": 83, + "resource_type": "aws_instance", + "resource_name": "example-instance-9", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example9}}", + "search_line": 83, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example9)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example9)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "437a61c5d2f77713eb7ffa980b4eae8083cf173dce7455bdc44fe0921e880b11", + "line": 3377, + "resource_type": "aws_instance", + "resource_name": "example-instance-375", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example375}}", + "search_line": 3377, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example375)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example375)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "958eb1c6933b8b769b230bb79a257826712a9234639458423ac3c4aa26421d1c", + "line": 4628, + "resource_type": "aws_instance", + "resource_name": "example-instance-514", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example514}}", + "search_line": 4628, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example514)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example514)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "540c05dd38975dc0f0bac97944d477f5e72e9bad44e8c9f5127353e097357637", + "line": 8030, + "resource_type": "aws_instance", + "resource_name": "example-instance-892", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example892}}", + "search_line": 8030, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example892)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example892)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f0f883ea500c8e3f1f7f5f7be241dc960034cd4cd9e93b86b8de47a74fcd2576", + "line": 3386, + "resource_type": "aws_instance", + "resource_name": "example-instance-376", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example376}}", + "search_line": 3386, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example376)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example376)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f8d97bf0f2dc52d599ee5b9cbbd13fa4a592237a2217ba0944f51bc2a34094d5", + "line": 5906, + "resource_type": "aws_instance", + "resource_name": "example-instance-656", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example656}}", + "search_line": 5906, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example656)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example656)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4374395b0bde27e859e43ff32ca41f7385bb95d442eb4e4374478e729380c9da", + "line": 6419, + "resource_type": "aws_instance", + "resource_name": "example-instance-713", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example713}}", + "search_line": 6419, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example713)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example713)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "821f4a99abe7803b6567437e5152a21cdb2b07966bb82a3c5420f3d8466f21c8", + "line": 8282, + "resource_type": "aws_instance", + "resource_name": "example-instance-920", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example920}}", + "search_line": 8282, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example920)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example920)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3963561a1db7a8f7f0de96ea9c5b0f5454986d77ac7a50664511b4a8721611f0", + "line": 8579, + "resource_type": "aws_instance", + "resource_name": "example-instance-953", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example953}}", + "search_line": 8579, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example953)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example953)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e0ee005511f0a517d841611e005d41cdf5b3f270d2b922a8df596fdde7c46497", + "line": 6860, + "resource_type": "aws_instance", + "resource_name": "example-instance-762", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example762}}", + "search_line": 6860, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example762)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example762)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7c27b7172ace8d8a533147039cdeacad515c7b213f02dd547f6806ad6286cb10", + "line": 8687, + "resource_type": "aws_instance", + "resource_name": "example-instance-965", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example965}}", + "search_line": 8687, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example965)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example965)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "562b1870c456d7bb5092261e7be62f252768fc3383f22afe6bf0cf26d28f8b79", + "line": 7877, + "resource_type": "aws_instance", + "resource_name": "example-instance-875", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example875}}", + "search_line": 7877, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example875)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example875)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9af400ef610ab2dc3d6e3c396cf90716ad4975d46392f1bc6d26460d73705078", + "line": 3395, + "resource_type": "aws_instance", + "resource_name": "example-instance-377", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example377}}", + "search_line": 3395, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example377)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example377)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "77a7c77b176f1054a825e55798a820211aa572efb20eac752974c0286d5fbfe5", + "line": 6230, + "resource_type": "aws_instance", + "resource_name": "example-instance-692", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example692}}", + "search_line": 6230, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example692)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example692)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c194cc9f0d9cd71f1ff0fbfe518d7d2d96c991dc2306c54eb640e49604a65942", + "line": 3692, + "resource_type": "aws_instance", + "resource_name": "example-instance-410", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example410}}", + "search_line": 3692, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example410)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example410)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f34f039644dac7b8e91d129f7165a5f010dc6ba991be15e654266611cce6607e", + "line": 7517, + "resource_type": "aws_instance", + "resource_name": "example-instance-835", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example835}}", + "search_line": 7517, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example835)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example835)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "520c69ac61151f92406d2275f0d3f814580d60ab4f5f8323feb0751e99242640", + "line": 8183, + "resource_type": "aws_instance", + "resource_name": "example-instance-909", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example909}}", + "search_line": 8183, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example909)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example909)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "464c2a4bde400ded1935d6df8ba3dfe82217a3bff1d7db9c62ac6f93e4868d78", + "line": 6005, + "resource_type": "aws_instance", + "resource_name": "example-instance-667", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example667}}", + "search_line": 6005, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example667)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example667)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "496fc22c0c34183b5a98a98729ab143bdb23b25dbd393c89c241083faeebe965", + "line": 6581, + "resource_type": "aws_instance", + "resource_name": "example-instance-731", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example731}}", + "search_line": 6581, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example731)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example731)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e3fac06a3913aa91100dadef574b26889fa90dd74aa98cd22386ab2fd0631bf1", + "line": 362, + "resource_type": "aws_instance", + "resource_name": "example-instance-40", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example40}}", + "search_line": 362, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example40)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example40)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c6c4e944b16d42f437a09c9f27080419573a72bf68c9b7e8f27158f08a4c7794", + "line": 7607, + "resource_type": "aws_instance", + "resource_name": "example-instance-845", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example845}}", + "search_line": 7607, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example845)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example845)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "62c5f8c1105dda1215450bf3b2335a88b9a04b806d132e67c8536fea0cb0d236", + "line": 7589, + "resource_type": "aws_instance", + "resource_name": "example-instance-843", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example843}}", + "search_line": 7589, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example843)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example843)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "de6031273085fb8a4aa4faeb68f3bfe848377501046a6a5950be6e298330d76e", + "line": 5618, + "resource_type": "aws_instance", + "resource_name": "example-instance-624", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example624}}", + "search_line": 5618, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example624)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example624)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "da6f0d924e1b419f4d7927f86a214fff316582118c404e0e523b2a95dc573712", + "line": 7004, + "resource_type": "aws_instance", + "resource_name": "example-instance-778", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example778}}", + "search_line": 7004, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example778)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example778)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f0b2595ae6af4f1da50a8aba9f9182246c1ff509f24185df3ce57a6c4adc3fda", + "line": 4988, + "resource_type": "aws_instance", + "resource_name": "example-instance-554", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example554}}", + "search_line": 4988, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example554)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example554)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ee004166a366ed664f8ae1279d7940947bee0aaaa32f0ad94c4e31c92e403037", + "line": 5519, + "resource_type": "aws_instance", + "resource_name": "example-instance-613", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example613}}", + "search_line": 5519, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example613)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example613)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2d80f0fa377365af1cbf18327663dbc27c8794e9c5c8121e9e93572d1b7cf0f0", + "line": 623, + "resource_type": "aws_instance", + "resource_name": "example-instance-69", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example69}}", + "search_line": 623, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example69)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example69)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ad8654ac4c1a92b1fb0b6d532d19d5d24d54cd168a3592d1b4753a3a7dbd715d", + "line": 3413, + "resource_type": "aws_instance", + "resource_name": "example-instance-379", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example379}}", + "search_line": 3413, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example379)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example379)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8c1e0b06dbaa0520b43114b5ee3855883a08b710d2e170df880760a719ed5cc4", + "line": 6113, + "resource_type": "aws_instance", + "resource_name": "example-instance-679", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example679}}", + "search_line": 6113, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example679)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example679)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4dd6db2507cd81e9b83ceff2c49c02b6dc54514adb100acb6f7bdc90f9699974", + "line": 1784, + "resource_type": "aws_instance", + "resource_name": "example-instance-198", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example198}}", + "search_line": 1784, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example198)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example198)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "81ca8c24cf3addc847d0f5b4ab5a500301fab02d0ddd403ef224ec3e1bb2841c", + "line": 6491, + "resource_type": "aws_instance", + "resource_name": "example-instance-721", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example721}}", + "search_line": 6491, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example721)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example721)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f56cf1edbfa527ec67fab5ef70517b3f4b015c82359b459e36483e3e7683545e", + "line": 1496, + "resource_type": "aws_instance", + "resource_name": "example-instance-166", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example166}}", + "search_line": 1496, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example166)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example166)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "94f5f5213e8cc0d7956d88925d7e9c359f52db374c44f46e7777f28e5f7a55fd", + "line": 8975, + "resource_type": "aws_instance", + "resource_name": "example-instance-997", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example997}}", + "search_line": 8975, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example997)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example997)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ea9a44a28e3d9a45e1317189fe04007fa032688b131547b45140b2af459a2580", + "line": 1343, + "resource_type": "aws_instance", + "resource_name": "example-instance-149", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example149}}", + "search_line": 1343, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example149)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example149)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "08787b8bb8a7e37d40f9df46725122b94911c43ec2e1a1be30c815ae7e56b418", + "line": 4016, + "resource_type": "aws_instance", + "resource_name": "example-instance-446", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example446}}", + "search_line": 4016, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example446)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example446)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ee29fad05e1ef475b6c7b1e336858bda583403d0a6689b40be9a72cd7c17e285", + "line": 3647, + "resource_type": "aws_instance", + "resource_name": "example-instance-405", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example405}}", + "search_line": 3647, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example405)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example405)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3d527c0939b5b8d50037793a81033dfba17b320ff6235672e01096cfcfde041b", + "line": 7346, + "resource_type": "aws_instance", + "resource_name": "example-instance-816", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example816}}", + "search_line": 7346, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example816)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example816)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "177029568009d297a00135a3211fa2ab77be4dfcc5fcd3d9565a11a2fc3e98f4", + "line": 4727, + "resource_type": "aws_instance", + "resource_name": "example-instance-525", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example525}}", + "search_line": 4727, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example525)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example525)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "26c516d4d717d9505b65ee8e49004bb0bcc84c1af6bb0562a51d00f26250910d", + "line": 6932, + "resource_type": "aws_instance", + "resource_name": "example-instance-770", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example770}}", + "search_line": 6932, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example770)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example770)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5d480e9b853a295b8ebaa967f190cdae85bc251657756a96625ecc6e4c33f308", + "line": 8660, + "resource_type": "aws_instance", + "resource_name": "example-instance-962", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example962}}", + "search_line": 8660, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example962)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example962)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "61815dc9d34728ad5097c488638aa24f4ffc0f2eedb1d62f04074d9dde9855cf", + "line": 4979, + "resource_type": "aws_instance", + "resource_name": "example-instance-553", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example553}}", + "search_line": 4979, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example553)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example553)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a2ea14991e22903badb6edd6e0422bb9dbf14b808180b1b47eee383877919871", + "line": 992, + "resource_type": "aws_instance", + "resource_name": "example-instance-110", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example110}}", + "search_line": 992, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example110)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example110)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7e46c85ed411a4b26d703431028094977ae115d3487bf4e167dedcbe71fe3997", + "line": 6482, + "resource_type": "aws_instance", + "resource_name": "example-instance-720", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example720}}", + "search_line": 6482, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example720)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example720)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "49fcf21de8316d499ab77d84d39e6fb08cab83bfe70e16766b4f4b8cfdb79d02", + "line": 173, + "resource_type": "aws_instance", + "resource_name": "example-instance-19", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example19}}", + "search_line": 173, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example19)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example19)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c55c42cd411c054feecc722a1eab5b0058a3a0c7a31e0c7f8a2eb4a360f148a0", + "line": 3287, + "resource_type": "aws_instance", + "resource_name": "example-instance-365", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example365}}", + "search_line": 3287, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example365)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example365)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "574cdaf412c7661f64f62ae4bb2b90ae09a65fa38946b27f9e3079ac8af41ef0", + "line": 3782, + "resource_type": "aws_instance", + "resource_name": "example-instance-420", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example420}}", + "search_line": 3782, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example420)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example420)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e70f3f1fcc137c057c35c0542f256abf61b8241bcb113af6f78cff358bf85308", + "line": 1811, + "resource_type": "aws_instance", + "resource_name": "example-instance-201", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example201}}", + "search_line": 1811, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example201)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example201)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a3abe73d262aa226295e2c8b3ab436b988d542adc783ffc0c1a14dcca54c94ae", + "line": 4367, + "resource_type": "aws_instance", + "resource_name": "example-instance-485", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example485}}", + "search_line": 4367, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example485)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example485)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d5c92260a387db459e9dad8d9a9101a65ff956a86658026b9a5077c884a99520", + "line": 5258, + "resource_type": "aws_instance", + "resource_name": "example-instance-584", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example584}}", + "search_line": 5258, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example584)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example584)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3931044b489727a1414c4a228aadf23bf84f5b18df3b4f6dc682e560c5e18f29", + "line": 5195, + "resource_type": "aws_instance", + "resource_name": "example-instance-577", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example577}}", + "search_line": 5195, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example577)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example577)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d822cbbbbc09bdac9231ba7dd231fef8e2c5accfb01c1cac6851d23762f48f59", + "line": 2855, + "resource_type": "aws_instance", + "resource_name": "example-instance-317", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example317}}", + "search_line": 2855, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example317)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example317)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "855d8bbf027c741c22ae94f16776994bcbe71123de1abba317faab7dc6231b6d", + "line": 3323, + "resource_type": "aws_instance", + "resource_name": "example-instance-369", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example369}}", + "search_line": 3323, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example369)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example369)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b854f1531c05db36f9de018918c63efb0e91e1da8a3f45afc5ecd8b75d1a5ad8", + "line": 8255, + "resource_type": "aws_instance", + "resource_name": "example-instance-917", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example917}}", + "search_line": 8255, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example917)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example917)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "482786c9db795761a734c8c75e4ff05683401b7c8ac228728c4bdf93e7986e7e", + "line": 8768, + "resource_type": "aws_instance", + "resource_name": "example-instance-974", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example974}}", + "search_line": 8768, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example974)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example974)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "98b7f6b8452105b9067c19ada15668d9057c0a49b7776585f9371b5a59f565d1", + "line": 5357, + "resource_type": "aws_instance", + "resource_name": "example-instance-595", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example595}}", + "search_line": 5357, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example595)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example595)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f70b0e31dded3c099bec42395a42425acd09347fba822d344db698ca39d316a4", + "line": 3791, + "resource_type": "aws_instance", + "resource_name": "example-instance-421", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example421}}", + "search_line": 3791, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example421)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example421)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "72fab73be25a59a0d8d21cf62262890064708bec5c144f67ab75343eb7c21e11", + "line": 5510, + "resource_type": "aws_instance", + "resource_name": "example-instance-612", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example612}}", + "search_line": 5510, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example612)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example612)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4f4de076a58d8b88798377f8c7808d3ea6da0e35985203b7a6bc05003e8c744c", + "line": 7706, + "resource_type": "aws_instance", + "resource_name": "example-instance-856", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example856}}", + "search_line": 7706, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example856)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example856)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "14b856ac48bc0548225b0eecf866b85c84ab30708ac16cf9d455e32f84b3676f", + "line": 4961, + "resource_type": "aws_instance", + "resource_name": "example-instance-551", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example551}}", + "search_line": 4961, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example551)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example551)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4f4b2104989c52566a4e68716ff89e96a7667da7c9aadff226f9ed76b6340549", + "line": 3917, + "resource_type": "aws_instance", + "resource_name": "example-instance-435", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example435}}", + "search_line": 3917, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example435)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example435)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e760f4f8f1ea9c9c4e27c9a87a8c29c1879d7e19e678c592b968a2894f59075e", + "line": 3044, + "resource_type": "aws_instance", + "resource_name": "example-instance-338", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example338}}", + "search_line": 3044, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example338)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example338)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c10e98444ccb7df9e74c9eb00d8c805eff9e09612e9090ae557f6d41724d581f", + "line": 8822, + "resource_type": "aws_instance", + "resource_name": "example-instance-980", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example980}}", + "search_line": 8822, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example980)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example980)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "def69f6fadd0ce681c669981e4700a476332a178f50b4513111a5922cd4b5656", + "line": 7580, + "resource_type": "aws_instance", + "resource_name": "example-instance-842", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example842}}", + "search_line": 7580, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example842)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example842)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "463f0e7054c4b218fb5872e52af4a102e2a296865ea090fd599eeefb4596bc55", + "line": 3764, + "resource_type": "aws_instance", + "resource_name": "example-instance-418", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example418}}", + "search_line": 3764, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example418)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example418)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ea8fa2041c939f1f6cfc29ec356f79d2934c8230aafb655429d9fd0ed9df3e9a", + "line": 4619, + "resource_type": "aws_instance", + "resource_name": "example-instance-513", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example513}}", + "search_line": 4619, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example513)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example513)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a5e22f6fa3061572457c6df6324f16d0fcc1eb8b282a9ff1f1616c5eac106488", + "line": 5996, + "resource_type": "aws_instance", + "resource_name": "example-instance-666", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example666}}", + "search_line": 5996, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example666)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example666)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e885249d85129b360868888e17ebbe575ebaf881ab762fd3d0f10625c5fab91c", + "line": 3134, + "resource_type": "aws_instance", + "resource_name": "example-instance-348", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example348}}", + "search_line": 3134, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example348)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example348)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f90cd1a6dd8002a67451f43bca6743cf42b3dcc249630d46af8086197648062c", + "line": 4349, + "resource_type": "aws_instance", + "resource_name": "example-instance-483", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example483}}", + "search_line": 4349, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example483)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example483)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "07bf2bb2d096a785190e8381a7cb1a390124287d4d4b93c91ab88de8bc57bbe2", + "line": 4412, + "resource_type": "aws_instance", + "resource_name": "example-instance-490", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example490}}", + "search_line": 4412, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example490)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example490)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5a40eb2473abef41fc758c2d1db01a651d9712fa81b3f7d4e6694e16a35b855b", + "line": 6707, + "resource_type": "aws_instance", + "resource_name": "example-instance-745", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example745}}", + "search_line": 6707, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example745)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example745)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1388edc672d4a49b10235509e9b95e37ab768d8cdc09cf02dc7567d406cbda0f", + "line": 308, + "resource_type": "aws_instance", + "resource_name": "example-instance-34", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example34}}", + "search_line": 308, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example34)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example34)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c6f43248976116161de362eb496165a920a631762da2e15b9613409101200206", + "line": 5969, + "resource_type": "aws_instance", + "resource_name": "example-instance-663", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example663}}", + "search_line": 5969, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example663)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example663)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e19bfa4bdcf37b1c2222891d4eb5a6bbb7747759ea990d0ff758ac46b95ec744", + "line": 1910, + "resource_type": "aws_instance", + "resource_name": "example-instance-212", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example212}}", + "search_line": 1910, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example212)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example212)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c12eab4dfc74c1da1761f185450e9c322985486e70c5302559b08cd389e572bb", + "line": 6842, + "resource_type": "aws_instance", + "resource_name": "example-instance-760", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example760}}", + "search_line": 6842, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example760)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example760)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "90f838610cb9fee35b4fd542e6656fad83be6909897d14ac6b193b421b6c7e6f", + "line": 4853, + "resource_type": "aws_instance", + "resource_name": "example-instance-539", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example539}}", + "search_line": 4853, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example539)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example539)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3eaab71d59e96e0f64dca401463cb8acb58beeccf599a7ef4df940a0b6ecdda2", + "line": 6509, + "resource_type": "aws_instance", + "resource_name": "example-instance-723", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example723}}", + "search_line": 6509, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example723)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example723)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "92ef57a9a8e4aff9235e250e571ac54d77a36b7af244f20785a6dad1ae2e5625", + "line": 5771, + "resource_type": "aws_instance", + "resource_name": "example-instance-641", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example641}}", + "search_line": 5771, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example641)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example641)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6f7b3d2800513f84bdd0fb0735792878c82e2ac3230963fa5c01477fe2231a76", + "line": 3521, + "resource_type": "aws_instance", + "resource_name": "example-instance-391", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example391}}", + "search_line": 3521, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example391)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example391)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ffe2df1d8ca4138ac3f2a09bc45491058f9a057f2ff04bf6bd1c4ea2f044152d", + "line": 3620, + "resource_type": "aws_instance", + "resource_name": "example-instance-402", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example402}}", + "search_line": 3620, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example402)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example402)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "78ca395fcbf0c7bec3599307b60173c05106bfd849581acb82b5b9b5b74478a2", + "line": 5402, + "resource_type": "aws_instance", + "resource_name": "example-instance-600", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example600}}", + "search_line": 5402, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example600)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example600)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c6e07b6cef7acd208804cafe2b4d03dcf02de97a28590f99468dc25c05ee8d6d", + "line": 8309, + "resource_type": "aws_instance", + "resource_name": "example-instance-923", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example923}}", + "search_line": 8309, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example923)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example923)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "feeea5ae3929b4f5c93f64b20dda84588f20c488cb00c109e02199b67844ec94", + "line": 2738, + "resource_type": "aws_instance", + "resource_name": "example-instance-304", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example304}}", + "search_line": 2738, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example304)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example304)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7cfa2b277c54c3c4d3d205fc15acb8387ff54cec9a304eb1b0b9510e6f433db0", + "line": 3314, + "resource_type": "aws_instance", + "resource_name": "example-instance-368", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example368}}", + "search_line": 3314, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example368)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example368)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cfc17c2794f9d18d97e40fb35c3004196c557c5c24e7e151f4a8912aafa57d8d", + "line": 2243, + "resource_type": "aws_instance", + "resource_name": "example-instance-249", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example249}}", + "search_line": 2243, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example249)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example249)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "40e98d9fc8faba261108a757ad333eff5f9690a5a767a8aaa9c0b1fc7e9baa45", + "line": 2774, + "resource_type": "aws_instance", + "resource_name": "example-instance-308", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example308}}", + "search_line": 2774, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example308)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example308)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f7326d97956c81542690c95699d2c831d168c008a540093b141278fa1d4e0328", + "line": 1226, + "resource_type": "aws_instance", + "resource_name": "example-instance-136", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example136}}", + "search_line": 1226, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example136)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example136)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "046c8c52f8e00124a1718482d92aa316461c39fa620571ada333a1873ba63e88", + "line": 8021, + "resource_type": "aws_instance", + "resource_name": "example-instance-891", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example891}}", + "search_line": 8021, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example891)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example891)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "89d5ffa74a95027987c7f62d861a7c79fbb11dc75978b4540cb3a9224bce7a48", + "line": 1883, + "resource_type": "aws_instance", + "resource_name": "example-instance-209", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example209}}", + "search_line": 1883, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example209)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example209)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1dbec2087bcac123cafb89cddfd19da4b2c645c9efe357fd37fe174d7919d35c", + "line": 5285, + "resource_type": "aws_instance", + "resource_name": "example-instance-587", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example587}}", + "search_line": 5285, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example587)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example587)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "085a56f3f4d8d5b18979a96e56ee91694d243880d7947782a4c6cb0ecb180ac9", + "line": 4700, + "resource_type": "aws_instance", + "resource_name": "example-instance-522", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example522}}", + "search_line": 4700, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example522)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example522)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "70fb4070ae680ef4b205f6b438844d3d613fef06e058829ddc91db14674def53", + "line": 5375, + "resource_type": "aws_instance", + "resource_name": "example-instance-597", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example597}}", + "search_line": 5375, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example597)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example597)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "be5d266df952964e57215b82f77878f5a72dc2a62c7eb18675bdbfb61d8f42aa", + "line": 1631, + "resource_type": "aws_instance", + "resource_name": "example-instance-181", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example181}}", + "search_line": 1631, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example181)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example181)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2089ad5c094936765122d9d4b56e539dd3b8d0637d5b9b76ecb9d4846f872c17", + "line": 4862, + "resource_type": "aws_instance", + "resource_name": "example-instance-540", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example540}}", + "search_line": 4862, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example540)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example540)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8c212d226f35ade614b28ca51475e97f50ad5ad69f266836a2faa43d42733e77", + "line": 6779, + "resource_type": "aws_instance", + "resource_name": "example-instance-753", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example753}}", + "search_line": 6779, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example753)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example753)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ace7c9844b385285490b99336fc9298bb35bcaca218a9dc6d7448b6e366d725d", + "line": 7022, + "resource_type": "aws_instance", + "resource_name": "example-instance-780", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example780}}", + "search_line": 7022, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example780)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example780)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "70818a5476a5a5ac8328feab3f06a2d38c46c217f997b2365eb0a68d06b276eb", + "line": 8039, + "resource_type": "aws_instance", + "resource_name": "example-instance-893", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example893}}", + "search_line": 8039, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example893)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example893)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "94a5a3d559892510f97ff88f3e00ca6d83e20869105220d7c2f4aeeb0d9e223e", + "line": 5177, + "resource_type": "aws_instance", + "resource_name": "example-instance-575", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example575}}", + "search_line": 5177, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example575)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example575)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2425c9d710412d72a3987ef2d0dd89a36750432314ea7cf9d9d67a4a22c0fc0f", + "line": 2711, + "resource_type": "aws_instance", + "resource_name": "example-instance-301", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example301}}", + "search_line": 2711, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example301)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example301)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "89dc787ac47a7062a7e3fea96006421ab1f494bca1ac277c226cf4539892bd26", + "line": 1802, + "resource_type": "aws_instance", + "resource_name": "example-instance-200", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example200}}", + "search_line": 1802, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example200)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example200)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9fb3e53b98dce2ed7362c091ec5605f3f0ac1b857231b4d07bb6571f8342fea1", + "line": 3359, + "resource_type": "aws_instance", + "resource_name": "example-instance-373", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example373}}", + "search_line": 3359, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example373)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example373)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "364632a435074002b0590d753e62f940b63bf3039f64cd9d711fb93c667bf663", + "line": 6878, + "resource_type": "aws_instance", + "resource_name": "example-instance-764", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example764}}", + "search_line": 6878, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example764)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example764)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "15db896d5b1b09d2e55d165d869fb8dcdfed89b051c2c6104a63818456a8a0da", + "line": 3890, + "resource_type": "aws_instance", + "resource_name": "example-instance-432", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example432}}", + "search_line": 3890, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example432)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example432)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "60ceafabd4722a9e5a90129db6628b8cd03f4ac0b20225bcbb1e3943cab86e07", + "line": 5483, + "resource_type": "aws_instance", + "resource_name": "example-instance-609", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example609}}", + "search_line": 5483, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example609)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example609)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fcd6d858b37c80bb7d1cc87e0008e06fc3bcede4e7d3655d0326701fe3da6188", + "line": 1478, + "resource_type": "aws_instance", + "resource_name": "example-instance-164", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example164}}", + "search_line": 1478, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example164)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example164)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "068ffb62ed976e42c0dbd3d1502e037085ac4cf74e1e54e7d8d8d9e6851a37c3", + "line": 6068, + "resource_type": "aws_instance", + "resource_name": "example-instance-674", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example674}}", + "search_line": 6068, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example674)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example674)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "42cb2c51a10e35e33a4206980e924791e382644242099857212634030fd6312b", + "line": 4259, + "resource_type": "aws_instance", + "resource_name": "example-instance-473", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example473}}", + "search_line": 4259, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example473)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example473)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e89f080090b5331285aae48ad59a4fae52b9e107fe017159309fb671d3cf46cb", + "line": 5591, + "resource_type": "aws_instance", + "resource_name": "example-instance-621", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example621}}", + "search_line": 5591, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example621)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example621)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dd69ab96bd603fc3a5c1ee1684dc0a33d51ac5a0618d82339fa7b0c4ca27021e", + "line": 7967, + "resource_type": "aws_instance", + "resource_name": "example-instance-885", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example885}}", + "search_line": 7967, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example885)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example885)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "391d3a64912f1a346a0a5ca5c3cfdeb1c361f3e087e8523415d6d2d3587580f8", + "line": 1181, + "resource_type": "aws_instance", + "resource_name": "example-instance-131", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example131}}", + "search_line": 1181, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example131)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example131)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f5f3be90537e233660db9dd62ac5565d6e2f0f39b5ebf78d4cc9c2fea73c19a8", + "line": 5240, + "resource_type": "aws_instance", + "resource_name": "example-instance-582", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example582}}", + "search_line": 5240, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example582)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example582)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "75e4b945a64ec3c8cf389ee7e8170ace9902842facba4e27faae0a599c51a7ec", + "line": 1406, + "resource_type": "aws_instance", + "resource_name": "example-instance-156", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example156}}", + "search_line": 1406, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example156)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example156)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "52204117a2f8b25367baac8cafe39920a88897727af05efda6bc66df444349f5", + "line": 1973, + "resource_type": "aws_instance", + "resource_name": "example-instance-219", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example219}}", + "search_line": 1973, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example219)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example219)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3ce0c226f9d9a7b4afbc2c6b67991dddd4e0881232ed3adb9df22e74fd59a548", + "line": 6887, + "resource_type": "aws_instance", + "resource_name": "example-instance-765", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example765}}", + "search_line": 6887, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example765)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example765)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5f6dd75d6412ab85f8afe5f0227ab0694e683205264a4f0a59c82cc6041b41c1", + "line": 3053, + "resource_type": "aws_instance", + "resource_name": "example-instance-339", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example339}}", + "search_line": 3053, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example339)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example339)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "47dc004bf2e0481247f8f5bda216605ac5d6cc25be53e5944cf1bd7da2a825e1", + "line": 4124, + "resource_type": "aws_instance", + "resource_name": "example-instance-458", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example458}}", + "search_line": 4124, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example458)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example458)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a55fa0546913eb14100347d5f74917b278cf6b2930051ad93ef7280b28f94c90", + "line": 92, + "resource_type": "aws_instance", + "resource_name": "example-instance-10", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example10}}", + "search_line": 92, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example10)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example10)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "af41ceb8917b6f17c02652c52542166d8685cd9421948a1678e8350cb0749924", + "line": 4142, + "resource_type": "aws_instance", + "resource_name": "example-instance-460", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example460}}", + "search_line": 4142, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example460)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example460)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dba0c90f2b4a16023f830ce68329f5eabca00e8c54eb48d262abd43c7442eb43", + "line": 1397, + "resource_type": "aws_instance", + "resource_name": "example-instance-155", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example155}}", + "search_line": 1397, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example155)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example155)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cdd66009e8f13d6aab6625497b661332bd2a381bc756d7493e69997d4eebc508", + "line": 3845, + "resource_type": "aws_instance", + "resource_name": "example-instance-427", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example427}}", + "search_line": 3845, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example427)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example427)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e0b6a786c3bea381059ee4eae721612a7e71ffdfba8a28ebdeb8687a0d1142ea", + "line": 6374, + "resource_type": "aws_instance", + "resource_name": "example-instance-708", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example708}}", + "search_line": 6374, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example708)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example708)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7927a159ef2a73ceb1c0f6f78db4a6bef87c3d6ccca5058a5814838b076f056b", + "line": 7049, + "resource_type": "aws_instance", + "resource_name": "example-instance-783", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example783}}", + "search_line": 7049, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example783)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example783)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "51032f29aa60e93c93ae7e13d7d0db2c03c54fd1789644f867fb0628a7a10086", + "line": 4052, + "resource_type": "aws_instance", + "resource_name": "example-instance-450", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example450}}", + "search_line": 4052, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example450)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example450)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d1cf1ced075d50fdcf423c6f2125bbb5019a3784af61bc481a6f14a53ae2e4ae", + "line": 7814, + "resource_type": "aws_instance", + "resource_name": "example-instance-868", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example868}}", + "search_line": 7814, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example868)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example868)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6f5b2ec8bbdb94bd6258d7c8a39e20c2a718600b5733ea1ad4465ec1531bf2bf", + "line": 8993, + "resource_type": "aws_instance", + "resource_name": "example-instance-999", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example999}}", + "search_line": 8993, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example999)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example999)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ea2a1f4b0edfa5a4f610375990cbb9cd01f11ed6e32bdaf73c02411de3447d72", + "line": 6797, + "resource_type": "aws_instance", + "resource_name": "example-instance-755", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example755}}", + "search_line": 6797, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example755)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example755)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5a329a68ebe8680c8f9f6804bd870064df675adf1f729c1e8d2032b257e32498", + "line": 884, + "resource_type": "aws_instance", + "resource_name": "example-instance-98", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example98}}", + "search_line": 884, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example98)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example98)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0aad257590a85da4e0436f1415c545b1c5b7607e28b7bb1910622e394247ad43", + "line": 182, + "resource_type": "aws_instance", + "resource_name": "example-instance-20", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example20}}", + "search_line": 182, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example20)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example20)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cc263435e3e2cd628b11ae421913c2df293f79297eda46256dbc9d6ec4920c31", + "line": 6293, + "resource_type": "aws_instance", + "resource_name": "example-instance-699", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example699}}", + "search_line": 6293, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example699)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example699)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4db6f2d1df0fecb72df2ee4c6a9e75a349f6984d0efd001b70906bdeb47b17df", + "line": 5105, + "resource_type": "aws_instance", + "resource_name": "example-instance-567", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example567}}", + "search_line": 5105, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example567)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example567)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "72706930014e4d65412a35d9b20dcd85214bbc70981ced2b3ae0077a4e743ee5", + "line": 6833, + "resource_type": "aws_instance", + "resource_name": "example-instance-759", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example759}}", + "search_line": 6833, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example759)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example759)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "22cbe7141c81f7f1f7eed30e3e918f99dad977d99b667a2193664123e5127bd9", + "line": 7139, + "resource_type": "aws_instance", + "resource_name": "example-instance-793", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example793}}", + "search_line": 7139, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example793)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example793)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "08803e56fac512ccc750013c7e9087f86e69c064763f08345c43bbab3ba598b5", + "line": 1514, + "resource_type": "aws_instance", + "resource_name": "example-instance-168", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example168}}", + "search_line": 1514, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example168)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example168)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3e01fc667ad1194d9e9a7201dea315f74748de3a2828ff5fb927da6e26b50614", + "line": 965, + "resource_type": "aws_instance", + "resource_name": "example-instance-107", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example107}}", + "search_line": 965, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example107)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example107)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e3ff01326c50b0e335edb95e335aff60912189877b51800eecd1ce63ed81d30b", + "line": 3710, + "resource_type": "aws_instance", + "resource_name": "example-instance-412", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example412}}", + "search_line": 3710, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example412)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example412)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0450d9137b3e64dc0b143dd60e0c213395e5b7a56fd32395a582eebe9d6d910b", + "line": 6311, + "resource_type": "aws_instance", + "resource_name": "example-instance-701", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example701}}", + "search_line": 6311, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example701)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example701)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f8a3ade36dd190560cf59210bcd7862f613a1220dc5ffb1288931a1341c573e3", + "line": 7031, + "resource_type": "aws_instance", + "resource_name": "example-instance-781", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example781}}", + "search_line": 7031, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example781)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example781)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d0f06dd5927e2ec791f3e5577607d1ab5862c80d84676bbcff1373c25c442bb0", + "line": 7328, + "resource_type": "aws_instance", + "resource_name": "example-instance-814", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example814}}", + "search_line": 7328, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example814)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example814)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "430b3a7456d3aa55604807072eacfb6b5522c823021dcc2779f481170dd30a17", + "line": 4844, + "resource_type": "aws_instance", + "resource_name": "example-instance-538", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example538}}", + "search_line": 4844, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example538)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example538)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "994548f80cfc2a2dfde77b9bbe7619acce2b9a258cd9a438df29b9c4873b2ce3", + "line": 3152, + "resource_type": "aws_instance", + "resource_name": "example-instance-350", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example350}}", + "search_line": 3152, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example350)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example350)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ef9b868b84731540673260f929c9dee228f0452a0344455c5c485751cc744ad1", + "line": 452, + "resource_type": "aws_instance", + "resource_name": "example-instance-50", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example50}}", + "search_line": 452, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example50)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example50)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bc91628980bf3d21b53de1fe9c4b2af31bd74c2f278b23cbf9e78be15d515f47", + "line": 7544, + "resource_type": "aws_instance", + "resource_name": "example-instance-838", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example838}}", + "search_line": 7544, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example838)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example838)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f4553113e41adca22d04f00fa45329404bc2fa37e38931edbcb261da8bdeba83", + "line": 4484, + "resource_type": "aws_instance", + "resource_name": "example-instance-498", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example498}}", + "search_line": 4484, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example498)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example498)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c297aa798e7692d3d0b72ac24e31f46bcdd121b5935b14542000ffe895974ef9", + "line": 1793, + "resource_type": "aws_instance", + "resource_name": "example-instance-199", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example199}}", + "search_line": 1793, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example199)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example199)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "23fac684345e2586671b8af1ae60a8f059d2741698bb7ac22f3f3cf9b014b8e1", + "line": 7472, + "resource_type": "aws_instance", + "resource_name": "example-instance-830", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example830}}", + "search_line": 7472, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example830)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example830)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b3d69f47d158e7f8a28c6e92f07568323f4f4b8b1257231c7e46ff4dd747a081", + "line": 9002, + "resource_type": "aws_instance", + "resource_name": "example-instance-1000", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example1000}}", + "search_line": 9002, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example1000)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example1000)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "54c7ee873d4fa89d06135b1000c5dc53c39a8822ba0c18c319e422bd69162275", + "line": 2333, + "resource_type": "aws_instance", + "resource_name": "example-instance-259", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example259}}", + "search_line": 2333, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example259)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example259)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e8db0af4aa6342015e3befe5df5c699e75fca2f6b2c49ca119982985622f2e11", + "line": 3197, + "resource_type": "aws_instance", + "resource_name": "example-instance-355", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example355}}", + "search_line": 3197, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example355)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example355)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9f3202c39ccec991b908020c8cd9839ada308b0542954a28ef8b72e0c8c3a5ec", + "line": 5825, + "resource_type": "aws_instance", + "resource_name": "example-instance-647", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example647}}", + "search_line": 5825, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example647)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example647)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f18b117f7200c09fb55d16add27b4a95a91d90adbf0f17c86855fc9eda3e853c", + "line": 6788, + "resource_type": "aws_instance", + "resource_name": "example-instance-754", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example754}}", + "search_line": 6788, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example754)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example754)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f8b0db741620c7272decd194d69d454cd527dcde7487db0b9f7a7927bb81e701", + "line": 7481, + "resource_type": "aws_instance", + "resource_name": "example-instance-831", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example831}}", + "search_line": 7481, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example831)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example831)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a5d4d86c51eda323c9c7bb52d535debbf73feb5910aa29854e00dd5a4921a9c5", + "line": 290, + "resource_type": "aws_instance", + "resource_name": "example-instance-32", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example32}}", + "search_line": 290, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example32)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example32)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "41dc03bd1a494e2895980681f80453b94fd0b4a220867cf3c8c59d9669e05e66", + "line": 7085, + "resource_type": "aws_instance", + "resource_name": "example-instance-787", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example787}}", + "search_line": 7085, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example787)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example787)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bd0726c19228bf162c55b0d32a0eb269a5639d3b27492aa3e4a5126d683ddef2", + "line": 2918, + "resource_type": "aws_instance", + "resource_name": "example-instance-324", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example324}}", + "search_line": 2918, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example324)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example324)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "89130ca4a7eb8c3c24cf4d32496f60fc90cc767be69afee084e6939e5939b6d5", + "line": 6158, + "resource_type": "aws_instance", + "resource_name": "example-instance-684", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example684}}", + "search_line": 6158, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example684)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example684)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1ee5c65e609c0181c6204dde1c4fa2b9939a37685b63046ab7dc10939de8cc14", + "line": 704, + "resource_type": "aws_instance", + "resource_name": "example-instance-78", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example78}}", + "search_line": 704, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example78)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example78)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7ccc54325a6a6ebbf3f7f8e15aa8b3f76d4dc80de17fd3051d351d2cf54f172a", + "line": 7949, + "resource_type": "aws_instance", + "resource_name": "example-instance-883", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example883}}", + "search_line": 7949, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example883)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example883)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7149db2cafbeb2113a07829579ad2dbc1fdb5fa90d74f48feaee3edc38eaf0ce", + "line": 2018, + "resource_type": "aws_instance", + "resource_name": "example-instance-224", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example224}}", + "search_line": 2018, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example224)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example224)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0bc0154aa83a7656ef4eeb9f91e31b420f9576615edb9f99fb9abe640ba06558", + "line": 4241, + "resource_type": "aws_instance", + "resource_name": "example-instance-471", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example471}}", + "search_line": 4241, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example471)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example471)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b037b06d37c51d760e9a9526140a80040cec5f36073378d0ab55d01334c05eb5", + "line": 8003, + "resource_type": "aws_instance", + "resource_name": "example-instance-889", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example889}}", + "search_line": 8003, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example889)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example889)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d4f81520678712d456689449ed1b3af1e5dcaa947e2f799f6f4ebe34bcaa1718", + "line": 1289, + "resource_type": "aws_instance", + "resource_name": "example-instance-143", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example143}}", + "search_line": 1289, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example143)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example143)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4a58c92fffca966c1408abd8c2af6f58977ccd829f70c7bb7dd1bc99b5f60a7c", + "line": 7391, + "resource_type": "aws_instance", + "resource_name": "example-instance-821", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example821}}", + "search_line": 7391, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example821)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example821)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "45285ed46e7ba4a7b87c9f1cdff8aa97e2a8ab37a08f780cb67ab9bef8e686bc", + "line": 5879, + "resource_type": "aws_instance", + "resource_name": "example-instance-653", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example653}}", + "search_line": 5879, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example653)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example653)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4213575ee3e4524465a11692f630276b3eeddd151f51bcd7e9b983017427d5ff", + "line": 7310, + "resource_type": "aws_instance", + "resource_name": "example-instance-812", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example812}}", + "search_line": 7310, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example812)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example812)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a56ef9e24c04a8ef5726fc3690c7d1c036493922f73272520b8746f15b01fc9f", + "line": 875, + "resource_type": "aws_instance", + "resource_name": "example-instance-97", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example97}}", + "search_line": 875, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example97)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example97)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "df1fc84adfce01efe1fe3614dda386cab3d7d3fb590e5c4b44bcdd055eba8039", + "line": 5780, + "resource_type": "aws_instance", + "resource_name": "example-instance-642", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example642}}", + "search_line": 5780, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example642)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example642)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6d5eca9afe4d8e0ffabf49056fcb77a190f04067703353a520d8b925c1dc5eef", + "line": 5672, + "resource_type": "aws_instance", + "resource_name": "example-instance-630", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example630}}", + "search_line": 5672, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example630)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example630)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5699463990476b487d88d12d53ddfdaa11ffe5118b9bd92ded9fecfc47b2a589", + "line": 6347, + "resource_type": "aws_instance", + "resource_name": "example-instance-705", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example705}}", + "search_line": 6347, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example705)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example705)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2154d827a60d4c0e7cbefca107b2d3ae958b6c893b50bc3f5dc01029969f64d3", + "line": 929, + "resource_type": "aws_instance", + "resource_name": "example-instance-103", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example103}}", + "search_line": 929, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example103)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example103)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "958b9bc6fe2228e6011c08cf2d9bc5beb2dfc0a0acdf1ee5fc8fe646d7b7d391", + "line": 8102, + "resource_type": "aws_instance", + "resource_name": "example-instance-900", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example900}}", + "search_line": 8102, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example900)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example900)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a27f6f1a9d2a76695270126fdaa05e792e01698c829af4ed0c888d6400c928fc", + "line": 8480, + "resource_type": "aws_instance", + "resource_name": "example-instance-942", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example942}}", + "search_line": 8480, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example942)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example942)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bba60cac50990bd7947de3c899c67b22dc173ee28c8f79263c41c36f151fc8a7", + "line": 1865, + "resource_type": "aws_instance", + "resource_name": "example-instance-207", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example207}}", + "search_line": 1865, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example207)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example207)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "470f1c2f0f150323e07b9823d6bb2b5ef3f16c4e02581ba89fd6f39abaaf2fde", + "line": 7058, + "resource_type": "aws_instance", + "resource_name": "example-instance-784", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example784}}", + "search_line": 7058, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example784)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example784)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "40306923576b1d3d7563e3c6eeacd1b26d3e1288c6ece11142b1928c18e081ad", + "line": 5069, + "resource_type": "aws_instance", + "resource_name": "example-instance-563", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example563}}", + "search_line": 5069, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example563)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example563)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1190438e898b4875549ed9f6792a38c7a1a715dd6c6e5caf04c26d8cb5c7165b", + "line": 2945, + "resource_type": "aws_instance", + "resource_name": "example-instance-327", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example327}}", + "search_line": 2945, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example327)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example327)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a3d72d21a2408fff8f58b81c2c2ed1930f8e946f00df916f48c004d6fd40512b", + "line": 4655, + "resource_type": "aws_instance", + "resource_name": "example-instance-517", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example517}}", + "search_line": 4655, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example517)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example517)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e00106aa448e7644f2deb9a48ad5be0332ccabc15da0981e2b50467ef88dd850", + "line": 1433, + "resource_type": "aws_instance", + "resource_name": "example-instance-159", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example159}}", + "search_line": 1433, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example159)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example159)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4951bc976f327ac54bd213f650598e7766d0f3f75d63801b02bf1dd212b8eab1", + "line": 191, + "resource_type": "aws_instance", + "resource_name": "example-instance-21", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example21}}", + "search_line": 191, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example21)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example21)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ad8e116a2b6095c769bb0622e3cd7200e514802304384373a8f8f7f3c7a3c55c", + "line": 2198, + "resource_type": "aws_instance", + "resource_name": "example-instance-244", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example244}}", + "search_line": 2198, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example244)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example244)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c09ce3e04367d4ffa37bd078b7aa194351a250b3cac61a148931bdc889a80a8a", + "line": 5852, + "resource_type": "aws_instance", + "resource_name": "example-instance-650", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example650}}", + "search_line": 5852, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example650)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example650)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "30cca1ca49dd798e1f6bffcb0216c6718603b1d6bddf22de8ac93067a793a463", + "line": 7067, + "resource_type": "aws_instance", + "resource_name": "example-instance-785", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example785}}", + "search_line": 7067, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example785)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example785)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4338922a0f1221584340e622a3af14500da5c5a57abb4ec02e48e4cd01946b89", + "line": 2675, + "resource_type": "aws_instance", + "resource_name": "example-instance-297", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example297}}", + "search_line": 2675, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example297)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example297)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f9f100ad62c5437b2045a729e37f16a460e3d16096be196c2c6b0ec56181c8f2", + "line": 5024, + "resource_type": "aws_instance", + "resource_name": "example-instance-558", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example558}}", + "search_line": 5024, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example558)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example558)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a97f827d5d9c47b27a361c234a5a012a5aaff07852b621c679302dc05d5e16e8", + "line": 812, + "resource_type": "aws_instance", + "resource_name": "example-instance-90", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example90}}", + "search_line": 812, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example90)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example90)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "505558174839503b1e270b43247d8cfb5003cadcdb132dd9dda2d8968fa7795d", + "line": 2027, + "resource_type": "aws_instance", + "resource_name": "example-instance-225", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example225}}", + "search_line": 2027, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example225)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example225)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d5a2279e3fafcb1dd71bead0f29f18efed5088e0812558edb94477d20b3c6829", + "line": 4205, + "resource_type": "aws_instance", + "resource_name": "example-instance-467", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example467}}", + "search_line": 4205, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example467)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example467)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "eb1e326bc423304759580af3556effac50077e4e8c29b360232ec323a0e8cf2f", + "line": 4025, + "resource_type": "aws_instance", + "resource_name": "example-instance-447", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example447}}", + "search_line": 4025, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example447)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example447)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b93e8087da73bb720710fff1a1966612d5f151b4fba4405355df0d1d9fa1cca8", + "line": 2513, + "resource_type": "aws_instance", + "resource_name": "example-instance-279", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example279}}", + "search_line": 2513, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example279)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example279)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0f5bd37aba2040dfa84b9b2e1fdd9ddbbfdb4381aea9d7987cf62f706c40bf54", + "line": 1604, + "resource_type": "aws_instance", + "resource_name": "example-instance-178", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example178}}", + "search_line": 1604, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example178)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example178)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "376554975543e649dd71aa5bab4f6bd80a49704254bfb1f3bf2294325a6c7477", + "line": 1118, + "resource_type": "aws_instance", + "resource_name": "example-instance-124", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example124}}", + "search_line": 1118, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example124)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example124)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5bff314e91b9ae5e6ba88c8f24307c44dfdfd7c51606a66ae328f8cb1ecc1268", + "line": 6824, + "resource_type": "aws_instance", + "resource_name": "example-instance-758", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example758}}", + "search_line": 6824, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example758)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example758)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9f00bd21feea3f36b1f6d789a44a8558cfae5308c5fc59c4ac370c48b501b5c1", + "line": 974, + "resource_type": "aws_instance", + "resource_name": "example-instance-108", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example108}}", + "search_line": 974, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example108)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example108)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4d8b5d6b5f77afc3e3798400153007313f296496953408fbc891bc32b30f346c", + "line": 4907, + "resource_type": "aws_instance", + "resource_name": "example-instance-545", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example545}}", + "search_line": 4907, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example545)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example545)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "285ab117d25eb1261cd493237f89215baeb822f59ec17d64ffc11d116fe11f76", + "line": 8813, + "resource_type": "aws_instance", + "resource_name": "example-instance-979", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example979}}", + "search_line": 8813, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example979)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example979)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2dd3ddb2b9959a72df48c4416edcd6e9ad1b7a2f2105dd6373a8606fdb7b2b8b", + "line": 4322, + "resource_type": "aws_instance", + "resource_name": "example-instance-480", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example480}}", + "search_line": 4322, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example480)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example480)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4281efdbf36cdd915aa569c994b05621882c21358b853af8dd1a6506544f1ce6", + "line": 3953, + "resource_type": "aws_instance", + "resource_name": "example-instance-439", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example439}}", + "search_line": 3953, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example439)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example439)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ffe0ef030a84b8707a6ee91e9ea6ef4c4bd8c91fb0d618a361dd6cbcdc976e07", + "line": 1946, + "resource_type": "aws_instance", + "resource_name": "example-instance-216", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example216}}", + "search_line": 1946, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example216)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example216)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "35498d88a07fc850569547c9d4ee2edf3b30038eb9956cf2d754f0d77ef3cc10", + "line": 3683, + "resource_type": "aws_instance", + "resource_name": "example-instance-409", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example409}}", + "search_line": 3683, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example409)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example409)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9d28404f7b2637ca413680458a688acf7594f5f4731f95defa34af720697f72d", + "line": 4970, + "resource_type": "aws_instance", + "resource_name": "example-instance-552", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example552}}", + "search_line": 4970, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example552)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example552)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f6c3aef8f3381475f94b79128876a1f5a7ac2b53747ee8cd350b972299a9f57f", + "line": 5213, + "resource_type": "aws_instance", + "resource_name": "example-instance-579", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example579}}", + "search_line": 5213, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example579)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example579)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ab47e2b02d8b8545760ae2c07340eb014778b6dd559e65cdc074e06950e2fc15", + "line": 4088, + "resource_type": "aws_instance", + "resource_name": "example-instance-454", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example454}}", + "search_line": 4088, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example454)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example454)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7ea616696a62352c9fa70f01efd18f734e4b2326e9f134fbb01b9576097bfc51", + "line": 6626, + "resource_type": "aws_instance", + "resource_name": "example-instance-736", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example736}}", + "search_line": 6626, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example736)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example736)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e36d0ff449c9791d39c4f50a3c818c8dd5fced9b666594d9ff79e949a068f507", + "line": 677, + "resource_type": "aws_instance", + "resource_name": "example-instance-75", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example75}}", + "search_line": 677, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example75)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example75)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0f9eec8d8991676af25828b0991f458c5d2006e1bd366ab41f1aa9fb9ff9499a", + "line": 605, + "resource_type": "aws_instance", + "resource_name": "example-instance-67", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example67}}", + "search_line": 605, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example67)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example67)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dd78feac53f76e6a13ab50d8d44d4de61a4bb1c243d76e0d725635326d9ff2b1", + "line": 2000, + "resource_type": "aws_instance", + "resource_name": "example-instance-222", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example222}}", + "search_line": 2000, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example222)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example222)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f9668c157998eb07d8e404bec7ea3fa417c9518779895e421cd7233bd56b11dd", + "line": 4880, + "resource_type": "aws_instance", + "resource_name": "example-instance-542", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example542}}", + "search_line": 4880, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example542)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example542)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b5b356f73842e0ae5a5e701cdc1c6b9abd1946b541aa8f369aa30d2473045143", + "line": 272, + "resource_type": "aws_instance", + "resource_name": "example-instance-30", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example30}}", + "search_line": 272, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example30)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example30)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f96f5d527f52d387806aba7cec115524746819307cd3d2eacf1e8e070129badc", + "line": 3746, + "resource_type": "aws_instance", + "resource_name": "example-instance-416", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example416}}", + "search_line": 3746, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example416)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example416)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3d2aeee8771a815aa48e277e3833ea9c767f607b14132399d5ab368cab36eac2", + "line": 7229, + "resource_type": "aws_instance", + "resource_name": "example-instance-803", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example803}}", + "search_line": 7229, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example803)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example803)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bceeff6f8e342b12e7b1d653d395bde9b662a0ab03923892f8e36914b047bf55", + "line": 1874, + "resource_type": "aws_instance", + "resource_name": "example-instance-208", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example208}}", + "search_line": 1874, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example208)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example208)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f43825c7fc42e54b96385c8a6cd2b854d5aa8c6192f47961ea5097a3c4408619", + "line": 2873, + "resource_type": "aws_instance", + "resource_name": "example-instance-319", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example319}}", + "search_line": 2873, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example319)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example319)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2651971c2592d6b51cae86e12eeb3da20a4695dd700224fb4ccbac60348b7402", + "line": 326, + "resource_type": "aws_instance", + "resource_name": "example-instance-36", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example36}}", + "search_line": 326, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example36)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example36)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "aa2f14a3c36851af47427291385de0253ff16335a4a740a5a48e79a31d69658a", + "line": 6563, + "resource_type": "aws_instance", + "resource_name": "example-instance-729", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example729}}", + "search_line": 6563, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example729)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example729)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c1aaedb98e9778c24e22bf394a2f4e1ba81ebf48751881706be95c92a602fe9a", + "line": 1109, + "resource_type": "aws_instance", + "resource_name": "example-instance-123", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example123}}", + "search_line": 1109, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example123)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example123)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ab3948a431c17b0f54db137c1bafc948ceb52afe56d45f4cb209301fd3ed532a", + "line": 3125, + "resource_type": "aws_instance", + "resource_name": "example-instance-347", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example347}}", + "search_line": 3125, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example347)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example347)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b5642be9cba8ffa3e0d471c52ba450496205fac105822b94f4c755ac3236234c", + "line": 3656, + "resource_type": "aws_instance", + "resource_name": "example-instance-406", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example406}}", + "search_line": 3656, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example406)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example406)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c2499d9f3a2374018881769c3a5b6ebf898b2d629e5c4c79e95275e7b9a67bac", + "line": 5528, + "resource_type": "aws_instance", + "resource_name": "example-instance-614", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example614}}", + "search_line": 5528, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example614)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example614)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d8d78cafb42fef6ba25274b5006e2be9744d058b97ff6f259c0ec56a1c40244d", + "line": 6464, + "resource_type": "aws_instance", + "resource_name": "example-instance-718", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example718}}", + "search_line": 6464, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example718)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example718)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "37f063f2fa619cdd19309ff63c489c8d16b99f1347e5d9de01c66ff070f1e1ba", + "line": 2585, + "resource_type": "aws_instance", + "resource_name": "example-instance-287", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example287}}", + "search_line": 2585, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example287)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example287)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "135f1849921bb47351d5fbdb46908602d3f1b95174168be563c303c427930532", + "line": 5501, + "resource_type": "aws_instance", + "resource_name": "example-instance-611", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example611}}", + "search_line": 5501, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example611)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example611)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "39cabef1b50bccfc794b893ceb4fba91ccf14f90073c45c73ea10f9acd064799", + "line": 6176, + "resource_type": "aws_instance", + "resource_name": "example-instance-686", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example686}}", + "search_line": 6176, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example686)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example686)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a35fefe7f1cc22f4da323afbd6c91fc9a1364e3be132c2c7c0550458b09bc72f", + "line": 2567, + "resource_type": "aws_instance", + "resource_name": "example-instance-285", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example285}}", + "search_line": 2567, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example285)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example285)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "82fc46c637292eb4f6c1da43a3468f447156dbb5459093632bee913f1d8ba7eb", + "line": 3737, + "resource_type": "aws_instance", + "resource_name": "example-instance-415", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example415}}", + "search_line": 3737, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example415)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example415)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2bc52c003a32403a32da6de9f052dea9efdaeeabc672903e8cd2ce1c385df49c", + "line": 6671, + "resource_type": "aws_instance", + "resource_name": "example-instance-741", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example741}}", + "search_line": 6671, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example741)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example741)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "71a9052de97c8dea162e14d1e93a3e852702ca9342e5cf3b853ef4a64058f168", + "line": 893, + "resource_type": "aws_instance", + "resource_name": "example-instance-99", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example99}}", + "search_line": 893, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example99)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example99)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7679bd7307caa1c2755775769aafbac12da37526e4285b6d90141fce73ec1014", + "line": 5654, + "resource_type": "aws_instance", + "resource_name": "example-instance-628", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example628}}", + "search_line": 5654, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example628)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example628)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7c5dd8122fd8e182dbedc560fb9f7a14e1af61fc8bcfd9e48a8336d63496cebd", + "line": 7121, + "resource_type": "aws_instance", + "resource_name": "example-instance-791", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example791}}", + "search_line": 7121, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example791)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example791)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5058370681c662a94314cf4c7db895c058646840645134202f64258ffb643081", + "line": 911, + "resource_type": "aws_instance", + "resource_name": "example-instance-101", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example101}}", + "search_line": 911, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example101)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example101)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d04037730ec090c538e8a04db0c9a0a84e64eaa0677b961ffcbfc2fd6ec2748c", + "line": 2792, + "resource_type": "aws_instance", + "resource_name": "example-instance-310", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example310}}", + "search_line": 2792, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example310)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example310)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2ec5144a869cf5c53ec7b857511f62eae4a52b5979982cfecc9bf475877dd6d0", + "line": 5123, + "resource_type": "aws_instance", + "resource_name": "example-instance-569", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example569}}", + "search_line": 5123, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example569)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example569)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ec805b13d5d3237d4d1507c9f3a302cdb087639fe3a997137c4ae6ac17eff9bd", + "line": 8651, + "resource_type": "aws_instance", + "resource_name": "example-instance-961", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example961}}", + "search_line": 8651, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example961)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example961)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "04063444ce25576be90ba6954f7cf5c52e7925ec1967bcf8aabf08aca8f3df3f", + "line": 1055, + "resource_type": "aws_instance", + "resource_name": "example-instance-117", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example117}}", + "search_line": 1055, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example117)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example117)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e32d580a0e5a4e20eff2ab1b45a57e286d043fd27ec5bfd915c7df1089a7d00a", + "line": 6428, + "resource_type": "aws_instance", + "resource_name": "example-instance-714", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example714}}", + "search_line": 6428, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example714)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example714)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bc01f1dfad69c2fd11bd2ac6283a3a27d1e318473619b45585cfcf4f4cdbc7bc", + "line": 4151, + "resource_type": "aws_instance", + "resource_name": "example-instance-461", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example461}}", + "search_line": 4151, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example461)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example461)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "40242de0112cd7a1d961300c927ec10585d7cb9d5631eb858ecc4fe049e741de", + "line": 5933, + "resource_type": "aws_instance", + "resource_name": "example-instance-659", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example659}}", + "search_line": 5933, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example659)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example659)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5b80ddbe0df3fcd808101eaa4f064aed6e7b959a6922fc0f32ab8ba081728166", + "line": 1829, + "resource_type": "aws_instance", + "resource_name": "example-instance-203", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example203}}", + "search_line": 1829, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example203)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example203)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c867957f0a6a6c946bd47bdbfc608784061ce5f18415625b82ca330a2885ff7a", + "line": 8633, + "resource_type": "aws_instance", + "resource_name": "example-instance-959", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example959}}", + "search_line": 8633, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example959)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example959)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e0d6eead01b451065616d64c8bc5ccc2d006a83037d363cce54ba064bd7a9582", + "line": 4637, + "resource_type": "aws_instance", + "resource_name": "example-instance-515", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example515}}", + "search_line": 4637, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example515)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example515)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "231f02d6a289c6acee87bdec9ceb242e924a268b28391a18e4d3721c608e67b0", + "line": 1010, + "resource_type": "aws_instance", + "resource_name": "example-instance-112", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example112}}", + "search_line": 1010, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example112)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example112)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9664852e98b9d1d9b0e7cf9886038fd29bdeaebb83ff4e8c82865fe61c584f61", + "line": 1136, + "resource_type": "aws_instance", + "resource_name": "example-instance-126", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example126}}", + "search_line": 1136, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example126)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example126)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0d1d0704d51e7f3ebeb88fb554609904ce8a86cc6964a5f78d2739eed992e4b4", + "line": 8066, + "resource_type": "aws_instance", + "resource_name": "example-instance-896", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example896}}", + "search_line": 8066, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example896)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example896)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7b7a11f6c1d044dec4b0256e57fd219d5a2086becf3e712704043e1bf57df99d", + "line": 5132, + "resource_type": "aws_instance", + "resource_name": "example-instance-570", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example570}}", + "search_line": 5132, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example570)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example570)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9439ee606bea00823e2a1a471dd637c2d9f4f985420a00e79cabe9fcc797bd47", + "line": 5942, + "resource_type": "aws_instance", + "resource_name": "example-instance-660", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example660}}", + "search_line": 5942, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example660)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example660)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "15253909212677aaa005d15bc6ad9bf6bd333c6825bc188d2f41806d97c56490", + "line": 29, + "resource_type": "aws_instance", + "resource_name": "example-instance-3", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example3}}", + "search_line": 29, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example3)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example3)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fd0c26dec20f0cadba5740bb04bced7bcfa44ce5a7c7ba8a89c8c73298ca0f67", + "line": 1937, + "resource_type": "aws_instance", + "resource_name": "example-instance-215", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example215}}", + "search_line": 1937, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example215)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example215)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cddf9d4bbc64e799a3820447e851f16872e5c8281cb40f3ebec6e51ff7f96387", + "line": 3224, + "resource_type": "aws_instance", + "resource_name": "example-instance-358", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example358}}", + "search_line": 3224, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example358)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example358)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2f4c564c4fa4670291905e6e5a750daa49ef2a424ed5e48ddb5863439f3bdb3f", + "line": 7715, + "resource_type": "aws_instance", + "resource_name": "example-instance-857", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example857}}", + "search_line": 7715, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example857)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example857)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ec731fff3efe4023923d672f8767afd7c4d584a6a1fc526d2aae9a150d9727ed", + "line": 8057, + "resource_type": "aws_instance", + "resource_name": "example-instance-895", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example895}}", + "search_line": 8057, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example895)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example895)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "61e62e4f12f504a83ea5155043f12734acedec60b75cd558b8519fd25e8295eb", + "line": 1928, + "resource_type": "aws_instance", + "resource_name": "example-instance-214", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example214}}", + "search_line": 1928, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example214)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example214)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "57ef15c276c9d7d053f01a79b2fe823fa148598afa66bf4b2769134646465351", + "line": 8624, + "resource_type": "aws_instance", + "resource_name": "example-instance-958", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example958}}", + "search_line": 8624, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example958)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example958)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e97c73b7e7070c885bf0c636dbb0061dd0af062f5cef81ddf6f3453310d887f9", + "line": 5312, + "resource_type": "aws_instance", + "resource_name": "example-instance-590", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example590}}", + "search_line": 5312, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example590)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example590)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "20cf117bcd9eb3f1c3f07070196318bad0247f3ba0959ae7e9d9125b7d6138c1", + "line": 857, + "resource_type": "aws_instance", + "resource_name": "example-instance-95", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example95}}", + "search_line": 857, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example95)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example95)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c69a685f6ffd772d210ac87a6e9086326c87c8518f2d84779f2c1f0a30baea97", + "line": 3989, + "resource_type": "aws_instance", + "resource_name": "example-instance-443", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example443}}", + "search_line": 3989, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example443)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example443)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d7583ab5fae3dac5c66b171f9cf6b7fee1ffe36cc2ec74686a9b7fa1a4dcae3f", + "line": 6050, + "resource_type": "aws_instance", + "resource_name": "example-instance-672", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example672}}", + "search_line": 6050, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example672)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example672)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "32c1502f5129838aa88094c107f9f5621cf4ee677c53f051ef2f6e639cce8223", + "line": 2846, + "resource_type": "aws_instance", + "resource_name": "example-instance-316", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example316}}", + "search_line": 2846, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example316)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example316)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "940d04d3817095cc2f67ebf9b1c31d88f02d37f55abf144abe11ae05cf323c6c", + "line": 1595, + "resource_type": "aws_instance", + "resource_name": "example-instance-177", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example177}}", + "search_line": 1595, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example177)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example177)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7834a0f7c4392070744224e750877dd2c7b90397fee15275bf86490992729bc4", + "line": 8849, + "resource_type": "aws_instance", + "resource_name": "example-instance-983", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example983}}", + "search_line": 8849, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example983)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example983)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "007351d9d40700de964ea4a72446926b316c432f84149ea5b0446775a300407e", + "line": 2540, + "resource_type": "aws_instance", + "resource_name": "example-instance-282", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example282}}", + "search_line": 2540, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example282)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example282)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b58aaac7be0542d1ff8c433c57f0f239a82add9fb8f2e34110314d907cbae38e", + "line": 263, + "resource_type": "aws_instance", + "resource_name": "example-instance-29", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example29}}", + "search_line": 263, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example29)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example29)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "12dd5ee4f5c230796bfc1e48d0069663109cf68e2e725ea7dfadbe096477a79a", + "line": 7742, + "resource_type": "aws_instance", + "resource_name": "example-instance-860", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example860}}", + "search_line": 7742, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example860)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example860)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9935553cb061b34d792b4bfa575594938661f5bbd43a52c251e29e7b68637d00", + "line": 8705, + "resource_type": "aws_instance", + "resource_name": "example-instance-967", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example967}}", + "search_line": 8705, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example967)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example967)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4e5cc7ba12f9c6f0b195791d97b442093b59aa0e7a8b5a63f7b050d447f60f5e", + "line": 3485, + "resource_type": "aws_instance", + "resource_name": "example-instance-387", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example387}}", + "search_line": 3485, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example387)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example387)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "16d91ac84e756b21990142dc7658d311932c54f1a6c1cf479a6a086671d413c4", + "line": 2828, + "resource_type": "aws_instance", + "resource_name": "example-instance-314", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example314}}", + "search_line": 2828, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example314)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example314)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b73215fb65a0515d9225a0dd622e5cab06606599fa476e4a74750d43874df8c2", + "line": 344, + "resource_type": "aws_instance", + "resource_name": "example-instance-38", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example38}}", + "search_line": 344, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example38)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example38)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "33a98f6bd2f72c2b259c259e6caa90014eb7f85bafcbdc14c61d5a9e3ffc62c0", + "line": 4160, + "resource_type": "aws_instance", + "resource_name": "example-instance-462", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example462}}", + "search_line": 4160, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example462)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example462)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "428e1027dc7463e28fb3d610e120c47432d18f15700bbeb0d162f0cb10e88e6f", + "line": 6473, + "resource_type": "aws_instance", + "resource_name": "example-instance-719", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example719}}", + "search_line": 6473, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example719)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example719)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8ecae298853c2b8087083d3f23daeb0d4ab6747a242f301f12069c75742a0b59", + "line": 4718, + "resource_type": "aws_instance", + "resource_name": "example-instance-524", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example524}}", + "search_line": 4718, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example524)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example524)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4b3410c63478636692441dfc6a52bf0715231bba031c796a7fa5a9ccb1d6c4d1", + "line": 8129, + "resource_type": "aws_instance", + "resource_name": "example-instance-903", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example903}}", + "search_line": 8129, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example903)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example903)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "08df6b41a385c1afd75077e4147726ac2ee29b01d38b5d3fa97d6216e5106463", + "line": 497, + "resource_type": "aws_instance", + "resource_name": "example-instance-55", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example55}}", + "search_line": 497, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example55)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example55)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a201cf8457e00bfeec7f6713a2697e2cc403843e9c9aa16b5ee5544d0327cb62", + "line": 5915, + "resource_type": "aws_instance", + "resource_name": "example-instance-657", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example657}}", + "search_line": 5915, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example657)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example657)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e4254a7b4d680fac077b88af0c52771be5a08b4ba0501ab9e733af1a8e93b12d", + "line": 8147, + "resource_type": "aws_instance", + "resource_name": "example-instance-905", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example905}}", + "search_line": 8147, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example905)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example905)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "04680a6755bb47ebeb7ae3b5907f6d69b88d7e296318a576e1386ebe47f41dfc", + "line": 8399, + "resource_type": "aws_instance", + "resource_name": "example-instance-933", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example933}}", + "search_line": 8399, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example933)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example933)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "631126dc68db494ec12885813b369bc97675633d26434e14ef4ec6174f68255a", + "line": 1694, + "resource_type": "aws_instance", + "resource_name": "example-instance-188", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example188}}", + "search_line": 1694, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example188)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example188)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cb954e4a6ecf25d1bf257b20b81da4f6291e39cfc7d48f92e9b5b4b007e87f78", + "line": 3899, + "resource_type": "aws_instance", + "resource_name": "example-instance-433", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example433}}", + "search_line": 3899, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example433)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example433)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bc10c1abba31f92f88d225d896303db5f5fdec62ef8244df46b1d8d9a5db89fd", + "line": 4754, + "resource_type": "aws_instance", + "resource_name": "example-instance-528", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example528}}", + "search_line": 4754, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example528)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example528)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "02adc36207ffacc952840f085905c9b15c8ef0f18a47a2ac88c211dd729aeb70", + "line": 3494, + "resource_type": "aws_instance", + "resource_name": "example-instance-388", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example388}}", + "search_line": 3494, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example388)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example388)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "039bca0475d178ffd718182c692c069cc179607d79b8b2dbbda049ed17707a05", + "line": 8669, + "resource_type": "aws_instance", + "resource_name": "example-instance-963", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example963}}", + "search_line": 8669, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example963)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example963)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "561547581dde63579d0edadaf0e8193d0efe95a6aa446f55e2cfacb4c8eca30e", + "line": 3674, + "resource_type": "aws_instance", + "resource_name": "example-instance-408", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example408}}", + "search_line": 3674, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example408)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example408)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ac313e5524890450e20b99a0e2792f1c348d17b4e7490d8bb3b7fa6e8389bd80", + "line": 5060, + "resource_type": "aws_instance", + "resource_name": "example-instance-562", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example562}}", + "search_line": 5060, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example562)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example562)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "149af785574f7ae8c2ae9f9960bbd4727fef2da86afd8c5e7cc86cbabe35b47c", + "line": 2819, + "resource_type": "aws_instance", + "resource_name": "example-instance-313", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example313}}", + "search_line": 2819, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example313)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example313)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "79a2776452398125769464cca2b9603fc1fa437dacf6efccb88276c58fae0b75", + "line": 2999, + "resource_type": "aws_instance", + "resource_name": "example-instance-333", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example333}}", + "search_line": 2999, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example333)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example333)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0496e4f9ca32a5fbb8a0a5c2048ae20e8ca244cd850c5be6f7ea863a7a019f7b", + "line": 218, + "resource_type": "aws_instance", + "resource_name": "example-instance-24", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example24}}", + "search_line": 218, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example24)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example24)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f6e14f562b38b6cb6ee112ddd2061ab673da8e8adfba2e3fa51e99870b2606fa", + "line": 5006, + "resource_type": "aws_instance", + "resource_name": "example-instance-556", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example556}}", + "search_line": 5006, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example556)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example556)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e272f50c292a5400bdbe1f7361431f2267f50f5360f73873f7c7459273f165e7", + "line": 3476, + "resource_type": "aws_instance", + "resource_name": "example-instance-386", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example386}}", + "search_line": 3476, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example386)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example386)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "20f31b0fd3267c65546d64c620f68db2810f8a0cbbfcd98f0e9239eb17541816", + "line": 6284, + "resource_type": "aws_instance", + "resource_name": "example-instance-698", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example698}}", + "search_line": 6284, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example698)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example698)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d9cf48d2d1025a11be92c3831007ceef8479d393c4bffb6963c7f9af73a5825f", + "line": 767, + "resource_type": "aws_instance", + "resource_name": "example-instance-85", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example85}}", + "search_line": 767, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example85)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example85)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2012331d614990c63275a0d596f8bff575b3b42bb47a068e6f9caac938633ffb", + "line": 3701, + "resource_type": "aws_instance", + "resource_name": "example-instance-411", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example411}}", + "search_line": 3701, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example411)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example411)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "353c428f925d0c441f022ffbce086c1a7f7153e7d61b3b8bf2e2e9037c8fa84d", + "line": 6149, + "resource_type": "aws_instance", + "resource_name": "example-instance-683", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example683}}", + "search_line": 6149, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example683)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example683)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6f1278c48555d02b161c183a712d0f3cbb388aeabdc8bdaefde3d267989c93ac", + "line": 641, + "resource_type": "aws_instance", + "resource_name": "example-instance-71", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example71}}", + "search_line": 641, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example71)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example71)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a881dddbcab0d186cf1c9374e17f3a446dcc384f8612c54385b53397ce77d25d", + "line": 3332, + "resource_type": "aws_instance", + "resource_name": "example-instance-370", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example370}}", + "search_line": 3332, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example370)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example370)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ecc1ceec9e4ac2391b93409dd37ba6811fabb66829f91107313282e9d6b5f99e", + "line": 1028, + "resource_type": "aws_instance", + "resource_name": "example-instance-114", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example114}}", + "search_line": 1028, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example114)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example114)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "819aa824dff7b03ed2f93e89d5868824960a86ba82b4765b47b176bff672d6f8", + "line": 6131, + "resource_type": "aws_instance", + "resource_name": "example-instance-681", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example681}}", + "search_line": 6131, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example681)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example681)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f5b9552b977158ffb82fd671953c4401f53160535f2997ae6273d390e4dc7baa", + "line": 5546, + "resource_type": "aws_instance", + "resource_name": "example-instance-616", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example616}}", + "search_line": 5546, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example616)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example616)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3991c19da8c2471b86b8dbb639897a8f2a422f855f7c2bfc362caea1655a5030", + "line": 3440, + "resource_type": "aws_instance", + "resource_name": "example-instance-382", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example382}}", + "search_line": 3440, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example382)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example382)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "39ed610000ee04ace9eeecafaf5050f6af0e3976550f02f69696b8824a74c386", + "line": 6743, + "resource_type": "aws_instance", + "resource_name": "example-instance-749", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example749}}", + "search_line": 6743, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example749)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example749)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1090fd828d55224641e8902ce68f6fb33474931951aaa311ac0c6a654ec16499", + "line": 3026, + "resource_type": "aws_instance", + "resource_name": "example-instance-336", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example336}}", + "search_line": 3026, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example336)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example336)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c5a7f81e68ab20a86f5c3a18ca66eb1060bb3b745f176d6fbae59178ddf3dd18", + "line": 4061, + "resource_type": "aws_instance", + "resource_name": "example-instance-451", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example451}}", + "search_line": 4061, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example451)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example451)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "21b2775b1de558f5e30e9dfe5be254b8476b6a1ad35902170f8dc36f8fb82459", + "line": 506, + "resource_type": "aws_instance", + "resource_name": "example-instance-56", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example56}}", + "search_line": 506, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example56)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example56)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ff31a6e080124a2db99975998d7d3f0ab4f8043b497199bec661431df7e6d5bd", + "line": 7292, + "resource_type": "aws_instance", + "resource_name": "example-instance-810", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example810}}", + "search_line": 7292, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example810)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example810)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b16a835a12dae6f9309008c5d5623877a459e23ae05319e6ccb922959ffd7b30", + "line": 3593, + "resource_type": "aws_instance", + "resource_name": "example-instance-399", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example399}}", + "search_line": 3593, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example399)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example399)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "06d769c509d30625efb242cc3062c3432f4613a29238f6a5295682ce65b62e7a", + "line": 2234, + "resource_type": "aws_instance", + "resource_name": "example-instance-248", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example248}}", + "search_line": 2234, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example248)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example248)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "787a382ebfcd22f9c2474cf2b6dd03d337aa086048db204277c8b04366630d52", + "line": 8444, + "resource_type": "aws_instance", + "resource_name": "example-instance-938", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example938}}", + "search_line": 8444, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example938)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example938)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "96533d03ed4073de0cd911038007fbfa4b0f69eb3b36b44e9827e34a8a2c56f0", + "line": 4304, + "resource_type": "aws_instance", + "resource_name": "example-instance-478", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example478}}", + "search_line": 4304, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example478)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example478)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ec2a28e3c0a4eba32baf44586b5ee411f9fcfd81fd55935e263515638667220a", + "line": 4889, + "resource_type": "aws_instance", + "resource_name": "example-instance-543", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example543}}", + "search_line": 4889, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example543)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example543)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "aa7457e8ed014d165f36e058256048486b19720fc2d5228953c4d7d16abdf0c9", + "line": 2396, + "resource_type": "aws_instance", + "resource_name": "example-instance-266", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example266}}", + "search_line": 2396, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example266)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example266)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b7a433c2c825a586371babfd566e618f351cbf55afa82ac6ba4fb5d52e8a565e", + "line": 6140, + "resource_type": "aws_instance", + "resource_name": "example-instance-682", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example682}}", + "search_line": 6140, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example682)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example682)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "86d69997a2c2885aad381d8b7c650a7cea301c5b66e180374ba88a9b27496485", + "line": 2297, + "resource_type": "aws_instance", + "resource_name": "example-instance-255", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example255}}", + "search_line": 2297, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example255)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example255)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9b24fe2c0743d30d01b490cf94d4af850b509466fb67ef890bf38f6d36cdbbce", + "line": 713, + "resource_type": "aws_instance", + "resource_name": "example-instance-79", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example79}}", + "search_line": 713, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example79)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example79)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "80913600d3a72640d0091d70db027e6b5cd20b374112401b0b4db7157664a1db", + "line": 7535, + "resource_type": "aws_instance", + "resource_name": "example-instance-837", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example837}}", + "search_line": 7535, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example837)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example837)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d2e833e66c54e871f32cb5d9db5c09f9dfc4f07aecee82ca68da6af9c3d6b070", + "line": 1037, + "resource_type": "aws_instance", + "resource_name": "example-instance-115", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example115}}", + "search_line": 1037, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example115)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example115)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1accefed3ddf644a74434c5752d73040968c84c9b56ba926afb5c33c352b9a2c", + "line": 722, + "resource_type": "aws_instance", + "resource_name": "example-instance-80", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example80}}", + "search_line": 722, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example80)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example80)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1ca17abf740fe1e2b39ced2fd039170a9b9155a72e9f1a9b245eae0604485ba8", + "line": 8219, + "resource_type": "aws_instance", + "resource_name": "example-instance-913", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example913}}", + "search_line": 8219, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example913)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example913)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "92ca11d81905099e1bafed0fc84706026944a36643d8e728ce72589212d3d195", + "line": 8930, + "resource_type": "aws_instance", + "resource_name": "example-instance-992", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example992}}", + "search_line": 8930, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example992)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example992)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b0714e6d56d4e4e0dde3584e9d4baec499fe5e5c6e9010c8aa2bf510e397ef67", + "line": 74, + "resource_type": "aws_instance", + "resource_name": "example-instance-8", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example8}}", + "search_line": 74, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example8)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example8)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fea17c0e82d887ff7a1c671ad9bb4c57f3ecbc335b73ee50972e87ea3dd0454f", + "line": 3341, + "resource_type": "aws_instance", + "resource_name": "example-instance-371", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example371}}", + "search_line": 3341, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example371)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example371)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8d5361596c5da24401389a4da743ce97063ecd8f9e4b414155e574260d05489a", + "line": 4925, + "resource_type": "aws_instance", + "resource_name": "example-instance-547", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example547}}", + "search_line": 4925, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example547)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example547)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e8ee408065075875cc3f065cecf5fc1e75ac8d1ec6a6eb7cf8ceab572e96e4de", + "line": 4745, + "resource_type": "aws_instance", + "resource_name": "example-instance-527", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example527}}", + "search_line": 4745, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example527)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example527)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "aaa0122db04bb212808178f2d48d07af6035c5c4e496e086f8704072a0f58e9f", + "line": 5015, + "resource_type": "aws_instance", + "resource_name": "example-instance-557", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example557}}", + "search_line": 5015, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example557)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example557)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "95b3604dda959a62ffea6cb1b6639379168f4aab915b62f124289f6dae4ab08b", + "line": 6761, + "resource_type": "aws_instance", + "resource_name": "example-instance-751", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example751}}", + "search_line": 6761, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example751)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example751)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0e39e6bcb751dc777210946bc017c21684651f7cb93d0467103cd53d05a5b842", + "line": 3089, + "resource_type": "aws_instance", + "resource_name": "example-instance-343", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example343}}", + "search_line": 3089, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example343)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example343)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "36593bbd7d773e5d6692fdea51e96cb1bec74a3818ab635aed1da2de7e479245", + "line": 6815, + "resource_type": "aws_instance", + "resource_name": "example-instance-757", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example757}}", + "search_line": 6815, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example757)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example757)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3ea72ff570e4cf1eb082225c16fa26b7ee8b98614683ea503c1c5ba94af3d93e", + "line": 2900, + "resource_type": "aws_instance", + "resource_name": "example-instance-322", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example322}}", + "search_line": 2900, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example322)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example322)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c6b5032fc7eba60a564bd9979225a6c23fc556967df9ccbaa8f10a2e346c27f7", + "line": 5816, + "resource_type": "aws_instance", + "resource_name": "example-instance-646", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example646}}", + "search_line": 5816, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example646)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example646)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cb2b4fa79d96e9c08fbc819b8d9c84ea3bc9b7b951a759e1b1b42fbc8d7e10a4", + "line": 2702, + "resource_type": "aws_instance", + "resource_name": "example-instance-300", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example300}}", + "search_line": 2702, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example300)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example300)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "306c9f2fc872502f7cd36c9f8f31f44601370dc63730d88b8c93e662c4ab00af", + "line": 4394, + "resource_type": "aws_instance", + "resource_name": "example-instance-488", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example488}}", + "search_line": 4394, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example488)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example488)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1bde13f165b902b3cc2384b2cf90f7a673638c0db3199a1fef65930eb9b90acd", + "line": 4763, + "resource_type": "aws_instance", + "resource_name": "example-instance-529", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example529}}", + "search_line": 4763, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example529)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example529)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f5ea1b711edc0479d627d8dfba3566af16d5210116d913aa7224dfc250d7c278", + "line": 4943, + "resource_type": "aws_instance", + "resource_name": "example-instance-549", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example549}}", + "search_line": 4943, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example549)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example549)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9f3d671fff10b152ed0f02f722408cd07158d965a834dd7bb98a65bdeaf61ff8", + "line": 5033, + "resource_type": "aws_instance", + "resource_name": "example-instance-559", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example559}}", + "search_line": 5033, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example559)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example559)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6097c9578e5a0dc2a56b379967426a90eb4bb25847cee57e8e3d98a9c021a54b", + "line": 4133, + "resource_type": "aws_instance", + "resource_name": "example-instance-459", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example459}}", + "search_line": 4133, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example459)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example459)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "50700a1f6aa085834bd6354bbab7af705fd2642c50ca053ba3b222a9f18ebfba", + "line": 6365, + "resource_type": "aws_instance", + "resource_name": "example-instance-707", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example707}}", + "search_line": 6365, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example707)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example707)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0e51a6591ba81fe9dfcd79cfc125f543bfa613ecb4efe05eff6cbf64d049a2bc", + "line": 6923, + "resource_type": "aws_instance", + "resource_name": "example-instance-769", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example769}}", + "search_line": 6923, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example769)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example769)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1287dcb03ee55806bc76f4fab5144b1219859c410a22b85d39e7f2d8c5bf5416", + "line": 2684, + "resource_type": "aws_instance", + "resource_name": "example-instance-298", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example298}}", + "search_line": 2684, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example298)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example298)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "264484fd37c11ecd51b5b914f4347aee3cd33eb20a784b2d54672c999a904b08", + "line": 3755, + "resource_type": "aws_instance", + "resource_name": "example-instance-417", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example417}}", + "search_line": 3755, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example417)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example417)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d7572e6aec938ae51e4187b62fe1f9f16c2fabfde23f24161eb02f83a0d0e9ad", + "line": 200, + "resource_type": "aws_instance", + "resource_name": "example-instance-22", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example22}}", + "search_line": 200, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example22)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example22)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e2c80ebbd090dc27e86613d63412aa8d4044b0f2f2156aa36227e9246dea0fbe", + "line": 5330, + "resource_type": "aws_instance", + "resource_name": "example-instance-592", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example592}}", + "search_line": 5330, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example592)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example592)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f80c687a6c779cea738b8ce24c8872b20ed323c77049d9141bc874e035ab648e", + "line": 5564, + "resource_type": "aws_instance", + "resource_name": "example-instance-618", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example618}}", + "search_line": 5564, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example618)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example618)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5321eed0c7e0adbd05986e7c64ed7ce6d09002142d534aece95231aa3deb150c", + "line": 8948, + "resource_type": "aws_instance", + "resource_name": "example-instance-994", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example994}}", + "search_line": 8948, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example994)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example994)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3b60da68faf8fe90a3f4d350f0beff9607d807f39ca0c7a01de2b692d302661b", + "line": 3251, + "resource_type": "aws_instance", + "resource_name": "example-instance-361", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example361}}", + "search_line": 3251, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example361)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example361)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3972cf0f2277c28ec5b4906da4bce97b1b9609e29c676a171a7edf0cd70df17c", + "line": 4493, + "resource_type": "aws_instance", + "resource_name": "example-instance-499", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example499}}", + "search_line": 4493, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example499)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example499)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "acebffdc5e163f035f5ddf395d7266f8520a438eab7ddd3453f2d84ab1637505", + "line": 2324, + "resource_type": "aws_instance", + "resource_name": "example-instance-258", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example258}}", + "search_line": 2324, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example258)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example258)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7ff3a64da05172bc6a7e8c8dcbd5c1050d0bc1ec71fb4731e3174b076224746f", + "line": 2432, + "resource_type": "aws_instance", + "resource_name": "example-instance-270", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example270}}", + "search_line": 2432, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example270)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example270)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9dfeebcbe15ca14bfa850bf144e90c07b21409720c5691e768599600f20a6998", + "line": 4799, + "resource_type": "aws_instance", + "resource_name": "example-instance-533", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example533}}", + "search_line": 4799, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example533)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example533)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "20d96a6be5cf1f230b8da246ee1f859151c21e807b85d5dea86751920466bacc", + "line": 5924, + "resource_type": "aws_instance", + "resource_name": "example-instance-658", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example658}}", + "search_line": 5924, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example658)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example658)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6a78639e3d8707f1c5e33ae5d0f773d195a129c1a05a75bb5ab4c0b68aee84ff", + "line": 6401, + "resource_type": "aws_instance", + "resource_name": "example-instance-711", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example711}}", + "search_line": 6401, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example711)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example711)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "84d58d0eb4a1f743b8fdcf243f0f59e7d145c6c990e0378e623dfd21b7e23993", + "line": 7886, + "resource_type": "aws_instance", + "resource_name": "example-instance-876", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example876}}", + "search_line": 7886, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example876)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example876)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0e8c8bafa992d27c71eb516a9341342269f2a478a2330379340005d265588075", + "line": 740, + "resource_type": "aws_instance", + "resource_name": "example-instance-82", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example82}}", + "search_line": 740, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example82)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example82)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0f2756c1a5fc89c18484c21235b0413badb1a1650f138b09f4102b501ab8a8d8", + "line": 6356, + "resource_type": "aws_instance", + "resource_name": "example-instance-706", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example706}}", + "search_line": 6356, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example706)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example706)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9849624270d3035c5f6c39f0e8f3a36d678cc226310b502de6939181d1b4cd0a", + "line": 8552, + "resource_type": "aws_instance", + "resource_name": "example-instance-950", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example950}}", + "search_line": 8552, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example950)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example950)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4e7031ec588a8607f5524889d84eb374d7f6d7853fc4131358f23d4cebb31ebf", + "line": 2288, + "resource_type": "aws_instance", + "resource_name": "example-instance-254", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example254}}", + "search_line": 2288, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example254)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example254)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dc4900fdebf89064bb0a37230fc57f57abf85b857c0259398894ee5d428d2b67", + "line": 4808, + "resource_type": "aws_instance", + "resource_name": "example-instance-534", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example534}}", + "search_line": 4808, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example534)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example534)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7907203216d4f94a86f124435912523e5d554031dc42add889d98440aacac769", + "line": 2081, + "resource_type": "aws_instance", + "resource_name": "example-instance-231", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example231}}", + "search_line": 2081, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example231)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example231)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2fdd4d37ef93767be837b2ffcd68426f3cb9bb6fd1711a88ad65fd3a233dfe88", + "line": 8300, + "resource_type": "aws_instance", + "resource_name": "example-instance-922", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example922}}", + "search_line": 8300, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example922)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example922)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a5ce4b78c75241080b50f882e749b3d22d6b109bef6db9a50c253a91871e4dd7", + "line": 4448, + "resource_type": "aws_instance", + "resource_name": "example-instance-494", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example494}}", + "search_line": 4448, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example494)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example494)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b7e0b5cf6f8fd14229b4f2be7fc602ed6c62e81c83c39058e9b6a18e3fafd39a", + "line": 2054, + "resource_type": "aws_instance", + "resource_name": "example-instance-228", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example228}}", + "search_line": 2054, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example228)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example228)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5dc61c395e4a3a088d408bc0251d53b16cd05f3405e4ca68e961b6d22633a56e", + "line": 209, + "resource_type": "aws_instance", + "resource_name": "example-instance-23", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example23}}", + "search_line": 209, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example23)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example23)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2a52dcdc369da530450c5bcb95c9a610cb3725e9a6b5413fe071e648b929e7bd", + "line": 2954, + "resource_type": "aws_instance", + "resource_name": "example-instance-328", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example328}}", + "search_line": 2954, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example328)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example328)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "11233354d9a1e442e45fb505a2708564e616957d9acdd57cb7b2f077521f792d", + "line": 1586, + "resource_type": "aws_instance", + "resource_name": "example-instance-176", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example176}}", + "search_line": 1586, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example176)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example176)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d672882f589e0c765d146b9bbfbb6635d7be32c669f03a8e6c528418b1c58e78", + "line": 1217, + "resource_type": "aws_instance", + "resource_name": "example-instance-135", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example135}}", + "search_line": 1217, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example135)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example135)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6532c356e02b3c70c427c0f8b8294ada553a788b25980381a4b172fdde8f964e", + "line": 479, + "resource_type": "aws_instance", + "resource_name": "example-instance-53", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example53}}", + "search_line": 479, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example53)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example53)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "41e4bf0b0317fcc0586a3a573ec98a86377589415c1a6d4591512dedced637da", + "line": 6320, + "resource_type": "aws_instance", + "resource_name": "example-instance-702", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example702}}", + "search_line": 6320, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example702)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example702)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f1a67d4cbb2d33abaa62d0a024f5f96e697ee3bfaf61bde297fda15fe62aa0a5", + "line": 1361, + "resource_type": "aws_instance", + "resource_name": "example-instance-151", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example151}}", + "search_line": 1361, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example151)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example151)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5ee471f0c3417a564222925a19f23cbd197f740ec4d4c576239aecf8a056863d", + "line": 2972, + "resource_type": "aws_instance", + "resource_name": "example-instance-330", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example330}}", + "search_line": 2972, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example330)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example330)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "77483be919ac410c4863781a8aa5faf13126b2736882b87848807dfa15cae26a", + "line": 155, + "resource_type": "aws_instance", + "resource_name": "example-instance-17", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example17}}", + "search_line": 155, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example17)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example17)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "511fa35633fb56f9008f50a503926d7484f7dd885dc7b07964b42675a8820778", + "line": 371, + "resource_type": "aws_instance", + "resource_name": "example-instance-41", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example41}}", + "search_line": 371, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example41)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example41)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "273c2994d9d78a0e24e53e9c2941f2677054f060fd03bbe2f66872d3ffd22987", + "line": 4457, + "resource_type": "aws_instance", + "resource_name": "example-instance-495", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example495}}", + "search_line": 4457, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example495)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example495)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "beb77fd73c750fd127b4b57d2b0cdb1c0b0a15e94fcd4a55bed4b7fd9598e9d0", + "line": 1208, + "resource_type": "aws_instance", + "resource_name": "example-instance-134", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example134}}", + "search_line": 1208, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example134)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example134)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7720a215b530913417943e7004763f15d8bfa8a3d77209da85fe47697dcf923a", + "line": 128, + "resource_type": "aws_instance", + "resource_name": "example-instance-14", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example14}}", + "search_line": 128, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example14)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example14)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cd0d7f35456dba87c4c2473958175cfe5834851901e0c7988b4a5e7def0307ae", + "line": 8489, + "resource_type": "aws_instance", + "resource_name": "example-instance-943", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example943}}", + "search_line": 8489, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example943)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example943)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "10ceb7bdf112f08750636022182e8ca3594ff53e9a1cb307101f158419593bfe", + "line": 5744, + "resource_type": "aws_instance", + "resource_name": "example-instance-638", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example638}}", + "search_line": 5744, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example638)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example638)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2b1e4326d0db06c20ad93ad8527b8816b3245696f4bb0082401567617a622bdf", + "line": 7283, + "resource_type": "aws_instance", + "resource_name": "example-instance-809", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example809}}", + "search_line": 7283, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example809)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example809)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9a4c52ccc931b6e90f5d8cb802a26317a8d4b34e1de53c7abab6563a8f95bd03", + "line": 7148, + "resource_type": "aws_instance", + "resource_name": "example-instance-794", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example794}}", + "search_line": 7148, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example794)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example794)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8479b8982e0ee48c06f4baf5d1f917ad271c4a606a977160f383c4bc43ff2091", + "line": 569, + "resource_type": "aws_instance", + "resource_name": "example-instance-63", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example63}}", + "search_line": 569, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example63)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example63)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c112dc89374343ba3070fea0ef70cc7589d90270ab3fece0d68fa09a9120eb44", + "line": 8759, + "resource_type": "aws_instance", + "resource_name": "example-instance-973", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example973}}", + "search_line": 8759, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example973)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example973)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "17e2d8785086010c3d47b9fccc7246bfee1ae9986cd0ae72ed77c43573872b6d", + "line": 6455, + "resource_type": "aws_instance", + "resource_name": "example-instance-717", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example717}}", + "search_line": 6455, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example717)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example717)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bc8a81e3f1987343c38dfb154ff05a581ea5a6034e5f84c2b65ddd99918761cb", + "line": 4070, + "resource_type": "aws_instance", + "resource_name": "example-instance-452", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example452}}", + "search_line": 4070, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example452)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example452)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "49df5f4a02498c6a11ef74d986a3cc59e5db43d78716647262de3ef2a1e5e144", + "line": 7112, + "resource_type": "aws_instance", + "resource_name": "example-instance-790", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example790}}", + "search_line": 7112, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example790)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example790)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bf99f8301c85915775063d5c514ac49bfd1acd2a0b474a1693618ae227260035", + "line": 2117, + "resource_type": "aws_instance", + "resource_name": "example-instance-235", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example235}}", + "search_line": 2117, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example235)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example235)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "08bbe0e90d1fb0305def6eb69683544a12a0ec6f471b18bcbe7ce47d3468e105", + "line": 8426, + "resource_type": "aws_instance", + "resource_name": "example-instance-936", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example936}}", + "search_line": 8426, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example936)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example936)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7ad69b2d76c7a62a6f45aae04814f03005eb62f4daee7d9be61136839afeccf8", + "line": 8597, + "resource_type": "aws_instance", + "resource_name": "example-instance-955", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example955}}", + "search_line": 8597, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example955)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example955)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1aea3e7abbe8b46499c2c9e57cb75cf9219e26bec5843e939f0a7f651a4644ca", + "line": 5897, + "resource_type": "aws_instance", + "resource_name": "example-instance-655", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example655}}", + "search_line": 5897, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example655)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example655)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "07bac940e8b1d72cc526f4212b1f8a352f237dd49a8718288cc0b65a65297703", + "line": 236, + "resource_type": "aws_instance", + "resource_name": "example-instance-26", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example26}}", + "search_line": 236, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example26)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example26)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "eccc8e7fdcfa6e42daa5cb8e132e8870f5e1931b1b29879bf5b22785bf16e189", + "line": 8867, + "resource_type": "aws_instance", + "resource_name": "example-instance-985", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example985}}", + "search_line": 8867, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example985)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example985)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "30ba4ed0c6da82fd459227a06aa00d74a9d4d5c6ca6d7223d719b21a6c491b51", + "line": 5978, + "resource_type": "aws_instance", + "resource_name": "example-instance-664", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example664}}", + "search_line": 5978, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example664)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example664)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9d7e62cc72a67d086c93a7daeabc677af70ea37f264ec8bf486d268e7ea576a5", + "line": 3035, + "resource_type": "aws_instance", + "resource_name": "example-instance-337", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example337}}", + "search_line": 3035, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example337)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example337)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "14ba5b48602a1539d4310e63e37c832a1ad73a4509d65c999d8103e3d7e71b78", + "line": 4601, + "resource_type": "aws_instance", + "resource_name": "example-instance-511", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example511}}", + "search_line": 4601, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example511)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example511)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "299fde7c63f5f999fd410773dedeb862c44313717dc091bb3dde30e8315e6a00", + "line": 2252, + "resource_type": "aws_instance", + "resource_name": "example-instance-250", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example250}}", + "search_line": 2252, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example250)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example250)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f51a0beab62c66d08e01bbb4dac3b8715317a6e16afa913d74a62cd0e98ad0a1", + "line": 821, + "resource_type": "aws_instance", + "resource_name": "example-instance-91", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example91}}", + "search_line": 821, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example91)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example91)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c19cffa541bc34d296f79880ce6629823c29e63c240f31138f6002d7700bcc6f", + "line": 8273, + "resource_type": "aws_instance", + "resource_name": "example-instance-919", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example919}}", + "search_line": 8273, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example919)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example919)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "68adc9856971f8c0298dc9bb95b78ef3e97a6208211396a5f6d58d39894c45db", + "line": 2801, + "resource_type": "aws_instance", + "resource_name": "example-instance-311", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example311}}", + "search_line": 2801, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example311)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example311)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c93a919d3b7435a16adf4f3f8e2cedc554056bfffa7b06a2cfc2a2d62d3780f9", + "line": 6599, + "resource_type": "aws_instance", + "resource_name": "example-instance-733", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example733}}", + "search_line": 6599, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example733)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example733)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dba26c5dac9b7db966b6139beb91f26e6b4573dfb1b4b4a68ec911acd3edfd5f", + "line": 1550, + "resource_type": "aws_instance", + "resource_name": "example-instance-172", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example172}}", + "search_line": 1550, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example172)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example172)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "100a7566db33856f835c9d89c5b8c5e482c88890e6319de22bc5ac4665730454", + "line": 8345, + "resource_type": "aws_instance", + "resource_name": "example-instance-927", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example927}}", + "search_line": 8345, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example927)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example927)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "614a3dde4fcdbf55499ee60e24f96ff704f7d60a3067f6dbe7c6bdb70fba1cde", + "line": 1019, + "resource_type": "aws_instance", + "resource_name": "example-instance-113", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example113}}", + "search_line": 1019, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example113)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example113)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b80f39a36eec8ec6f4f871f8f60aacdc5d87be374ac0f6ce00b938868a6c7524", + "line": 6446, + "resource_type": "aws_instance", + "resource_name": "example-instance-716", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example716}}", + "search_line": 6446, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example716)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example716)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4d04eff429acd0be898d9140ed1b865693a33dc9b4cc9561ebd42df33b6c0447", + "line": 2837, + "resource_type": "aws_instance", + "resource_name": "example-instance-315", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example315}}", + "search_line": 2837, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example315)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example315)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c684d81889d134d0f0de29ca02049ccebec2f2b517f42399c96dddb5b33d450f", + "line": 8885, + "resource_type": "aws_instance", + "resource_name": "example-instance-987", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example987}}", + "search_line": 8885, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example987)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example987)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3e19373acb6ea85b22bcbafa6c60913685377b2121a310efa868983f0934563d", + "line": 2648, + "resource_type": "aws_instance", + "resource_name": "example-instance-294", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example294}}", + "search_line": 2648, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example294)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example294)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "50eb978095cfa6a33620e769ec5e025e582dfb275fd3e76328813de11a96e19d", + "line": 1748, + "resource_type": "aws_instance", + "resource_name": "example-instance-194", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example194}}", + "search_line": 1748, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example194)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example194)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "18b4ec7c5f602e5f69f5fdd347a32ebeec581557e447ffe8fca3e7cbc665f276", + "line": 7337, + "resource_type": "aws_instance", + "resource_name": "example-instance-815", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example815}}", + "search_line": 7337, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example815)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example815)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "005fed1245d227eecd29508f3f2871da1f713aaaddd9c79257ebc594799b6bd5", + "line": 7625, + "resource_type": "aws_instance", + "resource_name": "example-instance-847", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example847}}", + "search_line": 7625, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example847)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example847)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c1acf7db9c3315b4b2453b0e0912ff9d9e51651e89a528c3ccb65e92eb7a19e9", + "line": 668, + "resource_type": "aws_instance", + "resource_name": "example-instance-74", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example74}}", + "search_line": 668, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example74)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example74)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d3cc33ac97642e962d8c3ee24cff51e2e8c6330acf050df96ff97f44c7d8181e", + "line": 5834, + "resource_type": "aws_instance", + "resource_name": "example-instance-648", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example648}}", + "search_line": 5834, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example648)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example648)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "db1bb82afe315f6f50c59f4ea1c36a8a4fd6bd4a1d85f2ff8da9dade6e8c3741", + "line": 6410, + "resource_type": "aws_instance", + "resource_name": "example-instance-712", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example712}}", + "search_line": 6410, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example712)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example712)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7aa33951bdf1d2946a72898f0c5263d5228f8c2a2ae1d8e9026a8c1d371dd99c", + "line": 4709, + "resource_type": "aws_instance", + "resource_name": "example-instance-523", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example523}}", + "search_line": 4709, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example523)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example523)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "db89c286d658fd164f6cf56125c6e4d62776103dc92d64596d85d75e50015329", + "line": 6185, + "resource_type": "aws_instance", + "resource_name": "example-instance-687", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example687}}", + "search_line": 6185, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example687)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example687)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3038cbbcd962b60354d3866bbfd35bd76d07466e0fa9a5d2afa5962f3d5220d7", + "line": 8750, + "resource_type": "aws_instance", + "resource_name": "example-instance-972", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example972}}", + "search_line": 8750, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example972)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example972)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1057a6ba0ac5148f23f048318703549a0e88925e0d93a9b115b15c450628a216", + "line": 1442, + "resource_type": "aws_instance", + "resource_name": "example-instance-160", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example160}}", + "search_line": 1442, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example160)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example160)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "13252b5b9e46dc39937e44822d0028de8b22bd9dec4402e232994c6fa0e88bcb", + "line": 7994, + "resource_type": "aws_instance", + "resource_name": "example-instance-888", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example888}}", + "search_line": 7994, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example888)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example888)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5eb8c8c61c81fe83979bbfe420b0bfaeb37ad1cec0e99223d28c3efd8f47c82c", + "line": 7760, + "resource_type": "aws_instance", + "resource_name": "example-instance-862", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example862}}", + "search_line": 7760, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example862)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example862)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e2e11aa8a90446e93940527de0512e6fa032206e014d9a534d48d8ee98f47a17", + "line": 1982, + "resource_type": "aws_instance", + "resource_name": "example-instance-220", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example220}}", + "search_line": 1982, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example220)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example220)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8573355b300ccefabb21685b2c55b8b307cfb7db56bd36be11d8339f626f1696", + "line": 4115, + "resource_type": "aws_instance", + "resource_name": "example-instance-457", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example457}}", + "search_line": 4115, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example457)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example457)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c865159016631d2a8716ea35c1bea7ade2dac30831f27d005cca3ec6f94dcb4b", + "line": 8192, + "resource_type": "aws_instance", + "resource_name": "example-instance-910", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example910}}", + "search_line": 8192, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example910)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example910)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bdf08fe2126f5fa7471b3207db7391751dc2573f894697099bd77418105bc8c9", + "line": 164, + "resource_type": "aws_instance", + "resource_name": "example-instance-18", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example18}}", + "search_line": 164, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example18)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example18)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ce374eded98f18624c5c61786718c78b31ef6d3aaa78a1e882787d61eb0d3a26", + "line": 5708, + "resource_type": "aws_instance", + "resource_name": "example-instance-634", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example634}}", + "search_line": 5708, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example634)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example634)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f0ffa23a466ebdbff377a62a671ca5818e94a8789ae3a399a418ba874872c260", + "line": 4610, + "resource_type": "aws_instance", + "resource_name": "example-instance-512", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example512}}", + "search_line": 4610, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example512)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example512)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0ea6172474e76d5da5d4d707391ceabd68ece6b47a5e2b05304b770349d17ffb", + "line": 7508, + "resource_type": "aws_instance", + "resource_name": "example-instance-834", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example834}}", + "search_line": 7508, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example834)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example834)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8f87ac26b649e577691d3554f3d186f6204c766b988ab9329e2259e1cecc51de", + "line": 3998, + "resource_type": "aws_instance", + "resource_name": "example-instance-444", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example444}}", + "search_line": 3998, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example444)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example444)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6b76c41e79636e372ac5a46712c6e064ec5990e3963658319541fd240ed64429", + "line": 7301, + "resource_type": "aws_instance", + "resource_name": "example-instance-811", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example811}}", + "search_line": 7301, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example811)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example811)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4b3f39042c6864035a23d3f5226284d90906131d7b9138978b0b3dbdce3a1172", + "line": 1064, + "resource_type": "aws_instance", + "resource_name": "example-instance-118", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example118}}", + "search_line": 1064, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example118)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example118)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bea1a72164de167f91ae16e6512e5c2f049c745bf4b1339720e0d635cb661e2f", + "line": 1577, + "resource_type": "aws_instance", + "resource_name": "example-instance-175", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example175}}", + "search_line": 1577, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example175)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example175)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ec3aa8e57dcd9746cbddd2bd5ac1f2930143d42c70faafb0384faacc550a680f", + "line": 6383, + "resource_type": "aws_instance", + "resource_name": "example-instance-709", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example709}}", + "search_line": 6383, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example709)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example709)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "abc6bed49778d577f0d34391e8d9676d953b60cc18dea871cd00b9190a88122f", + "line": 7931, + "resource_type": "aws_instance", + "resource_name": "example-instance-881", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example881}}", + "search_line": 7931, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example881)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example881)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3aeca56f90692497e8573a3e5c877133ad5923d5395b046a202c6da33a335785", + "line": 1532, + "resource_type": "aws_instance", + "resource_name": "example-instance-170", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example170}}", + "search_line": 1532, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example170)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example170)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d7468115b8438b58d07bf577a0e3a881a0325c69a0b17197ac610ba430ac89b1", + "line": 8210, + "resource_type": "aws_instance", + "resource_name": "example-instance-912", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example912}}", + "search_line": 8210, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example912)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example912)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bec523c52efea3079c10361b3cd20f6e758e6997b9f9a49cb645e72ddce9ce6e", + "line": 1145, + "resource_type": "aws_instance", + "resource_name": "example-instance-127", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example127}}", + "search_line": 1145, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example127)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example127)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b51d0d02cbfa5263d50e28775a80d9143d2fc85580facd68eefc836ad5029115", + "line": 1235, + "resource_type": "aws_instance", + "resource_name": "example-instance-137", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example137}}", + "search_line": 1235, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example137)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example137)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d973fb2ee88eacbf28fff55bd47e9aa09ccccc3a82a513e4981fc19c191fd58e", + "line": 65, + "resource_type": "aws_instance", + "resource_name": "example-instance-7", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example7}}", + "search_line": 65, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example7)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example7)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cadba847b6e52dea2f26ab5a76d6cec01ea2e050cb84429d3578f389d201c05d", + "line": 5384, + "resource_type": "aws_instance", + "resource_name": "example-instance-598", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example598}}", + "search_line": 5384, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example598)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example598)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "54ea487cc9f093c6c7bb76522da479f1dd7fc94884b0735dafa21a653f186c8f", + "line": 6689, + "resource_type": "aws_instance", + "resource_name": "example-instance-743", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example743}}", + "search_line": 6689, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example743)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example743)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c716cf11922df8ad98163a250d583c15afe6a3e9fd2c63afe8ce3faead18776a", + "line": 7364, + "resource_type": "aws_instance", + "resource_name": "example-instance-818", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example818}}", + "search_line": 7364, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example818)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example818)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "15a8057dbc2ad5f1b5737f23fd92de1a5b501c99c6bfa45969d6feaff9905710", + "line": 8462, + "resource_type": "aws_instance", + "resource_name": "example-instance-940", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example940}}", + "search_line": 8462, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example940)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example940)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9e09778af46a04f854494d80e69269bfd29fafeba7b229a698ae952e03e75f1a", + "line": 1559, + "resource_type": "aws_instance", + "resource_name": "example-instance-173", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example173}}", + "search_line": 1559, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example173)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example173)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bab7b60f39f9f6b3713f73a182a841a0ac9be7a53d23fd56f591b6134696e270", + "line": 2441, + "resource_type": "aws_instance", + "resource_name": "example-instance-271", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example271}}", + "search_line": 2441, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example271)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example271)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c1ee13aaa62a2d401086ab5efa2f80d03af550472406774de70644317b31e5ac", + "line": 2315, + "resource_type": "aws_instance", + "resource_name": "example-instance-257", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example257}}", + "search_line": 2315, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example257)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example257)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2bdd2f4a29ebfdfd13452b3a04d7c6728869d5ba05b7c84365b4ee450138995d", + "line": 5582, + "resource_type": "aws_instance", + "resource_name": "example-instance-620", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example620}}", + "search_line": 5582, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example620)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example620)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4759eaf2b1c4fb17e547fb733be930dd5c46f7d2fdbe0541f7b848f4c81e16a4", + "line": 695, + "resource_type": "aws_instance", + "resource_name": "example-instance-77", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example77}}", + "search_line": 695, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example77)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example77)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "64e2f1da17e5c86abaf0075d78d39de2825563606adc6fd00ddea7fa8b493cbd", + "line": 6914, + "resource_type": "aws_instance", + "resource_name": "example-instance-768", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example768}}", + "search_line": 6914, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example768)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example768)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dce8df5cdf540def7b14dc52c692bd33712b5e6fe96c91524c27d861016ce3df", + "line": 1091, + "resource_type": "aws_instance", + "resource_name": "example-instance-121", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example121}}", + "search_line": 1091, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example121)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example121)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6a81aa4bf8e95fb6057da394e013c8d381609afc286145119ad0fe97a1508731", + "line": 1640, + "resource_type": "aws_instance", + "resource_name": "example-instance-182", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example182}}", + "search_line": 1640, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example182)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example182)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9e96e85c6a1e34cada172dcd2f1c762b061a4794b0b89906704524075e8b90d4", + "line": 7913, + "resource_type": "aws_instance", + "resource_name": "example-instance-879", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example879}}", + "search_line": 7913, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example879)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example879)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ae611072d9384cc19808b10f2454e3e2127778ec802fcdfb181b46b9b7124531", + "line": 7985, + "resource_type": "aws_instance", + "resource_name": "example-instance-887", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example887}}", + "search_line": 7985, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example887)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example887)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0a73bfe7d6185f012ca664a280320834a25f0154cef1de1e8550d1f49a45f109", + "line": 4169, + "resource_type": "aws_instance", + "resource_name": "example-instance-463", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example463}}", + "search_line": 4169, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example463)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example463)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5397a5ecb26e4f228039fb0955916bb92795d1406a84eda6fb22db9054af33d3", + "line": 6959, + "resource_type": "aws_instance", + "resource_name": "example-instance-773", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example773}}", + "search_line": 6959, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example773)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example773)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "76360129f1eb7eda55f816ae8a7774ccb306b22658f8a986e27b8a2c03b1348a", + "line": 335, + "resource_type": "aws_instance", + "resource_name": "example-instance-37", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example37}}", + "search_line": 335, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example37)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example37)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "93f35aee5156d565d77e7c78f97cd486cd2a0f5082dcb712885f3714a2c36d93", + "line": 515, + "resource_type": "aws_instance", + "resource_name": "example-instance-57", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example57}}", + "search_line": 515, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example57)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example57)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "643b64775c0ff721b160abbbead8a0a25f8b90244ebde86696ffac64d930fdbb", + "line": 3962, + "resource_type": "aws_instance", + "resource_name": "example-instance-440", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example440}}", + "search_line": 3962, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example440)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example440)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3a25f2422993c4e5a0657f37e411730c9ea90226765a4a22d4c052bba423e229", + "line": 5249, + "resource_type": "aws_instance", + "resource_name": "example-instance-583", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example583}}", + "search_line": 5249, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example583)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example583)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b851f44a53a2e0095d5fbebd867e20fdf3345ffc4e23bc4e9f9c0b5c6da1ded0", + "line": 4682, + "resource_type": "aws_instance", + "resource_name": "example-instance-520", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example520}}", + "search_line": 4682, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example520)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example520)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cf760f6ec6ba50af4baf7a34dbb606021c99a07b2402100eabf5600f6b6a8be2", + "line": 7157, + "resource_type": "aws_instance", + "resource_name": "example-instance-795", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example795}}", + "search_line": 7157, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example795)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example795)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d3383fd1a30ce78e7c924d6ba633870f12cfa3a538e58c6697b794803c42fc47", + "line": 7787, + "resource_type": "aws_instance", + "resource_name": "example-instance-865", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example865}}", + "search_line": 7787, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example865)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example865)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "95618d988c6609a4eaf66c3d68dc79b230526b3bf2d14df78008c8a247ba1ba0", + "line": 7040, + "resource_type": "aws_instance", + "resource_name": "example-instance-782", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example782}}", + "search_line": 7040, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example782)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example782)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "df7c5641d9ff6ff10c894838c43b6092b43416a899c533ca51ec3413cdac19eb", + "line": 983, + "resource_type": "aws_instance", + "resource_name": "example-instance-109", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example109}}", + "search_line": 983, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example109)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example109)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d1e4cf2305c83270c4d82c55f3ac534003268d097055b9fc8f10ceb3b566856c", + "line": 4574, + "resource_type": "aws_instance", + "resource_name": "example-instance-508", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example508}}", + "search_line": 4574, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example508)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example508)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "426f9f6a1cefc2b290388cccc0db16e2d3ccb9c7b03e45007977e9e59409b0dd", + "line": 6437, + "resource_type": "aws_instance", + "resource_name": "example-instance-715", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example715}}", + "search_line": 6437, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example715)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example715)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "287a77d64089437ed0c2156d0d816243b36fe447910570cab2a0fba32531abc9", + "line": 7265, + "resource_type": "aws_instance", + "resource_name": "example-instance-807", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example807}}", + "search_line": 7265, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example807)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example807)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "90aa5a32485c5170e429853190d76090e65558717f0f5cf8bdc77ced97c8403a", + "line": 8642, + "resource_type": "aws_instance", + "resource_name": "example-instance-960", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example960}}", + "search_line": 8642, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example960)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example960)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e3be3a252364a41a8d38b6fbd52d84b68aa449557f91aa70719ad1be2774e70f", + "line": 5753, + "resource_type": "aws_instance", + "resource_name": "example-instance-639", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example639}}", + "search_line": 5753, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example639)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example639)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fe1eb2d3aee5bf7a8e389e8c5dc646d969e85fb3b37ce67cc6ae4f4390a93798", + "line": 7184, + "resource_type": "aws_instance", + "resource_name": "example-instance-798", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example798}}", + "search_line": 7184, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example798)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example798)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8cafdbc99af13609957b900a8208b55aec2ded6a409b4d9302a5dfa0223a4bd5", + "line": 7355, + "resource_type": "aws_instance", + "resource_name": "example-instance-817", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example817}}", + "search_line": 7355, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example817)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example817)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3baa59344e175b0a6c545342762196b77f448dcab77d91950d05e911bd36d4df", + "line": 8831, + "resource_type": "aws_instance", + "resource_name": "example-instance-981", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example981}}", + "search_line": 8831, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example981)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example981)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0ffbbcd79119ea9f4b4cf1c946b13fc778bf1caab585424183e94a703d269f4d", + "line": 1739, + "resource_type": "aws_instance", + "resource_name": "example-instance-193", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example193}}", + "search_line": 1739, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example193)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example193)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d2113424bd44e3083cfc0094c306f04820ea2acddd5256ac739901026d0c359a", + "line": 6653, + "resource_type": "aws_instance", + "resource_name": "example-instance-739", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example739}}", + "search_line": 6653, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example739)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example739)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ca8c63129d633ff1f2d21db560e2948462338fbd17002040bc19342766d4cc6f", + "line": 2207, + "resource_type": "aws_instance", + "resource_name": "example-instance-245", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example245}}", + "search_line": 2207, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example245)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example245)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "833b4c9e92cf74bae6b75d4f148572bb34265e97c82c9936c1d1ffb4fe7fe0c3", + "line": 4475, + "resource_type": "aws_instance", + "resource_name": "example-instance-497", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example497}}", + "search_line": 4475, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example497)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example497)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "552f299844d38557e195b7beeec0aaf205d52752c295a040e5c8402d19e96a49", + "line": 6698, + "resource_type": "aws_instance", + "resource_name": "example-instance-744", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example744}}", + "search_line": 6698, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example744)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example744)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cf769622901c2e0a9fc3bcca5967dcc8a6f6219739ada88a6cb7abf50443213a", + "line": 587, + "resource_type": "aws_instance", + "resource_name": "example-instance-65", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example65}}", + "search_line": 587, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example65)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example65)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "57849bd4d9b36d9093ad81960b1fdca3002a8db3bc5b530ec689639cc4500286", + "line": 6590, + "resource_type": "aws_instance", + "resource_name": "example-instance-732", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example732}}", + "search_line": 6590, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example732)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example732)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4e4ee78825aee942ebedaefbde18f15db8f3ca9223c441052688cf9fc02c8899", + "line": 7463, + "resource_type": "aws_instance", + "resource_name": "example-instance-829", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example829}}", + "search_line": 7463, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example829)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example829)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4b60c6dfe0923fe9ad46e7d204d5d5327837c594605f67c80321e4ced99ed68d", + "line": 1613, + "resource_type": "aws_instance", + "resource_name": "example-instance-179", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example179}}", + "search_line": 1613, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example179)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example179)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6d747d1ab885d674329aecfda53212a012651ef0ae04126dc7fad67ea81da05d", + "line": 3926, + "resource_type": "aws_instance", + "resource_name": "example-instance-436", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example436}}", + "search_line": 3926, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example436)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example436)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "89afd84fae3c9d0f0555ff7304dc238ca5b4989604adac05bbfd7e1efc656281", + "line": 947, + "resource_type": "aws_instance", + "resource_name": "example-instance-105", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example105}}", + "search_line": 947, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example105)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example105)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0ec6abf911792243a98b7924d2d2542c066809d95610c8cc269829ced07b9d28", + "line": 7976, + "resource_type": "aws_instance", + "resource_name": "example-instance-886", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example886}}", + "search_line": 7976, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example886)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example886)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "de60cf3cb86ed2dff7379382ce454abce6e95f6e79c10ba1761cfdce2a41948c", + "line": 3404, + "resource_type": "aws_instance", + "resource_name": "example-instance-378", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example378}}", + "search_line": 3404, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example378)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example378)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ad2c8d28db9fb157cb3cacb89e3a35ae22f7c75589ee20fce0fd1748d1834a67", + "line": 8840, + "resource_type": "aws_instance", + "resource_name": "example-instance-982", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example982}}", + "search_line": 8840, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example982)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example982)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "38103204cca2537540530ba904124b84413ebc403d913b14982bbcbac6083f19", + "line": 4268, + "resource_type": "aws_instance", + "resource_name": "example-instance-474", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example474}}", + "search_line": 4268, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example474)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example474)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5dffa1b7bd5155df2fe052bce01c730d143b730387284bba2576f0c0cc81394c", + "line": 5051, + "resource_type": "aws_instance", + "resource_name": "example-instance-561", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example561}}", + "search_line": 5051, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example561)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example561)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1b919e9e7f0e5b3c152284f3e7f1f00195cb7aa092cf6a39b8384eed7ef4037f", + "line": 5267, + "resource_type": "aws_instance", + "resource_name": "example-instance-585", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example585}}", + "search_line": 5267, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example585)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example585)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3ee6499fa6628f989805b304f5aea941453cb4abf42a1dc2086011d65338b487", + "line": 5339, + "resource_type": "aws_instance", + "resource_name": "example-instance-593", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example593}}", + "search_line": 5339, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example593)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example593)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "268ca42ff2003ba96a1ff4293a79849f915d879b071e2ec0cad63f16092ec1a6", + "line": 7940, + "resource_type": "aws_instance", + "resource_name": "example-instance-882", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example882}}", + "search_line": 7940, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example882)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example882)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ea4011c9dcc3c1306c40f14b5bd90f6e8c9c717fafda96f502bd8c5ae103ccb1", + "line": 5321, + "resource_type": "aws_instance", + "resource_name": "example-instance-591", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example591}}", + "search_line": 5321, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example591)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example591)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a1708a7c86fe5af3ea4a631bc082186493312eb065301470858e8d0e7947d2aa", + "line": 5789, + "resource_type": "aws_instance", + "resource_name": "example-instance-643", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example643}}", + "search_line": 5789, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example643)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example643)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c6a02e0e1595ef6913919bc100dafe9f964341330e3666f9ad80465f9bcb139c", + "line": 6536, + "resource_type": "aws_instance", + "resource_name": "example-instance-726", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example726}}", + "search_line": 6536, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example726)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example726)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e5b124b8fc1ed5ab133e79ca9a30314a6588a789e346f42783f6060ed7806e88", + "line": 1757, + "resource_type": "aws_instance", + "resource_name": "example-instance-195", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example195}}", + "search_line": 1757, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example195)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example195)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2b91790184fbff11047b5200e4769c5e8d3de69a5c7f30a2cc5c1ff422b33f97", + "line": 1244, + "resource_type": "aws_instance", + "resource_name": "example-instance-138", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example138}}", + "search_line": 1244, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example138)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example138)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9f76d6dfe49f2b603110f08199b28b1062c08b203f36ad0e071b0069b4f31e2d", + "line": 7679, + "resource_type": "aws_instance", + "resource_name": "example-instance-853", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example853}}", + "search_line": 7679, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example853)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example853)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1deeda9289fb7ebef2f5a2e045c043cc1316ff45c935260ef5c793bdc50bd2c9", + "line": 8174, + "resource_type": "aws_instance", + "resource_name": "example-instance-908", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example908}}", + "search_line": 8174, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example908)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example908)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "23df2f98b6ce37c276a85cc7a97b86aa7f70a0a0aaa5095caef95cc21a8cbb12", + "line": 6635, + "resource_type": "aws_instance", + "resource_name": "example-instance-737", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example737}}", + "search_line": 6635, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example737)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example737)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4520bdd8738884868619954975a2ff70e6c3bf2ac3777f61c490fcc06f7a62d8", + "line": 3296, + "resource_type": "aws_instance", + "resource_name": "example-instance-366", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example366}}", + "search_line": 3296, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example366)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example366)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bf9ea883709f06c106022ef9dd61eba3852f50e5caf49d8e6cf793c2116df52c", + "line": 1568, + "resource_type": "aws_instance", + "resource_name": "example-instance-174", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example174}}", + "search_line": 1568, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example174)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example174)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "54ced5c75d3c8876a197a24e2bcac73236c25c295c887a46a4a2a1be60e10335", + "line": 4376, + "resource_type": "aws_instance", + "resource_name": "example-instance-486", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example486}}", + "search_line": 4376, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example486)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example486)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d387d917853cf630875488e9a582981c9a1968941e2019d1d57a90eb3bdea691", + "line": 1847, + "resource_type": "aws_instance", + "resource_name": "example-instance-205", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example205}}", + "search_line": 1847, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example205)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example205)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2826890b0315cae057e5241379bef9143562e63e87d4f02f9a63c4365b72c30f", + "line": 2558, + "resource_type": "aws_instance", + "resource_name": "example-instance-284", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example284}}", + "search_line": 2558, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example284)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example284)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b0b8c14d09804469bb0206369d0060e70d76473e47d5f0cdfb275cecd7173d9e", + "line": 6203, + "resource_type": "aws_instance", + "resource_name": "example-instance-689", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example689}}", + "search_line": 6203, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example689)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example689)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d01347108010a042fd185945398b0cfb231b934c7a3ceb14ca1770b0b093a509", + "line": 1685, + "resource_type": "aws_instance", + "resource_name": "example-instance-187", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example187}}", + "search_line": 1685, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example187)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example187)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3bcd7beaac620357cb15f30556d93f38aed4b0196cbd357304d199e85010c619", + "line": 2459, + "resource_type": "aws_instance", + "resource_name": "example-instance-273", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example273}}", + "search_line": 2459, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example273)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example273)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8ac28ec89551accbfac5f086953c0b55615b07826e4285db34ad96b0a4405ff6", + "line": 8957, + "resource_type": "aws_instance", + "resource_name": "example-instance-995", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example995}}", + "search_line": 8957, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example995)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example995)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d2ca247df95c793004ecb04336d7718f21480f7799672120d01b4c65131c2534", + "line": 5645, + "resource_type": "aws_instance", + "resource_name": "example-instance-627", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example627}}", + "search_line": 5645, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example627)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example627)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "611359d7c1366371bce4580816a58041e31d6ae33d93446e9b7ab17f6667ae7c", + "line": 8858, + "resource_type": "aws_instance", + "resource_name": "example-instance-984", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example984}}", + "search_line": 8858, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example984)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example984)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4248f70dbf56cfc5709f8f3f1cfd3e1bf6aa72310316711798361aaacd23d570", + "line": 1172, + "resource_type": "aws_instance", + "resource_name": "example-instance-130", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example130}}", + "search_line": 1172, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example130)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example130)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "17e4d9e2434cf333e578670a50c54d2cf917c3802f5b3877bd656c64feb2703a", + "line": 6104, + "resource_type": "aws_instance", + "resource_name": "example-instance-678", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example678}}", + "search_line": 6104, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example678)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example678)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "02c9fc46f89a2d978828ca43618afd17b317a93635f34295dcac1b6de3cbef24", + "line": 1127, + "resource_type": "aws_instance", + "resource_name": "example-instance-125", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example125}}", + "search_line": 1127, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example125)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example125)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "00c0c0fac95fb0cd1a0539cd01e2616df0d350dba03753823400c959caf6deec", + "line": 5087, + "resource_type": "aws_instance", + "resource_name": "example-instance-565", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example565}}", + "search_line": 5087, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example565)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example565)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c1c8bea68aec9ee54527a949e5d787e5e0876be3ea55f89339b8a7542512878e", + "line": 7013, + "resource_type": "aws_instance", + "resource_name": "example-instance-779", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example779}}", + "search_line": 7013, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example779)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example779)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "96fb4333ba621b31f04a71444837ae9bcd942a30c7912f11c267b72fe3b98d68", + "line": 4223, + "resource_type": "aws_instance", + "resource_name": "example-instance-469", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example469}}", + "search_line": 4223, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example469)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example469)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4a4f4d9c76542422f278a15dafe8f5f98ae154f50789c0cadfa59d2fe984ffea", + "line": 7103, + "resource_type": "aws_instance", + "resource_name": "example-instance-789", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example789}}", + "search_line": 7103, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example789)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example789)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b1fb797605208bafc1b4513654e7fc19f17c12e89f2d32eb871c263f01409300", + "line": 6077, + "resource_type": "aws_instance", + "resource_name": "example-instance-675", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example675}}", + "search_line": 6077, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example675)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example675)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5fc503515d57560e71384f1a3531ca4fb266de9f4d779c33a47fbe06c9639642", + "line": 281, + "resource_type": "aws_instance", + "resource_name": "example-instance-31", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example31}}", + "search_line": 281, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example31)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example31)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "097b2b7a25c2d8cdbefd7ccaff3dff583b6645e8b5545ffa4c6d23c189359dca", + "line": 8138, + "resource_type": "aws_instance", + "resource_name": "example-instance-904", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example904}}", + "search_line": 8138, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example904)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example904)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cc22d519bf407c115b89db5b9f5a7798b00c74dc017bc2f973f1ff17f0e06ca9", + "line": 6725, + "resource_type": "aws_instance", + "resource_name": "example-instance-747", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example747}}", + "search_line": 6725, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example747)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example747)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6980a538d91a533fb75318f7e417edc4d8902f2030201380399d09984f989de4", + "line": 3773, + "resource_type": "aws_instance", + "resource_name": "example-instance-419", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example419}}", + "search_line": 3773, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example419)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example419)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "40f1a3ab42fb59446a0dfd0a627f8b88340dc6b5ca542a065b48b8994c5180f2", + "line": 8921, + "resource_type": "aws_instance", + "resource_name": "example-instance-991", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example991}}", + "search_line": 8921, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example991)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example991)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5fcfef2b9cb81878fa27f847d99dea03070ed5c315b8fdcb60a3d1ae0dcdbedf", + "line": 3206, + "resource_type": "aws_instance", + "resource_name": "example-instance-356", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example356}}", + "search_line": 3206, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example356)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example356)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c911bbe3b98a956e79793f50a0cce7151826f6d385257f7c1b15328795a94e84", + "line": 4403, + "resource_type": "aws_instance", + "resource_name": "example-instance-489", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example489}}", + "search_line": 4403, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example489)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example489)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "50d0388e1ffa512c427eb5148c88490ca1a0577e11314329b9b28b2789e31be5", + "line": 5609, + "resource_type": "aws_instance", + "resource_name": "example-instance-623", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example623}}", + "search_line": 5609, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example623)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example623)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e190e0238007937f584c4c75be15eff1c5f02dfc2b6f9d425897941c45736715", + "line": 2891, + "resource_type": "aws_instance", + "resource_name": "example-instance-321", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example321}}", + "search_line": 2891, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example321)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example321)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fb7784621a0a8c75060561219f06b288270cee1a078aaf0cbc641ce171ef714c", + "line": 6392, + "resource_type": "aws_instance", + "resource_name": "example-instance-710", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example710}}", + "search_line": 6392, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example710)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example710)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dc0ed4c540b30d3b0e152415d744cb39d9b807f0c3c2714b26a28fa3b8b17d32", + "line": 4664, + "resource_type": "aws_instance", + "resource_name": "example-instance-518", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example518}}", + "search_line": 4664, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example518)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example518)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4c94a420b65934c5810d8eac615dc0176eea22c1bba340ed5c6468ca6eae4020", + "line": 11, + "resource_type": "aws_instance", + "resource_name": "example-instance-1", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example1}}", + "search_line": 11, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example1)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example1)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "981e4e36d3777b06d14ac40c47a253db1780c6ad39f1c59ed2a791ebba5d9729", + "line": 6716, + "resource_type": "aws_instance", + "resource_name": "example-instance-746", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example746}}", + "search_line": 6716, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example746)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example746)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c3e1fc3837dffc97f6ef6817b50788cecc999abbfde85e0ffff6f9124421c72f", + "line": 7868, + "resource_type": "aws_instance", + "resource_name": "example-instance-874", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example874}}", + "search_line": 7868, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example874)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example874)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8250cf4f59031582f903ac006c472776eb4269da760ae95f23fa6c3d85f61e90", + "line": 7562, + "resource_type": "aws_instance", + "resource_name": "example-instance-840", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example840}}", + "search_line": 7562, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example840)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example840)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6cb00e4f4012cce4cafad06ad2d8e3942ad69665874f95ca3cb42f65b8efbbab", + "line": 3449, + "resource_type": "aws_instance", + "resource_name": "example-instance-383", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example383}}", + "search_line": 3449, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example383)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example383)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4bc8dc46198891b989e43e50c808f23ba8389e640a4032adc272833f4d5ac61d", + "line": 4520, + "resource_type": "aws_instance", + "resource_name": "example-instance-502", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example502}}", + "search_line": 4520, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example502)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example502)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0d57ab2c561a1488ec3ede32623bd4a747754d4f47e218ea76d416022f51fdcc", + "line": 614, + "resource_type": "aws_instance", + "resource_name": "example-instance-68", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example68}}", + "search_line": 614, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example68)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example68)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f01d5892d2f05aa854329faf766fb66078058683954c19ae3cea7680425712a8", + "line": 4079, + "resource_type": "aws_instance", + "resource_name": "example-instance-453", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example453}}", + "search_line": 4079, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example453)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example453)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a7f1c707ef73be33eb421cecd19aa8caf03f529fba9073970855fd5ffa4b39dc", + "line": 6644, + "resource_type": "aws_instance", + "resource_name": "example-instance-738", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example738}}", + "search_line": 6644, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example738)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example738)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2ae8033ec65e77017b499104d78e8dc3562087bab4750b81cd3a7ad3ca0c1d6d", + "line": 5888, + "resource_type": "aws_instance", + "resource_name": "example-instance-654", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example654}}", + "search_line": 5888, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example654)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example654)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8dd7a629f26c43ac5a572327431d123ba36f1265916ae69dc636f293a685ac9b", + "line": 8228, + "resource_type": "aws_instance", + "resource_name": "example-instance-914", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example914}}", + "search_line": 8228, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example914)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example914)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5e8744cf6e5d7c40230903c62c41415428cf0461cd7f8212fa1e6e511ad6354c", + "line": 2036, + "resource_type": "aws_instance", + "resource_name": "example-instance-226", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example226}}", + "search_line": 2036, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example226)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example226)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2f9d97503ad231b314611b4f691d103c7761a1d754704f04498c60807084c852", + "line": 578, + "resource_type": "aws_instance", + "resource_name": "example-instance-64", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example64}}", + "search_line": 578, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example64)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example64)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "56c56256d4c431ef76655e5c5e6c470c3a2a53739e25809699a866e5ac0f56fc", + "line": 7526, + "resource_type": "aws_instance", + "resource_name": "example-instance-836", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example836}}", + "search_line": 7526, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example836)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example836)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4a5a28179c0ebc1d6df677336ee41698eb10cfa8c35005bd23683abffda04577", + "line": 8966, + "resource_type": "aws_instance", + "resource_name": "example-instance-996", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example996}}", + "search_line": 8966, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example996)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example996)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cd4be4e9104cf0e79f9000f95e277c7ca86a8ad6d248329a58723ebfa032062a", + "line": 6950, + "resource_type": "aws_instance", + "resource_name": "example-instance-772", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example772}}", + "search_line": 6950, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example772)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example772)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0e3573ef79836d83ea66d6860e821ca1f4f2f8e9e210949fe1e8d6c24e24d84a", + "line": 7751, + "resource_type": "aws_instance", + "resource_name": "example-instance-861", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example861}}", + "search_line": 7751, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example861)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example861)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "518d90bdcba10a2f51ab4f574410d1ce8985433e13c2b020fb213bdb629fac54", + "line": 1622, + "resource_type": "aws_instance", + "resource_name": "example-instance-180", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example180}}", + "search_line": 1622, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example180)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example180)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c2b06f4203ed50c380fc29e058eaff474b03647d824bf2e7e08dc8d969eb6b44", + "line": 407, + "resource_type": "aws_instance", + "resource_name": "example-instance-45", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example45}}", + "search_line": 407, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example45)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example45)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4c999c07f73709b180517d8bf08a361daf5f878a729ad5d0223e5f7382be1f73", + "line": 3143, + "resource_type": "aws_instance", + "resource_name": "example-instance-349", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example349}}", + "search_line": 3143, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example349)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example349)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "db595a9ffe0244ebdc8bc4cef07a75ec3ec36730ce1bdaa07a4cb8cde12c2c0e", + "line": 4772, + "resource_type": "aws_instance", + "resource_name": "example-instance-530", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example530}}", + "search_line": 4772, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example530)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example530)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "eb4c125d85aa96137ee2458c3eb7da52d82727232f774b2c035899e433d891e5", + "line": 1766, + "resource_type": "aws_instance", + "resource_name": "example-instance-196", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example196}}", + "search_line": 1766, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example196)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example196)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "213cb58cd0acca3cfbf186af318fcd72b59118cd7d4076af85a2cf6adb991637", + "line": 5438, + "resource_type": "aws_instance", + "resource_name": "example-instance-604", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example604}}", + "search_line": 5438, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example604)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example604)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "83a8a98ea471d24d789d39d51b65a266441917b212c6af426fbdbd7c5cea9a10", + "line": 5537, + "resource_type": "aws_instance", + "resource_name": "example-instance-615", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example615}}", + "search_line": 5537, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example615)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example615)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f17ee7c1f3f2f595aa065be76e83732d3793ee22d7c03ec218d99e28e9dbf501", + "line": 6248, + "resource_type": "aws_instance", + "resource_name": "example-instance-694", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example694}}", + "search_line": 6248, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example694)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example694)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ed8fa2cd2e5565cac423e7ccc17826d56bb1fbbeff4731406e226ae881bf4eaf", + "line": 7643, + "resource_type": "aws_instance", + "resource_name": "example-instance-849", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example849}}", + "search_line": 7643, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example849)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example849)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "23e22e2d584d36820aa612d334436548cbd970dfa7870783273a0a9d5e084ee3", + "line": 2153, + "resource_type": "aws_instance", + "resource_name": "example-instance-239", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example239}}", + "search_line": 2153, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example239)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example239)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "087d8c0630b4f7b83588fa841e07eb1a710349d05c4292c0f01d21eae86fb030", + "line": 6329, + "resource_type": "aws_instance", + "resource_name": "example-instance-703", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example703}}", + "search_line": 6329, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example703)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example703)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f8831c310b8a0933b466909db839a0022e0fc0619d0f5ba554ea9f3007f692f7", + "line": 7805, + "resource_type": "aws_instance", + "resource_name": "example-instance-867", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example867}}", + "search_line": 7805, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example867)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example867)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "250bc78e113a655302c28d3d0a684f19990cf527f9cb92a4e64af78b73d54c6a", + "line": 2423, + "resource_type": "aws_instance", + "resource_name": "example-instance-269", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example269}}", + "search_line": 2423, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example269)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example269)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3daecc09c861d2d1b1c3176ec821d9fb7bba6adc49aec84523ad5a2c91578336", + "line": 3071, + "resource_type": "aws_instance", + "resource_name": "example-instance-341", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example341}}", + "search_line": 3071, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example341)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example341)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b5d984afd81c69d5338d8ace1256d46e387a5aab1a554ec758a48b068d190ca1", + "line": 2909, + "resource_type": "aws_instance", + "resource_name": "example-instance-323", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example323}}", + "search_line": 2909, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example323)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example323)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "26902f7ffc9b79d759da6acf2ef0a364a686fb1e6e88ac0351a2c800aa5178ac", + "line": 8696, + "resource_type": "aws_instance", + "resource_name": "example-instance-966", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example966}}", + "search_line": 8696, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example966)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example966)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fbbc41238488465f1c8a2a87712f40e008473041d3df57c39c2fb0414679be16", + "line": 2261, + "resource_type": "aws_instance", + "resource_name": "example-instance-251", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example251}}", + "search_line": 2261, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example251)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example251)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "58240244edf8d8ea24ccea4ee5322271ecd61f568457f90057775edcd05360f8", + "line": 2666, + "resource_type": "aws_instance", + "resource_name": "example-instance-296", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example296}}", + "search_line": 2666, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example296)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example296)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d7a75d8c2a399e31ede3e671aff5fa28fdb95f4ba5c03b095e82e32a4859f144", + "line": 3503, + "resource_type": "aws_instance", + "resource_name": "example-instance-389", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example389}}", + "search_line": 3503, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example389)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example389)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "298743fc248dcfd2c7e9526768af05116a0503d6270eeb6b763060cf426e87a9", + "line": 5699, + "resource_type": "aws_instance", + "resource_name": "example-instance-633", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example633}}", + "search_line": 5699, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example633)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example633)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9610eb7190a30b0d50d062a827e9c869269953665c9ad409e137c5fbe19f5833", + "line": 2369, + "resource_type": "aws_instance", + "resource_name": "example-instance-263", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example263}}", + "search_line": 2369, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example263)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example263)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3f9cf268103e7dbec4b0d69def1f1076a84aabbe3d064c9aac1bbef173ec496f", + "line": 4196, + "resource_type": "aws_instance", + "resource_name": "example-instance-466", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example466}}", + "search_line": 4196, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example466)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example466)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c6f00e70a54983a3b8fa374d789ef3f9d74465a23d17fbcb592cea3b9e5ed92d", + "line": 6014, + "resource_type": "aws_instance", + "resource_name": "example-instance-668", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example668}}", + "search_line": 6014, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example668)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example668)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "23d896880f00bc5d2a2f3f120353137ed855a8698dc842a7fadbf9cfe928d547", + "line": 8336, + "resource_type": "aws_instance", + "resource_name": "example-instance-926", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example926}}", + "search_line": 8336, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example926)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example926)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0427ba10b408f559b95c40114eb4df10734c239fa00216c227faf940a36a51bf", + "line": 8570, + "resource_type": "aws_instance", + "resource_name": "example-instance-952", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example952}}", + "search_line": 8570, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example952)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example952)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5fae6189bc2c587a1690fc6b931ef137c9b5b4df857e585af14231da72b4e1da", + "line": 848, + "resource_type": "aws_instance", + "resource_name": "example-instance-94", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example94}}", + "search_line": 848, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example94)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example94)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c50107a538cc7703f90f7809213be02f37dafc18d9cc00125d245a099a3e1b98", + "line": 8678, + "resource_type": "aws_instance", + "resource_name": "example-instance-964", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example964}}", + "search_line": 8678, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example964)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example964)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "48bda94d8b48401f32b3f95729aef64c2d533ec79f3b9fe32cd356d3578d011c", + "line": 3170, + "resource_type": "aws_instance", + "resource_name": "example-instance-352", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example352}}", + "search_line": 3170, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example352)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example352)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f8fbce993231c5325608cbe335b7b52eb5cc1e915e46093cc680f5cc44467603", + "line": 4547, + "resource_type": "aws_instance", + "resource_name": "example-instance-505", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example505}}", + "search_line": 4547, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example505)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example505)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cc4adfd18784dd7f82a4adaac2a35871b0044c9e56596a164abc5ee2d998f8c2", + "line": 1856, + "resource_type": "aws_instance", + "resource_name": "example-instance-206", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example206}}", + "search_line": 1856, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example206)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example206)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "09d6e5c096717528bb6244b48df6cccb05d552c4590bef37650b62aa1a14ae14", + "line": 4331, + "resource_type": "aws_instance", + "resource_name": "example-instance-481", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example481}}", + "search_line": 4331, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example481)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example481)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3d4a91bc7c68e20972a8bd3b688228795e16fed9589b0b4efb130c497091313e", + "line": 4952, + "resource_type": "aws_instance", + "resource_name": "example-instance-550", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example550}}", + "search_line": 4952, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example550)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example550)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d40d636bea7e9ab3b061c3786d442dd537a87c54706cd2d788dd6e45711a504d", + "line": 4286, + "resource_type": "aws_instance", + "resource_name": "example-instance-476", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example476}}", + "search_line": 4286, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example476)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example476)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "71ee71a01c86949dccf93fd4db232cb5466a852ec9d16f3d9b7d4a1371c7438b", + "line": 3602, + "resource_type": "aws_instance", + "resource_name": "example-instance-400", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example400}}", + "search_line": 3602, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example400)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example400)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c6d106ff845a48340c5d058521306576e11dfa4cd23abcc8e2fe7da3fc213d30", + "line": 4043, + "resource_type": "aws_instance", + "resource_name": "example-instance-449", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example449}}", + "search_line": 4043, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example449)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example449)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c33dd9802c61cbfe24d634d2cf5e51bf6f3213e313833e301ac007d794dcf79a", + "line": 8417, + "resource_type": "aws_instance", + "resource_name": "example-instance-935", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example935}}", + "search_line": 8417, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example935)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example935)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a87e8b77d3b5a76ff56752a3a0f7d642cc0c8fce21d6ea6a56a9fed7df6b3124", + "line": 4934, + "resource_type": "aws_instance", + "resource_name": "example-instance-548", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example548}}", + "search_line": 4934, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example548)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example548)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "134ccf400555ecef587e4ae1db27b02d5dec61e8d39f8eb02a54644c27f2d865", + "line": 5636, + "resource_type": "aws_instance", + "resource_name": "example-instance-626", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example626}}", + "search_line": 5636, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example626)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example626)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6f6e1ea3dc6201d7fab6f26ac0e96b39bce568163c04724f0fb4731dfb038e54", + "line": 8264, + "resource_type": "aws_instance", + "resource_name": "example-instance-918", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example918}}", + "search_line": 8264, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example918)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example918)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "675db0b2428ffebaa7ec445df2bee0d1a33f047582ddf4cd56f4e3694b71d751", + "line": 1298, + "resource_type": "aws_instance", + "resource_name": "example-instance-144", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example144}}", + "search_line": 1298, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example144)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example144)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a767c7d60b5f05e54b3812cfc0ecc30ac2a45a430884c6a21a96a124c18a3234", + "line": 2180, + "resource_type": "aws_instance", + "resource_name": "example-instance-242", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example242}}", + "search_line": 2180, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example242)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example242)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fa2c5129359d833a719d6c4630505e215df237c927303e6a48aeed8babeb1d47", + "line": 1379, + "resource_type": "aws_instance", + "resource_name": "example-instance-153", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example153}}", + "search_line": 1379, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example153)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example153)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0069ce2cac6905de4b015199bc4cb979a53268a24eb6ddcd0800ffbf7a9b5582", + "line": 4871, + "resource_type": "aws_instance", + "resource_name": "example-instance-541", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example541}}", + "search_line": 4871, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example541)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example541)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "29fc13cedffa13beefffe104dd7bb8aa414337140ad5e1867e13a8c8a0e55a2a", + "line": 4565, + "resource_type": "aws_instance", + "resource_name": "example-instance-507", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example507}}", + "search_line": 4565, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example507)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example507)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6c03ca8a4f835e6032d4b93dcad977c92ab6d8f0ce15a858a362e19b9fd327c5", + "line": 1901, + "resource_type": "aws_instance", + "resource_name": "example-instance-211", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example211}}", + "search_line": 1901, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example211)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example211)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "eaa6061b278e611649f274c57e9eaf2a08292f2e2a834c37edcef2fda66657d5", + "line": 2576, + "resource_type": "aws_instance", + "resource_name": "example-instance-286", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example286}}", + "search_line": 2576, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example286)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example286)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cef0878bd454f9576ad97754f396f835291b96370022d37e369deaa9189cf7c0", + "line": 3467, + "resource_type": "aws_instance", + "resource_name": "example-instance-385", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example385}}", + "search_line": 3467, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example385)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example385)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b620713a7b64c0fddf8afb8683d61fe43a81f6fc2e9edc67f94af3ff6801d387", + "line": 3728, + "resource_type": "aws_instance", + "resource_name": "example-instance-414", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example414}}", + "search_line": 3728, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example414)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example414)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c382fef0b011f21d86b03b395d1ba9a18734d80251aab3c332e8cbedc6873cee", + "line": 1082, + "resource_type": "aws_instance", + "resource_name": "example-instance-120", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example120}}", + "search_line": 1082, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example120)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example120)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f9ea55800feffe2ed495e50e46aba24ef9dc69eaa620cd9beba30a19e55a33d6", + "line": 6986, + "resource_type": "aws_instance", + "resource_name": "example-instance-776", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example776}}", + "search_line": 6986, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example776)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example776)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ec59e1e9d172b4a5663baf3a40b0bd4025df9f355808a6f580baa046f7a0c8b4", + "line": 8120, + "resource_type": "aws_instance", + "resource_name": "example-instance-902", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example902}}", + "search_line": 8120, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example902)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example902)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3270003c894d278168d61cdccab1e2de54e68f4be64456f09529ea398b873155", + "line": 4736, + "resource_type": "aws_instance", + "resource_name": "example-instance-526", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example526}}", + "search_line": 4736, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example526)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example526)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ba2d76a606876188cb6e157e0b5cde3ed49d23a97b1285d646d3d19f9785bb81", + "line": 4250, + "resource_type": "aws_instance", + "resource_name": "example-instance-472", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example472}}", + "search_line": 4250, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example472)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example472)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7d6214581775914f343224f4cb0005f7997ab56921aa9de0d980b18a00961b3c", + "line": 6167, + "resource_type": "aws_instance", + "resource_name": "example-instance-685", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example685}}", + "search_line": 6167, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example685)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example685)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b4dca191d9bbd0cdc4d032819acb7e6fee1370a41b91496b06ffe924e167ae80", + "line": 1316, + "resource_type": "aws_instance", + "resource_name": "example-instance-146", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example146}}", + "search_line": 1316, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example146)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example146)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5bea53efece460548ddf11a4a1a05d33609b6e4ef7d52a361a738c9df4e74548", + "line": 7553, + "resource_type": "aws_instance", + "resource_name": "example-instance-839", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example839}}", + "search_line": 7553, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example839)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example839)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "36ec2f92158a38d58d2b9003fe9bf96231eb2cacbfe9259f8ed3ab3d19ce0dac", + "line": 8714, + "resource_type": "aws_instance", + "resource_name": "example-instance-968", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example968}}", + "search_line": 8714, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example968)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example968)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2d8f601e01f49834b7fe846bd3940f17f7b45feeaeb1c3f18664801ea6596163", + "line": 866, + "resource_type": "aws_instance", + "resource_name": "example-instance-96", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example96}}", + "search_line": 866, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example96)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example96)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "99f921bacf62808f094071044a3038ecf3f697b5ee516cb5cf993d67e28634ce", + "line": 3278, + "resource_type": "aws_instance", + "resource_name": "example-instance-364", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example364}}", + "search_line": 3278, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example364)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example364)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7538b0b57b4ad66c862202ecca41056d7021a421c447a2eab1e28cdc95cf0de9", + "line": 5042, + "resource_type": "aws_instance", + "resource_name": "example-instance-560", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example560}}", + "search_line": 5042, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example560)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example560)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "380bc630c83e65993172330a2e2b9a70b47a6e120ae0251e7ca9a67ec1344d2a", + "line": 398, + "resource_type": "aws_instance", + "resource_name": "example-instance-44", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example44}}", + "search_line": 398, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example44)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example44)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "503e4bfa3016c16ecaed095dda6ba5d42ad36ed896d155633b9be663e00298ca", + "line": 8084, + "resource_type": "aws_instance", + "resource_name": "example-instance-898", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example898}}", + "search_line": 8084, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example898)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example898)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "587cdee3d11d870775d242f735efff6d0d1cca463dfcfc34029df01894934c24", + "line": 3080, + "resource_type": "aws_instance", + "resource_name": "example-instance-342", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example342}}", + "search_line": 3080, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example342)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example342)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8c0ebae3cb6103213ad640ecdb1bc46d29f603d161562890fb6c45c8798f9ac1", + "line": 389, + "resource_type": "aws_instance", + "resource_name": "example-instance-43", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example43}}", + "search_line": 389, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example43)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example43)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "27ff519a150b8182d0843cea076ef70ba2b4d0a66bb0ec2c02c00cc0cb33a2c4", + "line": 3512, + "resource_type": "aws_instance", + "resource_name": "example-instance-390", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example390}}", + "search_line": 3512, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example390)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example390)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "41446a58e06c92eef3027e95b0efa62b6c81642a1833519527f0b57475447bce", + "line": 4898, + "resource_type": "aws_instance", + "resource_name": "example-instance-544", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example544}}", + "search_line": 4898, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example544)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example544)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b34fb5d54570c687366e4dd6a5e68eee7731d1c958b09043a5e608f6ee919769", + "line": 5276, + "resource_type": "aws_instance", + "resource_name": "example-instance-586", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example586}}", + "search_line": 5276, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example586)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example586)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9c501e2318fe9577b3252c86f0dcb7a0483274b61cdae8dbeb1e983fdc86c273", + "line": 6500, + "resource_type": "aws_instance", + "resource_name": "example-instance-722", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example722}}", + "search_line": 6500, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example722)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example722)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7f450d820223797eca2d7385925d6252394e44fae7f9dc07d45f6fce89ff1ac7", + "line": 1073, + "resource_type": "aws_instance", + "resource_name": "example-instance-119", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example119}}", + "search_line": 1073, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example119)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example119)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0f2d774423f79ac05ae0724d61634b8326e28f77ea37a3ba9248ca6f0b329277", + "line": 2414, + "resource_type": "aws_instance", + "resource_name": "example-instance-268", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example268}}", + "search_line": 2414, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example268)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example268)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9ed6101f0338f30e52b170ec67af5355a82594c65937f4548020dbcf8c5fd29f", + "line": 3800, + "resource_type": "aws_instance", + "resource_name": "example-instance-422", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example422}}", + "search_line": 3800, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example422)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example422)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6b30683ab42a114cdb2db8b2b46607f3b5853c6c4a19f0611820c0e533185783", + "line": 2603, + "resource_type": "aws_instance", + "resource_name": "example-instance-289", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example289}}", + "search_line": 2603, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example289)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example289)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d35dd68330ff545f6cb292766df069da42da845f45c26947ade4731fbe97427f", + "line": 2810, + "resource_type": "aws_instance", + "resource_name": "example-instance-312", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example312}}", + "search_line": 2810, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example312)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example312)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "65eff8cdeb4447f9b60a823b2d33f71ad8838dde5afa7869586af40c65a8792b", + "line": 6527, + "resource_type": "aws_instance", + "resource_name": "example-instance-725", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example725}}", + "search_line": 6527, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example725)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example725)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "86d808cfa453be97ef2d4d0ed77e04c2d7e61f7abf960b299e48c24593b2798d", + "line": 3422, + "resource_type": "aws_instance", + "resource_name": "example-instance-380", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example380}}", + "search_line": 3422, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example380)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example380)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "03bbd69168e825254d9a8e287d6720a27f6802bce63c796360ed554793a86b54", + "line": 3854, + "resource_type": "aws_instance", + "resource_name": "example-instance-428", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example428}}", + "search_line": 3854, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example428)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example428)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "34fdc86991465bfaaa3550cf1af44f15ef9a34f23188f85555081ff883db7ea1", + "line": 8111, + "resource_type": "aws_instance", + "resource_name": "example-instance-901", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example901}}", + "search_line": 8111, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example901)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example901)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "729998e7e371dcd279312ab54b5ae5aaabf89b245858cf4b11fc0d14d778d339", + "line": 8246, + "resource_type": "aws_instance", + "resource_name": "example-instance-916", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example916}}", + "search_line": 8246, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example916)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example916)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4ec1808e4b91483b450685638aec69c4aa289f406203624196e131379a512376", + "line": 2612, + "resource_type": "aws_instance", + "resource_name": "example-instance-290", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example290}}", + "search_line": 2612, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example290)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example290)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c283cbb91e957dab6d8056f430cece11528288d513f6f7da7205126ba8874677", + "line": 4034, + "resource_type": "aws_instance", + "resource_name": "example-instance-448", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example448}}", + "search_line": 4034, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example448)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example448)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "154788eda0c030fd3c01bf65fbcc1db9650d93afd95d1d57db40fc269468cfb5", + "line": 4187, + "resource_type": "aws_instance", + "resource_name": "example-instance-465", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example465}}", + "search_line": 4187, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example465)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example465)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f94466cfab925dc2c6c4c64ca979e8b70b04a247622616ed5af65dabca67ab77", + "line": 551, + "resource_type": "aws_instance", + "resource_name": "example-instance-61", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example61}}", + "search_line": 551, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example61)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example61)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "57db3a7e75994bed7c0072935d7d9b2e28d3d5de0a16a96bc15d7550a82af4a2", + "line": 7427, + "resource_type": "aws_instance", + "resource_name": "example-instance-825", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example825}}", + "search_line": 7427, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example825)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example825)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5bfc8c9982bf370fdbcb1c3b64d23ee7c2ceaf666a050ea17cfe9c32f22eac18", + "line": 5411, + "resource_type": "aws_instance", + "resource_name": "example-instance-601", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example601}}", + "search_line": 5411, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example601)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example601)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0a041ae7afc9148dbdea54a2f7766263b5b7e72f913a82644fc8f29c5a753474", + "line": 5681, + "resource_type": "aws_instance", + "resource_name": "example-instance-631", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example631}}", + "search_line": 5681, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example631)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example631)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dbf9ca4040dc2b8bc37dfb1a516f700261318024ccb2fe1cd726da837988a9f9", + "line": 7166, + "resource_type": "aws_instance", + "resource_name": "example-instance-796", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example796}}", + "search_line": 7166, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example796)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example796)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d8683a458bd473468dee857488c435e9c0928d2b39f685488d21a0fd1b98aed5", + "line": 8912, + "resource_type": "aws_instance", + "resource_name": "example-instance-990", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example990}}", + "search_line": 8912, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example990)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example990)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d754682aa05ac413b0e3142278bd08f77723dfacb14e07c889d41048fb610223", + "line": 425, + "resource_type": "aws_instance", + "resource_name": "example-instance-47", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example47}}", + "search_line": 425, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example47)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example47)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "af9be2f82bf5304035e1a74d9edf64954e6e7f9eecdfbf5f4fa580d5ea3fbbcf", + "line": 2126, + "resource_type": "aws_instance", + "resource_name": "example-instance-236", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example236}}", + "search_line": 2126, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example236)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example236)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "487009c39c62af1f21ea4799b69431b90b3d66577e123ff8bcaad1af0dce0c96", + "line": 4817, + "resource_type": "aws_instance", + "resource_name": "example-instance-535", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example535}}", + "search_line": 4817, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example535)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example535)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0d48893ffa0bbcb94d05af554a5f659503c2a2187d33621da0fbcdfe0785c31a", + "line": 1955, + "resource_type": "aws_instance", + "resource_name": "example-instance-217", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example217}}", + "search_line": 1955, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example217)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example217)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6cddda72ee3df8cb2892d0d2acf8901b25a49a1ef868e3e95a0ec8a382894d90", + "line": 6806, + "resource_type": "aws_instance", + "resource_name": "example-instance-756", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example756}}", + "search_line": 6806, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example756)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example756)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f468cc40c81b204e0cb79ef876c6f71e4e70c53afdb54d22fb32f866e78275bc", + "line": 8327, + "resource_type": "aws_instance", + "resource_name": "example-instance-925", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example925}}", + "search_line": 8327, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example925)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example925)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b95734ca0fb4745eff1d72e48120a911c1e29c4ad9e1d9cc905c5142a7e52a60", + "line": 4673, + "resource_type": "aws_instance", + "resource_name": "example-instance-519", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example519}}", + "search_line": 4673, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example519)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example519)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a9b817c0590bc7a580587a609e4b22bbe94a75f1d32a7e699c0e8ca97dd91651", + "line": 1370, + "resource_type": "aws_instance", + "resource_name": "example-instance-152", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example152}}", + "search_line": 1370, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example152)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example152)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "32945ce0e49987f9ef2742533889401daa8a44aa164d45214a7722223731cba5", + "line": 5231, + "resource_type": "aws_instance", + "resource_name": "example-instance-581", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example581}}", + "search_line": 5231, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example581)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example581)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "047f0e2a6ab0832ef1399aeebb4e911587556db6969cbe2e97ff6cbb3b2315f4", + "line": 7697, + "resource_type": "aws_instance", + "resource_name": "example-instance-855", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example855}}", + "search_line": 7697, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example855)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example855)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "764477dc3b3d4e5c2f7c289f50466ceef01907736bc0ef173f75b8bfbc455ead", + "line": 1541, + "resource_type": "aws_instance", + "resource_name": "example-instance-171", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example171}}", + "search_line": 1541, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example171)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example171)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3b4978a466e51646b2d5acb23f39f4e03bff7c0160f145c97e96d1ddcab08e00", + "line": 749, + "resource_type": "aws_instance", + "resource_name": "example-instance-83", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example83}}", + "search_line": 749, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example83)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example83)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "73b4db5b827f68f62d1d0a3a9d46e3caa1cfed8fa28dad04508667da1a72f29b", + "line": 2378, + "resource_type": "aws_instance", + "resource_name": "example-instance-264", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example264}}", + "search_line": 2378, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example264)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example264)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9204fbee26ad26c0c553152ac377ae8c2849e07c55a65632e66adeca9b5c63c3", + "line": 1415, + "resource_type": "aws_instance", + "resource_name": "example-instance-157", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example157}}", + "search_line": 1415, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example157)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example157)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1ccd7f840b259015acd90ef305c619f3e79fa6fe037202a741c0358beb7c9088", + "line": 4313, + "resource_type": "aws_instance", + "resource_name": "example-instance-479", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example479}}", + "search_line": 4313, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example479)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example479)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bccfeac1e503893d833fce6e2a85160c86fa6dd6d31427635fee0145a09a641e", + "line": 4826, + "resource_type": "aws_instance", + "resource_name": "example-instance-536", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example536}}", + "search_line": 4826, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example536)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example536)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "788c2a5905997edb1b23bf6aa22043157cb3e85ee6d8e2315270344413e8290c", + "line": 956, + "resource_type": "aws_instance", + "resource_name": "example-instance-106", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example106}}", + "search_line": 956, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example106)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example106)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4ebb42f253eae9951d17f350bdf2bc37f6f95cdb4a55e12942843e2e752ef5fc", + "line": 461, + "resource_type": "aws_instance", + "resource_name": "example-instance-51", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example51}}", + "search_line": 461, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example51)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example51)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "44b60ec7b5fd0c7b7d4cd51ec30714d3c38ad35e8c3464756283acfe60800127", + "line": 8372, + "resource_type": "aws_instance", + "resource_name": "example-instance-930", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example930}}", + "search_line": 8372, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example930)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example930)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2c7e955275618f990516387de111b8c7c241f43a44f6040795195adc53da429f", + "line": 137, + "resource_type": "aws_instance", + "resource_name": "example-instance-15", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example15}}", + "search_line": 137, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example15)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example15)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b4c8d091276e1b3e10a54f218a78494c7d28da2f36dcf7e24dd0cb80e19045ed", + "line": 3827, + "resource_type": "aws_instance", + "resource_name": "example-instance-425", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example425}}", + "search_line": 3827, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example425)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example425)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "76588091c745913667b5587b32d4fd9bea54d76a9e9ecee262bf209811c2fcbd", + "line": 4097, + "resource_type": "aws_instance", + "resource_name": "example-instance-455", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example455}}", + "search_line": 4097, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example455)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example455)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bce23a0cd3babea630975337eb9bd642d6e55f50b2b6fd8b13aa1ed674239277", + "line": 5204, + "resource_type": "aws_instance", + "resource_name": "example-instance-578", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example578}}", + "search_line": 5204, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example578)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example578)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "19a8c1a2f9b68256712e236f15a72a0bbcc3bc31f585452fa5cf94d058ee3aa9", + "line": 2864, + "resource_type": "aws_instance", + "resource_name": "example-instance-318", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example318}}", + "search_line": 2864, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example318)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example318)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "34b9d9c4fe3ae0d60621be7d4aa0efa20c605d549c9cfcabce7bd3a487eee475", + "line": 5456, + "resource_type": "aws_instance", + "resource_name": "example-instance-606", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example606}}", + "search_line": 5456, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example606)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example606)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0ebbd95b38f13c714e5ddbcda4c3a5a36b27189de841becdeb31a259faddc80b", + "line": 2756, + "resource_type": "aws_instance", + "resource_name": "example-instance-306", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example306}}", + "search_line": 2756, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example306)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example306)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "39d15224548f6868858cde6d4689d968a7bb07ac6cb89056e3e2dd92578063df", + "line": 3539, + "resource_type": "aws_instance", + "resource_name": "example-instance-393", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example393}}", + "search_line": 3539, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example393)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example393)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5ede28b748f40d672a08b89b615834c58254749586da15688b3d9273fbb8c65b", + "line": 6095, + "resource_type": "aws_instance", + "resource_name": "example-instance-677", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example677}}", + "search_line": 6095, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example677)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example677)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7ccf20a544a406e868eb2403ae6e744f4fd27a7ca2b3099eb95123ab9c82b4ba", + "line": 7688, + "resource_type": "aws_instance", + "resource_name": "example-instance-854", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example854}}", + "search_line": 7688, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example854)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example854)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3ef9bcccd3ee25a44e734f4bf8222c1b3919a90b24526fd6cc22b7fae242dd52", + "line": 8723, + "resource_type": "aws_instance", + "resource_name": "example-instance-969", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example969}}", + "search_line": 8723, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example969)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example969)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7712b5b16453e7a7c46a34e78a31b91a4131694fe6698cd6a5d9b70e05316455", + "line": 785, + "resource_type": "aws_instance", + "resource_name": "example-instance-87", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example87}}", + "search_line": 785, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example87)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example87)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "90d2cc5a244612934959c5ef18fd9ffcab27a4c9c33aa3d86d3185cb64b42e86", + "line": 830, + "resource_type": "aws_instance", + "resource_name": "example-instance-92", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example92}}", + "search_line": 830, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example92)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example92)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b6fd5c397b8efe4e34a23f006f992eb328b92a1273dd18ed89ef29ade4a65c3a", + "line": 1460, + "resource_type": "aws_instance", + "resource_name": "example-instance-162", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example162}}", + "search_line": 1460, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example162)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example162)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f62fe1b69214ac8de6cf77441a510fcf969c54c7421ee3fcf4450e904aaca955", + "line": 254, + "resource_type": "aws_instance", + "resource_name": "example-instance-28", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example28}}", + "search_line": 254, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example28)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example28)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "35bfc67226ee12ad83808de5148ca24fb526549cb2f6dcaf31e90d1ef104cfaf", + "line": 6545, + "resource_type": "aws_instance", + "resource_name": "example-instance-727", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example727}}", + "search_line": 6545, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example727)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example727)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "df664fda71c519817cf16cb74721ab0aa4d9bb5f8e2dd2181cc67acf2898e674", + "line": 3008, + "resource_type": "aws_instance", + "resource_name": "example-instance-334", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example334}}", + "search_line": 3008, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example334)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example334)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f3e4b6f6b84a851c3036dc3733d9a4bc69843a1feea155fcf49fad85596df323", + "line": 2216, + "resource_type": "aws_instance", + "resource_name": "example-instance-246", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example246}}", + "search_line": 2216, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example246)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example246)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f3e89cc2ef9dd64c0a8ef08f0910db0194833bbd52d7793cb1956aefbcb86522", + "line": 8516, + "resource_type": "aws_instance", + "resource_name": "example-instance-946", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example946}}", + "search_line": 8516, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example946)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example946)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ceaedc3d8be12c7cf56063760ef17488edb1722517bb47e0daf1b4f436f5a240", + "line": 5690, + "resource_type": "aws_instance", + "resource_name": "example-instance-632", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example632}}", + "search_line": 5690, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example632)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example632)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "27b2e090f4ea4c7766eeefbf501fa77b6b0191e856b553b803ce8a387dc6beed", + "line": 5447, + "resource_type": "aws_instance", + "resource_name": "example-instance-605", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example605}}", + "search_line": 5447, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example605)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example605)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7a52fa5dee8aca7df30d70b2ba801d66c7b0d399d5cb96633851dc8aa1c4e9a0", + "line": 416, + "resource_type": "aws_instance", + "resource_name": "example-instance-46", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example46}}", + "search_line": 416, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example46)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example46)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3c2a41385a71bf9bca543c20faac565de69165f29e4ab2ecb03f82fd1e9c4493", + "line": 3611, + "resource_type": "aws_instance", + "resource_name": "example-instance-401", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example401}}", + "search_line": 3611, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example401)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example401)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6b1cbfbb03c7a2e78e00c1776e75da40cdeda509fc06107230270ac8b4fa7150", + "line": 8543, + "resource_type": "aws_instance", + "resource_name": "example-instance-949", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example949}}", + "search_line": 8543, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example949)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example949)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6a45a74f01b1dea1c4933a73c7e1a764a895cf345a1890ab1fdb9ae238622e55", + "line": 8363, + "resource_type": "aws_instance", + "resource_name": "example-instance-929", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example929}}", + "search_line": 8363, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example929)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example929)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7b9ff24acba2109f1f30c4b7e3ab3297ff57f6823f5f997f1741d11e6b25c23e", + "line": 3098, + "resource_type": "aws_instance", + "resource_name": "example-instance-344", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example344}}", + "search_line": 3098, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example344)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example344)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ae91b15a59d5f3f974c037333a7bdf2a4e3e2024721aa949b841dd32072d2fd2", + "line": 7859, + "resource_type": "aws_instance", + "resource_name": "example-instance-873", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example873}}", + "search_line": 7859, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example873)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example873)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "637d7f1366b6b017df07eb2ae2eaf1b89964e34a5fe6f837c3b9d6548222296e", + "line": 2639, + "resource_type": "aws_instance", + "resource_name": "example-instance-293", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example293}}", + "search_line": 2639, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example293)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example293)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "618d9beae0cf003fff3cf38c927caf41e87be66998a2149e74adacd415ad0633", + "line": 6941, + "resource_type": "aws_instance", + "resource_name": "example-instance-771", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example771}}", + "search_line": 6941, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example771)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example771)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ef2682a4316ef9e90f74d5a8ddecf73c87bd0df1ddd0ade9e544142cc42004b5", + "line": 4178, + "resource_type": "aws_instance", + "resource_name": "example-instance-464", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example464}}", + "search_line": 4178, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example464)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example464)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "eb9e7fd20819abb083fead6f21c8480b63fc74949adb3e9b878ca2117874057a", + "line": 3944, + "resource_type": "aws_instance", + "resource_name": "example-instance-438", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example438}}", + "search_line": 3944, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example438)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example438)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "024a27154de092edbeab0bcf265a9210f3c72e23e2f3c736982c51c1673b1f4d", + "line": 317, + "resource_type": "aws_instance", + "resource_name": "example-instance-35", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example35}}", + "search_line": 317, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example35)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example35)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5464160dcb73c9309e775afd75084578386eb3d96d509c32c014557badc1128d", + "line": 2279, + "resource_type": "aws_instance", + "resource_name": "example-instance-253", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example253}}", + "search_line": 2279, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example253)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example253)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "227eeef2e7ebd6fdcd3e0c8cb5a833a37b97318c280d1a2650c2478246dc360a", + "line": 6032, + "resource_type": "aws_instance", + "resource_name": "example-instance-670", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example670}}", + "search_line": 6032, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example670)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example670)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e746ebeab85155b1c3c1c301955a56b500756ad1d3251a9b8ec9dbb4bdc135c8", + "line": 6023, + "resource_type": "aws_instance", + "resource_name": "example-instance-669", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example669}}", + "search_line": 6023, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example669)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example669)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ae79c0dbbd4e0b0214557ed8d32bfdc37fcf9415e44a246e8fdd6cc7781b78ed", + "line": 2162, + "resource_type": "aws_instance", + "resource_name": "example-instance-240", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example240}}", + "search_line": 2162, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example240)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example240)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b8b495f3e94c60137dc445753492222f6b0c554762f3cbbb026a95d481d58b31", + "line": 3215, + "resource_type": "aws_instance", + "resource_name": "example-instance-357", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example357}}", + "search_line": 3215, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example357)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example357)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a8cd963bdc2ef51d1dd32f5cf078f35a8d29027ead72318224d438b412a76fa4", + "line": 5951, + "resource_type": "aws_instance", + "resource_name": "example-instance-661", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example661}}", + "search_line": 5951, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example661)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example661)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f747fd01ea05943e6da24b1e5c1e47a9550fca69556dcc4756e3ec6b0e83b380", + "line": 5420, + "resource_type": "aws_instance", + "resource_name": "example-instance-602", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example602}}", + "search_line": 5420, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example602)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example602)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "44b160d28b0564b4d925b2f8cc24d6c12129fa37f851d144d22cf8e5b2b3f936", + "line": 1820, + "resource_type": "aws_instance", + "resource_name": "example-instance-202", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example202}}", + "search_line": 1820, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example202)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example202)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1dc19e43e8ba3045bdd86d60153d059d4bdd36b2599a23bf38579ad91cc9c61d", + "line": 8894, + "resource_type": "aws_instance", + "resource_name": "example-instance-988", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example988}}", + "search_line": 8894, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example988)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example988)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a4ff44dd95e9bb77d3ceb55c96f384263b1ade892dcddafa8e00a6415bba5588", + "line": 1307, + "resource_type": "aws_instance", + "resource_name": "example-instance-145", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example145}}", + "search_line": 1307, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example145)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example145)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b67898b3d279ed7b64d477c91da33ebd3ed15f2b3368c75841211c799ecf7369", + "line": 5366, + "resource_type": "aws_instance", + "resource_name": "example-instance-596", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example596}}", + "search_line": 5366, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example596)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example596)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "27af19de2c888e8cb122bf7b13bf31072f60f802b1656d373a156e4f8aadda9c", + "line": 5627, + "resource_type": "aws_instance", + "resource_name": "example-instance-625", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example625}}", + "search_line": 5627, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example625)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example625)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e723ecba7eb9a5c5656d23a5ca0348a04a435ff66cc833b2a0b887c538f70849", + "line": 7274, + "resource_type": "aws_instance", + "resource_name": "example-instance-808", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example808}}", + "search_line": 7274, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example808)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example808)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "be4de95e90ae7a4233d63f53d00787e4e476623c8ab071bc5a5e132b1d015ec2", + "line": 3269, + "resource_type": "aws_instance", + "resource_name": "example-instance-363", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example363}}", + "search_line": 3269, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example363)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example363)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "47590f158a19def981fd095adfb75ba954eaaea49c7f080f9827260163d30b5a", + "line": 3809, + "resource_type": "aws_instance", + "resource_name": "example-instance-423", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example423}}", + "search_line": 3809, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example423)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example423)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8968acac7cf43dd209b314783fc0ba879468293583c3fb767b0f47f7e2e05087", + "line": 1424, + "resource_type": "aws_instance", + "resource_name": "example-instance-158", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example158}}", + "search_line": 1424, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example158)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example158)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "110cdef61fa17102411ab7efa30f520aae3e36adcc6192b389a9b26f59fae53e", + "line": 1649, + "resource_type": "aws_instance", + "resource_name": "example-instance-183", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example183}}", + "search_line": 1649, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example183)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example183)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a4f2ecc4955f62ff2adeca8b5f01f2811610c0432003faa46e19b30665e491ab", + "line": 5870, + "resource_type": "aws_instance", + "resource_name": "example-instance-652", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example652}}", + "search_line": 5870, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example652)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example652)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "aae686a9882d31d946ef52ddb15ed86035081389718431545bff8382a94317b8", + "line": 3062, + "resource_type": "aws_instance", + "resource_name": "example-instance-340", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example340}}", + "search_line": 3062, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example340)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example340)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "564ae8943c60dfe824b71d6ac938ca0213da8b8b05aa0fd8e7746ebe31b9d4d6", + "line": 353, + "resource_type": "aws_instance", + "resource_name": "example-instance-39", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example39}}", + "search_line": 353, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example39)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example39)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0f578aacaa35e311716b698ddb82df0ffaa39a2d1907be05f8b1c82019ce62e6", + "line": 8732, + "resource_type": "aws_instance", + "resource_name": "example-instance-970", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example970}}", + "search_line": 8732, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example970)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example970)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "aa354b67f8ad4eb49c99563198055e3908cef2c83691abdcb40c410c17360053", + "line": 2405, + "resource_type": "aws_instance", + "resource_name": "example-instance-267", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example267}}", + "search_line": 2405, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example267)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example267)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d24accf1c537ea8fa054b89d18b21fb680db117da72685988b7d9e228aaf5d57", + "line": 3818, + "resource_type": "aws_instance", + "resource_name": "example-instance-424", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example424}}", + "search_line": 3818, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example424)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example424)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a8f0dbf1c3fcc4e75bc411e9133847e78bc069b98b8932a4488d3374152de0ec", + "line": 2360, + "resource_type": "aws_instance", + "resource_name": "example-instance-262", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example262}}", + "search_line": 2360, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example262)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example262)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "96720e9c8d574e804dee9aad14cfcda777754d3440885b4e49fea678f4e13877", + "line": 4835, + "resource_type": "aws_instance", + "resource_name": "example-instance-537", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example537}}", + "search_line": 4835, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example537)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example537)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d14ba047ff54414da19ebbff82c3c0484d1cfb279db0a8a5f767c981428850f4", + "line": 8093, + "resource_type": "aws_instance", + "resource_name": "example-instance-899", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example899}}", + "search_line": 8093, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example899)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example899)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b896ab01747ffbe6775890d9f44fe8baa20a6250cf5fa2c9bc2ff25533bbe362", + "line": 146, + "resource_type": "aws_instance", + "resource_name": "example-instance-16", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example16}}", + "search_line": 146, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example16)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example16)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0bc2fb65c54d1b635ec0d57adabf9ddf815cb6cbb3807aeb99c879b9d947479c", + "line": 7598, + "resource_type": "aws_instance", + "resource_name": "example-instance-844", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example844}}", + "search_line": 7598, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example844)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example844)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cabc2e89d47899832b36af6e3d78f1d8ea5107c7994f30a8fefd8671ca6c40ae", + "line": 8903, + "resource_type": "aws_instance", + "resource_name": "example-instance-989", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example989}}", + "search_line": 8903, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example989)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example989)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "23e2344ead87d1224cad56a7fc3a0fc88c8963f375e6a19a83a7ad113d00e6fb", + "line": 7436, + "resource_type": "aws_instance", + "resource_name": "example-instance-826", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example826}}", + "search_line": 7436, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example826)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example826)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3f50c64d109ddb64212b35768390d065ce37a11e8433432b6dbb800b5c27bba8", + "line": 8390, + "resource_type": "aws_instance", + "resource_name": "example-instance-932", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example932}}", + "search_line": 8390, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example932)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example932)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8ddcc6994fcfadd8cd74fc5eb180d98861b9060465198715be00efa3533fdfc5", + "line": 2387, + "resource_type": "aws_instance", + "resource_name": "example-instance-265", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example265}}", + "search_line": 2387, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example265)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example265)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "82cc132741a92230684e0d29a5f87d322952dcc7f31b2fe8ad0abd7b5a33d75e", + "line": 3881, + "resource_type": "aws_instance", + "resource_name": "example-instance-431", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example431}}", + "search_line": 3881, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example431)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example431)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e713ef07dd566371fd2ba6279448ab93741609216f504d6e5d7cce166750eab7", + "line": 6896, + "resource_type": "aws_instance", + "resource_name": "example-instance-766", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example766}}", + "search_line": 6896, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example766)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example766)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "85e23cd1ec2f76117d1e918325b868c9ff9425d4b445609d21c6ab3c5813b12c", + "line": 4007, + "resource_type": "aws_instance", + "resource_name": "example-instance-445", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example445}}", + "search_line": 4007, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example445)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example445)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "65824edd7f035ddf2bc6761a378518a44fd45b0ff319d5d7db7f51fad6e56689", + "line": 47, + "resource_type": "aws_instance", + "resource_name": "example-instance-5", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example5}}", + "search_line": 47, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example5)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example5)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "405758e503af42354375127321949baf4327e35dc9affbec611229e84285a6ca", + "line": 8507, + "resource_type": "aws_instance", + "resource_name": "example-instance-945", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example945}}", + "search_line": 8507, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example945)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example945)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ae2a0899f91dd153bb708093959896a3b2821d2e856c9e5974640e2fcb4b9347", + "line": 1262, + "resource_type": "aws_instance", + "resource_name": "example-instance-140", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example140}}", + "search_line": 1262, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example140)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example140)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "22dc939cbd0eb50efd3ffa513f578081a66ae7fed364873804ef7f0c7dba3c60", + "line": 4511, + "resource_type": "aws_instance", + "resource_name": "example-instance-501", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example501}}", + "search_line": 4511, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example501)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example501)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "379d967f806890b6511ec82b825a5ea31d9bddc81cade94e746279028fec7409", + "line": 7247, + "resource_type": "aws_instance", + "resource_name": "example-instance-805", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example805}}", + "search_line": 7247, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example805)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example805)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "88e16ab8aa4c89ab5ab5e1d12be36afa9d586819362319bb4ed35dc3c1e1a59d", + "line": 3872, + "resource_type": "aws_instance", + "resource_name": "example-instance-430", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example430}}", + "search_line": 3872, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example430)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example430)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "df61c58a8791eff5daafb40eb35d57fc1af76899b63a5cc94c25e6e958f2be87", + "line": 6194, + "resource_type": "aws_instance", + "resource_name": "example-instance-688", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example688}}", + "search_line": 6194, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example688)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example688)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7098be612a3f1e3de5154d76180375d601479dd75167b9c9de93344fb0db72a9", + "line": 1676, + "resource_type": "aws_instance", + "resource_name": "example-instance-186", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example186}}", + "search_line": 1676, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example186)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example186)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b481453d115af6df0353f005c9bd0deb657189eee8f695e555634eefd22a1187", + "line": 5186, + "resource_type": "aws_instance", + "resource_name": "example-instance-576", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example576}}", + "search_line": 5186, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example576)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example576)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ddabaf0074da94f8d0bccefd8f1fec5beba18e03f682f5095fbcde3b6b55cb11", + "line": 7418, + "resource_type": "aws_instance", + "resource_name": "example-instance-824", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example824}}", + "search_line": 7418, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example824)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example824)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f807759dc715e862bf8dc9485094b03fcaf22f9025f68cba021d6b795d939301", + "line": 7850, + "resource_type": "aws_instance", + "resource_name": "example-instance-872", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example872}}", + "search_line": 7850, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example872)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example872)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5bbebbb4db6ab372dcc2d6b8dc7ca352a9641164399aad2129b88630780415ab", + "line": 7454, + "resource_type": "aws_instance", + "resource_name": "example-instance-828", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example828}}", + "search_line": 7454, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example828)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example828)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3064ccf7b3b3491cf8a69c06b102f7aaca8616fd1d895ee9110ea588037c42cb", + "line": 839, + "resource_type": "aws_instance", + "resource_name": "example-instance-93", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example93}}", + "search_line": 839, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example93)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example93)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "aa4c2c7a4440195f37073baf23b9e836a635344c609ba45be1051e14ca649273", + "line": 8318, + "resource_type": "aws_instance", + "resource_name": "example-instance-924", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example924}}", + "search_line": 8318, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example924)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example924)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c3b3787f237b3469fd2d4ddad06fcbe0b0743d9efcd7d6f370f7316884682df3", + "line": 6122, + "resource_type": "aws_instance", + "resource_name": "example-instance-680", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example680}}", + "search_line": 6122, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example680)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example680)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c8aa7c26165c48c7245e0a17a5ffbcd227f3f4a8a666cbde79ba522acb089d7b", + "line": 6302, + "resource_type": "aws_instance", + "resource_name": "example-instance-700", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example700}}", + "search_line": 6302, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example700)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example700)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d636b687aaf96f223d1929b5342f5069f7b9487d5fc40a7ed67600ca2fed1340", + "line": 3107, + "resource_type": "aws_instance", + "resource_name": "example-instance-345", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example345}}", + "search_line": 3107, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example345)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example345)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "91d518bda87c94454fab5f16020a9ba113972fa5f97a7fc131f01c07b6b4c058", + "line": 4439, + "resource_type": "aws_instance", + "resource_name": "example-instance-493", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example493}}", + "search_line": 4439, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example493)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example493)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "824716f79be67dadc1adc423429c6bc13659aaf162fd9178f23305a876fe6040", + "line": 7652, + "resource_type": "aws_instance", + "resource_name": "example-instance-850", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example850}}", + "search_line": 7652, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example850)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example850)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "413183e56cb38b99df38dd435b056a21899c219243d8a2b5e487751166dc5022", + "line": 7256, + "resource_type": "aws_instance", + "resource_name": "example-instance-806", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example806}}", + "search_line": 7256, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example806)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example806)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "08d1262da46d1f3ad4562410cbcd4d04ca5328c035220eaeca63efe118718a68", + "line": 227, + "resource_type": "aws_instance", + "resource_name": "example-instance-25", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example25}}", + "search_line": 227, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example25)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example25)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f08540c2404d4eb8f1bb20b5c9e1f102b382eab59e0783827df829399b890673", + "line": 8498, + "resource_type": "aws_instance", + "resource_name": "example-instance-944", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example944}}", + "search_line": 8498, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example944)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example944)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4e2fa00b45ca903c33cef15733119829674d3e9dac9ca877019e110ed6d2a788", + "line": 8237, + "resource_type": "aws_instance", + "resource_name": "example-instance-915", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example915}}", + "search_line": 8237, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example915)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example915)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4026eda6c3bdc60160ae808a68f0da78f58e9f87518e24c61fec5e3bc0aa15f9", + "line": 5798, + "resource_type": "aws_instance", + "resource_name": "example-instance-644", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example644}}", + "search_line": 5798, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example644)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example644)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0287c2ada6b931027432074baa36ca5175270a3f2ec4d3c4b275b6906a1f9736", + "line": 4214, + "resource_type": "aws_instance", + "resource_name": "example-instance-468", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example468}}", + "search_line": 4214, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example468)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example468)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c3d802a9c81cf0dd3e825d34976bd753fd2bf4b5500ab7ab8376611cfd74ef78", + "line": 7922, + "resource_type": "aws_instance", + "resource_name": "example-instance-880", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example880}}", + "search_line": 7922, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example880)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example880)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8fb2731b9f9fdd0468ba3b0f22463dc8c3eb9fd6e775eb9cfc8646c2e6250398", + "line": 470, + "resource_type": "aws_instance", + "resource_name": "example-instance-52", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example52}}", + "search_line": 470, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example52)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example52)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "07f4b31992522f82fa24961afa20b2a46b33e71f33a589c835190cdd6c005c32", + "line": 2720, + "resource_type": "aws_instance", + "resource_name": "example-instance-302", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example302}}", + "search_line": 2720, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example302)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example302)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "26fd4a093c8cd9d6f4a05b6798ae8273d59d16cec620882890ab3dde125dbecc", + "line": 1991, + "resource_type": "aws_instance", + "resource_name": "example-instance-221", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example221}}", + "search_line": 1991, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example221)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example221)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "138d8cb46cd13dfd5135eb4a7f3e0f23336236abb81262adf2ee7e31d5e1b71b", + "line": 4385, + "resource_type": "aws_instance", + "resource_name": "example-instance-487", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example487}}", + "search_line": 4385, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example487)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example487)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a88d336004144193c365a4faa5311713c102340728095129988b6783d16ca60c", + "line": 2936, + "resource_type": "aws_instance", + "resource_name": "example-instance-326", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example326}}", + "search_line": 2936, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example326)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example326)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c04b8be4b453099c02027fdbf5b6bb2923d492dbe5ff01dfa40293a03180203b", + "line": 4997, + "resource_type": "aws_instance", + "resource_name": "example-instance-555", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example555}}", + "search_line": 4997, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example555)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example555)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "86cc716f856132a1f341723d908e6fd27638ac1dd361176ad03b5db51b603b14", + "line": 524, + "resource_type": "aws_instance", + "resource_name": "example-instance-58", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example58}}", + "search_line": 524, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example58)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example58)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3c272a9fd0028ab99af6eb209529016102383b05fe2089edde8242e4d8657ea4", + "line": 8012, + "resource_type": "aws_instance", + "resource_name": "example-instance-890", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example890}}", + "search_line": 8012, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example890)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example890)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2892162f1e1460f20b2785cf7877de8db6fa727ea456b9c1ef99dff56059ae1d", + "line": 3575, + "resource_type": "aws_instance", + "resource_name": "example-instance-397", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example397}}", + "search_line": 3575, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example397)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example397)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e46dda09f412a21dfbca332e1669f39440d5bb767bfad2538a302eebd52cdee4", + "line": 533, + "resource_type": "aws_instance", + "resource_name": "example-instance-59", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example59}}", + "search_line": 533, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example59)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example59)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "65323595457c0b39c4c3da972114e457e74013a6490e9c370e5d52b2755cdfb2", + "line": 4277, + "resource_type": "aws_instance", + "resource_name": "example-instance-475", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example475}}", + "search_line": 4277, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example475)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example475)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5b38d10dd716366668bb8e43864c3582e9954a92b0ae70b5f407476f90824e98", + "line": 5168, + "resource_type": "aws_instance", + "resource_name": "example-instance-574", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example574}}", + "search_line": 5168, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example574)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example574)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "18269e5f8fff791893c631e6f6bc90b720b5367c411af6a5dddbac112234ff88", + "line": 8777, + "resource_type": "aws_instance", + "resource_name": "example-instance-975", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example975}}", + "search_line": 8777, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example975)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example975)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "95f69f044a069619361874964d5d214eeabe6e9a5bf6138e5c4d4cd94a69fd0f", + "line": 3863, + "resource_type": "aws_instance", + "resource_name": "example-instance-429", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example429}}", + "search_line": 3863, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example429)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example429)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c19d378eafa5f48a85b4f6120a83472c2c4aa2f4966f56cf8973b74a51d5d8d1", + "line": 6995, + "resource_type": "aws_instance", + "resource_name": "example-instance-777", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example777}}", + "search_line": 6995, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example777)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example777)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "37d8b8a27cecd73b372645b06ecbb1ec7156a0c15eabde3cf4413a1191fbcd5a", + "line": 8471, + "resource_type": "aws_instance", + "resource_name": "example-instance-941", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example941}}", + "search_line": 8471, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example941)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example941)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d39a3a15a1fca5643087419fad293f5cc66dad404f83410b064bb68018e8d97d", + "line": 1199, + "resource_type": "aws_instance", + "resource_name": "example-instance-133", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example133}}", + "search_line": 1199, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example133)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example133)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6abb4d81fbfcb0e27795afbabbb27a893355da03d0fa5513900a61a22586a519", + "line": 3368, + "resource_type": "aws_instance", + "resource_name": "example-instance-374", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example374}}", + "search_line": 3368, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example374)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example374)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8280900cddab321b99de76f30c78d2632c5d5a0b1e3da914e62d9be4dc624ddd", + "line": 4556, + "resource_type": "aws_instance", + "resource_name": "example-instance-506", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example506}}", + "search_line": 4556, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example506)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example506)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f3a9a95c0ecfe3ae2b0c665978835d952b3db87e22ed6cfde7404447303ba6e3", + "line": 5294, + "resource_type": "aws_instance", + "resource_name": "example-instance-588", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example588}}", + "search_line": 5294, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example588)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example588)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3470653c8fe0436aabbb36a9180f868b17419ca6beaa9545e00216936438c2f2", + "line": 7823, + "resource_type": "aws_instance", + "resource_name": "example-instance-869", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example869}}", + "search_line": 7823, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example869)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example869)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ff95ae8843cf39f672800af5e77b57214e7df6dc49f2156d6d932f80c183cb58", + "line": 4295, + "resource_type": "aws_instance", + "resource_name": "example-instance-477", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example477}}", + "search_line": 4295, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example477)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example477)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2c1b0af5cd0c5896773033249b305ed6574bb6190d5acae23bc087eee7a9ebd8", + "line": 6680, + "resource_type": "aws_instance", + "resource_name": "example-instance-742", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example742}}", + "search_line": 6680, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example742)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example742)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "07f874a9da96447323c57a267227cdbb22ecf04a1ab401dfff77f8c9da384592", + "line": 938, + "resource_type": "aws_instance", + "resource_name": "example-instance-104", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example104}}", + "search_line": 938, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example104)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example104)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "49a96a363e4449910db8e23e2507aa1b713d699421d8ca9e36eda17e1225aa51", + "line": 3116, + "resource_type": "aws_instance", + "resource_name": "example-instance-346", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example346}}", + "search_line": 3116, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example346)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example346)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7cb4e3efec73b02a641386da4c365494f00fe8d2c9723b7ededa6647897efd9a", + "line": 2747, + "resource_type": "aws_instance", + "resource_name": "example-instance-305", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example305}}", + "search_line": 2747, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example305)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example305)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c56c7a3b53034929c0fed3ffbcc4c0946c9909fe2589bf60951d46a41849d011", + "line": 3017, + "resource_type": "aws_instance", + "resource_name": "example-instance-335", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example335}}", + "search_line": 3017, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example335)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example335)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "817ce43aab579e4e1415349588195d1453313fb51fca42f6534151983d5b133f", + "line": 5492, + "resource_type": "aws_instance", + "resource_name": "example-instance-610", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example610}}", + "search_line": 5492, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example610)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example610)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c0fddb3f869e6c0981e18089d3e93a1383353d76e614d4051e2480f46c5c90ea", + "line": 7373, + "resource_type": "aws_instance", + "resource_name": "example-instance-819", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example819}}", + "search_line": 7373, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example819)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example819)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6c9bb6bbcf8bb9826aaa77a75f87f2a54c195fc6073928ef269388ccea7f0e68", + "line": 8741, + "resource_type": "aws_instance", + "resource_name": "example-instance-971", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example971}}", + "search_line": 8741, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example971)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example971)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f2830816e0b220df643af2a24255bd5b7593101296ea0d21d7c6a8c3d7d2af36", + "line": 2729, + "resource_type": "aws_instance", + "resource_name": "example-instance-303", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example303}}", + "search_line": 2729, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example303)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example303)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1720fc9d385524a1bf92700f8a0555b4513777ba2c1ae2fb92bab244209ef9db", + "line": 2963, + "resource_type": "aws_instance", + "resource_name": "example-instance-329", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example329}}", + "search_line": 2963, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example329)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example329)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a58052a4e5bdd94cd6b87672fba2f2a92e0efe60ddc0c5778fef74233c5e0a92", + "line": 8354, + "resource_type": "aws_instance", + "resource_name": "example-instance-928", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example928}}", + "search_line": 8354, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example928)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example928)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "23677f41281647b19dcbef7d9c53a464f434712af17fd487f590753d3797653a", + "line": 2594, + "resource_type": "aws_instance", + "resource_name": "example-instance-288", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example288}}", + "search_line": 2594, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example288)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example288)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d2e50d8663d5be53695cf4af1d2a75d440a124c1ec30656a3f6ef2da00fc3fde", + "line": 1451, + "resource_type": "aws_instance", + "resource_name": "example-instance-161", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example161}}", + "search_line": 1451, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example161)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example161)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a1608dd4e7a7b329874fe80ede6e897f873b5d332f167055a0ba87e10483a2a6", + "line": 2882, + "resource_type": "aws_instance", + "resource_name": "example-instance-320", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example320}}", + "search_line": 2882, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example320)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example320)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "be6dc4b01bd81a1c76d4720b4d05107cbfff88640e6d855ef21baf8f935458fa", + "line": 6734, + "resource_type": "aws_instance", + "resource_name": "example-instance-748", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example748}}", + "search_line": 6734, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example748)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example748)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "32d8b7654935c5bc2defefaf9fcf06a553fb888b10d79429436762cf434cb342", + "line": 6968, + "resource_type": "aws_instance", + "resource_name": "example-instance-774", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example774}}", + "search_line": 6968, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example774)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example774)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5cc86a01a0870ec02da9072f6234fb1abe4b91fb113f26eca8e9a26e6af55498", + "line": 6239, + "resource_type": "aws_instance", + "resource_name": "example-instance-693", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example693}}", + "search_line": 6239, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example693)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example693)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "151f9dd5de5184f8cb30191365a5ece595532e48a53799577997bfebd46f0b1a", + "line": 7220, + "resource_type": "aws_instance", + "resource_name": "example-instance-802", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example802}}", + "search_line": 7220, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example802)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example802)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "226b3cd132a0474bd869c7a0e7a0e7915db4b1e4c0eb81dbe1d736e554c502bd", + "line": 2225, + "resource_type": "aws_instance", + "resource_name": "example-instance-247", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example247}}", + "search_line": 2225, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example247)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example247)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d66880994afbe2f017fbd01938de71b80de8f11eefa3c9256f10675f0a96ea2d", + "line": 2090, + "resource_type": "aws_instance", + "resource_name": "example-instance-232", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example232}}", + "search_line": 2090, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example232)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example232)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "02933e673ea74eb120b1a569913f27aa6c6378766db4f7947a29594c312963bc", + "line": 794, + "resource_type": "aws_instance", + "resource_name": "example-instance-88", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example88}}", + "search_line": 794, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example88)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example88)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7087b7920662214ebd4dc3243114ba995a553a4b54e2d897b0e7d4ecada62053", + "line": 8075, + "resource_type": "aws_instance", + "resource_name": "example-instance-897", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example897}}", + "search_line": 8075, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example897)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example897)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ebe495395f9733f8621e903e76a1270108022c3a4337f9a60e468dd1e1ff2b85", + "line": 3836, + "resource_type": "aws_instance", + "resource_name": "example-instance-426", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example426}}", + "search_line": 3836, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example426)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example426)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0dee959aee2a698e01656c9dc29f8ea86b739bdff873fe6c0ff99f355eabbf73", + "line": 1712, + "resource_type": "aws_instance", + "resource_name": "example-instance-190", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example190}}", + "search_line": 1712, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example190)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example190)", + "remediation": "monitoring = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c45b935d448410e5d86454c547a4e28d1fcdcb5d4ed32bd4da28913bfd9e8d59", + "line": 2765, + "resource_type": "aws_instance", + "resource_name": "example-instance-307", + "issue_type": "MissingAttribute", + "search_key": "aws_instance.{{example307}}", + "search_line": 2765, + "search_value": "", + "expected_value": "'monitoring' should be defined and not null%!(EXTRA string=example307)", + "actual_value": "'monitoring' is undefined or null%!(EXTRA string=example307)", + "remediation": "monitoring = true", + "remediation_type": "addition" + } + ] + }, + { + "query_name": "EC2 Not EBS Optimized", + "query_id": "60224630-175a-472a-9e23-133827040766", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/instance#ebs_optimized", + "severity": "INFO", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Best Practices", + "experimental": false, + "description": "It's considered a best practice for an EC2 instance to use an EBS optimized instance. This provides the best performance for your EBS volumes by minimizing contention between Amazon EBS I/O and other traffic from your instance", + "description_id": "ddce4bd9", + "files": [ + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8801efe222a40786dc6ee19b20aefcf8fd8c80e0a33940340afd6e0e6d953f81", + "line": 4349, + "resource_type": "aws_instance", + "resource_name": "example-instance-483", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example483}}]", + "search_line": 4349, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "240d873662ffb7623d5182f080a5cdde8ca2de12370fd97127bd66eb2a7a1b27", + "line": 7742, + "resource_type": "aws_instance", + "resource_name": "example-instance-860", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example860}}]", + "search_line": 7742, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7960d6eec4032a7334fe5dd95ab0a7b7e022b048300d3e3afc40f143e7c8045b", + "line": 2972, + "resource_type": "aws_instance", + "resource_name": "example-instance-330", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example330}}]", + "search_line": 2972, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8661b27695e702f933f1e74eb8f4128a8aa51f29baa15c9068a6fc2cd9e57f78", + "line": 4475, + "resource_type": "aws_instance", + "resource_name": "example-instance-497", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example497}}]", + "search_line": 4475, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d227315ef06ccc53a2c306f9855ce2c4bf21983ed9610d966ffed7219af0e27f", + "line": 4736, + "resource_type": "aws_instance", + "resource_name": "example-instance-526", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example526}}]", + "search_line": 4736, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2cf46b49c4095fbcef4c88c0680284e9fe57e9fe2e45233db10d73b8dab0453f", + "line": 1712, + "resource_type": "aws_instance", + "resource_name": "example-instance-190", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example190}}]", + "search_line": 1712, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ce39c3925361c15e338b484254a68a59c52897119911a258b3a2d4fe7a76ae46", + "line": 8642, + "resource_type": "aws_instance", + "resource_name": "example-instance-960", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example960}}]", + "search_line": 8642, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e8a52dfe2265035a2f069e82d363cdba915599e1533459875a477e99212ba20b", + "line": 6194, + "resource_type": "aws_instance", + "resource_name": "example-instance-688", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example688}}]", + "search_line": 6194, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "658599ba69691bff71ea1e503d964b063929fa07af220c95a5bb78013187e678", + "line": 6383, + "resource_type": "aws_instance", + "resource_name": "example-instance-709", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example709}}]", + "search_line": 6383, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8ef8d19d5dafa35d57870b5be8d77af39339b7c4057a65c4f0d512c75a069cc7", + "line": 3368, + "resource_type": "aws_instance", + "resource_name": "example-instance-374", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example374}}]", + "search_line": 3368, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "17744634929a0343ba0535a916a22c5c24b5ecc3bd30392159e5a724f575aeaa", + "line": 3791, + "resource_type": "aws_instance", + "resource_name": "example-instance-421", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example421}}]", + "search_line": 3791, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a4a72591f9275a109404d3b994389e797965b5122faf77abbe1d875c08e39bbd", + "line": 6446, + "resource_type": "aws_instance", + "resource_name": "example-instance-716", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example716}}]", + "search_line": 6446, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ca224110a75192e02123fd14e424031d9674c73c296408365d665247fcc409cb", + "line": 8759, + "resource_type": "aws_instance", + "resource_name": "example-instance-973", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example973}}]", + "search_line": 8759, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fc8676700ef9b7019df270bb8ad3c1d770c177ee110112ade64c9925665a7c37", + "line": 47, + "resource_type": "aws_instance", + "resource_name": "example-instance-5", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example5}}]", + "search_line": 47, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f8e1f08960890296f4f5e7db75fa0cea09443e89398179f7cd3757e89f8be52d", + "line": 8921, + "resource_type": "aws_instance", + "resource_name": "example-instance-991", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example991}}]", + "search_line": 8921, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "19fa9b8d079e9d73e5f088e11d44021467e945f2de981af2f03954b8c011e8a2", + "line": 2153, + "resource_type": "aws_instance", + "resource_name": "example-instance-239", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example239}}]", + "search_line": 2153, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "62dd8f63200572d00ba7b54ac7f38073b21af77f0eff81718ee9d83062653c17", + "line": 4853, + "resource_type": "aws_instance", + "resource_name": "example-instance-539", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example539}}]", + "search_line": 4853, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8f0e7aaf9936ba457e8b9b5e96ec0ca524461c153bddbb02ea59396b89dcba61", + "line": 2468, + "resource_type": "aws_instance", + "resource_name": "example-instance-274", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example274}}]", + "search_line": 2468, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a5790f96e1c1ef0e342fa24ce586828c32268a9c4295bbfe1dc2bfae03e0a801", + "line": 488, + "resource_type": "aws_instance", + "resource_name": "example-instance-54", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example54}}]", + "search_line": 488, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cea1c378172a12e0ed1425aaea5be3fa4669eedaa7edb0aa088a0de9806c5a84", + "line": 2855, + "resource_type": "aws_instance", + "resource_name": "example-instance-317", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example317}}]", + "search_line": 2855, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "44bc7930c6a4b3ac72f84d182a9c5f4507cdfe5f1ce504b3be98fc48141d9d50", + "line": 3755, + "resource_type": "aws_instance", + "resource_name": "example-instance-417", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example417}}]", + "search_line": 3755, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "23f7600b5c9402ecf279dd2ed53f4c532de41255200b70532e49f0fa2df93949", + "line": 4259, + "resource_type": "aws_instance", + "resource_name": "example-instance-473", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example473}}]", + "search_line": 4259, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "82c15fe1d77543dae60d03ea1b8e17762eb3ae5d2c0242f385be785f4fad03f5", + "line": 6590, + "resource_type": "aws_instance", + "resource_name": "example-instance-732", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example732}}]", + "search_line": 6590, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "82361d25f71c06ab0e5a2b77b6c388bbe21220d1696a8e5437174e26f3140f74", + "line": 1694, + "resource_type": "aws_instance", + "resource_name": "example-instance-188", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example188}}]", + "search_line": 1694, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d227e0674cb3f052e9c9c881191b14786d0ed3421dfb91209e9777341cbd4c4e", + "line": 5339, + "resource_type": "aws_instance", + "resource_name": "example-instance-593", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example593}}]", + "search_line": 5339, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1af204c56c82fa3ce311e00ce57383cb6250eaf47abd5d3e2a1878c0535951ce", + "line": 8201, + "resource_type": "aws_instance", + "resource_name": "example-instance-911", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example911}}]", + "search_line": 8201, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "087eae32ef6aadcb6e9591eed545848d6c89178b17ec0a4b00f4cd42cde62b88", + "line": 200, + "resource_type": "aws_instance", + "resource_name": "example-instance-22", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example22}}]", + "search_line": 200, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "12f25f47eff9573dc6323e0bc9e729ed7c180d25c0698feabe374666d14f5691", + "line": 7526, + "resource_type": "aws_instance", + "resource_name": "example-instance-836", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example836}}]", + "search_line": 7526, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6a45444e3bec63d7c070b0d98de9a251397ed2ed897b8ed11732a3f4ff5683c6", + "line": 2612, + "resource_type": "aws_instance", + "resource_name": "example-instance-290", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example290}}]", + "search_line": 2612, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0adaca7b06c82299c5ac843a05e5e29cde1ec5f5ddaffdd97117ab145d834403", + "line": 2981, + "resource_type": "aws_instance", + "resource_name": "example-instance-331", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example331}}]", + "search_line": 2981, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c039ca717bf6b684fb0d77bcad6b6ec7d11f0aa873b31fdd58cd977765e88fa1", + "line": 7418, + "resource_type": "aws_instance", + "resource_name": "example-instance-824", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example824}}]", + "search_line": 7418, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1f9ce69118fcd479198b9301dd6938a0231b27825c904ef63427124f343f4253", + "line": 6104, + "resource_type": "aws_instance", + "resource_name": "example-instance-678", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example678}}]", + "search_line": 6104, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4a155a84c0e42925b8d9c7de2a5bccbe2169b64f2fd6bf661317084a63f92543", + "line": 7382, + "resource_type": "aws_instance", + "resource_name": "example-instance-820", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example820}}]", + "search_line": 7382, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "00b0089d37826a1f5398c6fbcb33f8811838aac8708098970ed1ed0fc6a31ea9", + "line": 4754, + "resource_type": "aws_instance", + "resource_name": "example-instance-528", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example528}}]", + "search_line": 4754, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e40ce0758c8e76b4436e1550d3c7b6510cb13501e4dd01ea5284df3f6ac51d77", + "line": 2081, + "resource_type": "aws_instance", + "resource_name": "example-instance-231", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example231}}]", + "search_line": 2081, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dc9705c220619824f2119047eb01e65df039feadd072cb214a2d56f58285c137", + "line": 245, + "resource_type": "aws_instance", + "resource_name": "example-instance-27", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example27}}]", + "search_line": 245, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c957f4d41a344be466ff098274bd62536531618f2fe015c61cbbcd751a5a647f", + "line": 2459, + "resource_type": "aws_instance", + "resource_name": "example-instance-273", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example273}}]", + "search_line": 2459, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3db659f64c2160aa1e631ef5c86bf61c747999e1054c158a37b5dffa1bf7ad43", + "line": 2576, + "resource_type": "aws_instance", + "resource_name": "example-instance-286", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example286}}]", + "search_line": 2576, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dd9481f3eb89e2eba292ef2fffdcbdcc5f52440b33a1c008885b39eb208de07e", + "line": 4889, + "resource_type": "aws_instance", + "resource_name": "example-instance-543", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example543}}]", + "search_line": 4889, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e2c7df337d5332ccccae0588cec5ba52fe619dcd7601913de3768fdab162982b", + "line": 8903, + "resource_type": "aws_instance", + "resource_name": "example-instance-989", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example989}}]", + "search_line": 8903, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2e4abdfa0406248a20bf3e5a6339837acc0322771ac8e9157ca54d43589545b2", + "line": 1541, + "resource_type": "aws_instance", + "resource_name": "example-instance-171", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example171}}]", + "search_line": 1541, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d4827a5cf854d89e1d350efbe214eda03b8afc2b8f1fe6fbe6c7e6b2223527fc", + "line": 6626, + "resource_type": "aws_instance", + "resource_name": "example-instance-736", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example736}}]", + "search_line": 6626, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "76743af20da370aa8111e64aab50133c752b229c5de1c8e825bcca65a399bb59", + "line": 8066, + "resource_type": "aws_instance", + "resource_name": "example-instance-896", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example896}}]", + "search_line": 8066, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5ccc193690b7b30f26535e7b692f64f4ce932b20523ccd0ab422f8bb27056732", + "line": 1829, + "resource_type": "aws_instance", + "resource_name": "example-instance-203", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example203}}]", + "search_line": 1829, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5836ad0e8ee17a47bf38fe2a8042be6deb7e602091f876ffaff01b02e78b3f8a", + "line": 4781, + "resource_type": "aws_instance", + "resource_name": "example-instance-531", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example531}}]", + "search_line": 4781, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "575f0ba1338e0041a6e27e4c72ac5284be9ceb1731494c29ce9b82f889ed223b", + "line": 3053, + "resource_type": "aws_instance", + "resource_name": "example-instance-339", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example339}}]", + "search_line": 3053, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d645792a0b68d0a9617ac4aeb4c1566b35fba827aa67bb423554e6457f71819a", + "line": 2648, + "resource_type": "aws_instance", + "resource_name": "example-instance-294", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example294}}]", + "search_line": 2648, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "15f620165aae1e7e829c866af6810f035325b6294578f609303098a939344b38", + "line": 3035, + "resource_type": "aws_instance", + "resource_name": "example-instance-337", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example337}}]", + "search_line": 3035, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3b885b92e7aeb98572188b43b54b1f7861153703b77908e7d560deadb3847929", + "line": 8228, + "resource_type": "aws_instance", + "resource_name": "example-instance-914", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example914}}]", + "search_line": 8228, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9c6523c772bad36d5e39aef432717cadd00be3abf431ec3a456b3784393481f4", + "line": 3683, + "resource_type": "aws_instance", + "resource_name": "example-instance-409", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example409}}]", + "search_line": 3683, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "28ce937b4880fab2392ea2870a3f234668b1a1d8c4d8ad908669a3c8d753c7f7", + "line": 497, + "resource_type": "aws_instance", + "resource_name": "example-instance-55", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example55}}]", + "search_line": 497, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e06c3c65e1c985add1f5873b10a5b91a0140ceb3787c2649eea2cf378ee09ed9", + "line": 2270, + "resource_type": "aws_instance", + "resource_name": "example-instance-252", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example252}}]", + "search_line": 2270, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5ca8c9603027e32a2f0fba5447beab2335015a9a2a212bfc5ceac8d5dbb34631", + "line": 119, + "resource_type": "aws_instance", + "resource_name": "example-instance-13", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example13}}]", + "search_line": 119, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "79a09f13783c8564a88e4eb5ecef9699b99ab55aacecb99040b31e32378d2e23", + "line": 1820, + "resource_type": "aws_instance", + "resource_name": "example-instance-202", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example202}}]", + "search_line": 1820, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0454c34f93d398b903ccb8ed6b0e02315a455a899fb72f9081bd7f3914a1409b", + "line": 524, + "resource_type": "aws_instance", + "resource_name": "example-instance-58", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example58}}]", + "search_line": 524, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1ed242facaa1ad484c1e412d587189d8bb50dbabb86691b6c01707c2c43a4813", + "line": 3458, + "resource_type": "aws_instance", + "resource_name": "example-instance-384", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example384}}]", + "search_line": 3458, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0c1481e2eefc09d9bd856812e9547fe79b35a4c9cdfb2c6e109db9b6f158a65c", + "line": 101, + "resource_type": "aws_instance", + "resource_name": "example-instance-11", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example11}}]", + "search_line": 101, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "90ba2cafa790b850714703d780282a1aa0ed1e2db8cb9249119b4a16b1981d51", + "line": 3269, + "resource_type": "aws_instance", + "resource_name": "example-instance-363", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example363}}]", + "search_line": 3269, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a6544b8f944bbb301d9e16bb91966525663b2708c33569cad261d93e95a77885", + "line": 3971, + "resource_type": "aws_instance", + "resource_name": "example-instance-441", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example441}}]", + "search_line": 3971, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "87c44ddcdd25b60916e8a741985ef0c8793e272e4c3bad8f26a43a43b2ecd62b", + "line": 6068, + "resource_type": "aws_instance", + "resource_name": "example-instance-674", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example674}}]", + "search_line": 6068, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "474881273306f4640501fdfdfadbc13e28f4f6bcf5df59916d33aab6546302ea", + "line": 7949, + "resource_type": "aws_instance", + "resource_name": "example-instance-883", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example883}}]", + "search_line": 7949, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fe5c6965664030c8b096a45cb14cc54f6d1944dbd2623a2d36bcaecc2d36751a", + "line": 1163, + "resource_type": "aws_instance", + "resource_name": "example-instance-129", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example129}}]", + "search_line": 1163, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b9f8435e7cb45226092a4a9efb84f95a3778f3ef14e610088992b022f54538f8", + "line": 7823, + "resource_type": "aws_instance", + "resource_name": "example-instance-869", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example869}}]", + "search_line": 7823, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "966cf36f8db972422d4d4495aee0ae16f1cca79abb16a65c82f643608a8eb5b4", + "line": 965, + "resource_type": "aws_instance", + "resource_name": "example-instance-107", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example107}}]", + "search_line": 965, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "de12218c23171c7aab42ab180f8d0881ac79dc7d5e0091a98beae90043ce1db0", + "line": 6572, + "resource_type": "aws_instance", + "resource_name": "example-instance-730", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example730}}]", + "search_line": 6572, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6474fea942a5b74ecca9c1f8bcc885fdcec11be26b9544b77b3b1546de4f9952", + "line": 5996, + "resource_type": "aws_instance", + "resource_name": "example-instance-666", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example666}}]", + "search_line": 5996, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "02629ad52db8a0eb3c812c64b893658fb688bebde16e5d126a8cd5ca6ca11621", + "line": 8264, + "resource_type": "aws_instance", + "resource_name": "example-instance-918", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example918}}]", + "search_line": 8264, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "952b7d27b9b2c6c465ac2e32601e75190865015d13ce15c52d18c39ec02835e1", + "line": 7130, + "resource_type": "aws_instance", + "resource_name": "example-instance-792", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example792}}]", + "search_line": 7130, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3f63dd61b812493078c98352e31442fb5b0bd902043b1b6ffe95058f5635bd7f", + "line": 2009, + "resource_type": "aws_instance", + "resource_name": "example-instance-223", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example223}}]", + "search_line": 2009, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d94a04f17bef7e529351b3af8dfd33441ade09f81fcf6a460e94a49059f4be5d", + "line": 3179, + "resource_type": "aws_instance", + "resource_name": "example-instance-353", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example353}}]", + "search_line": 3179, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "110d125e2e2cc0c88f9effc4e135d3f96f4d453c209f3ad0bfdedf0ba7f5460d", + "line": 7139, + "resource_type": "aws_instance", + "resource_name": "example-instance-793", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example793}}]", + "search_line": 7139, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c558974bd9b8b7bd4d5340eb190ce643219b0081f441714fd1966e585d2929cc", + "line": 8525, + "resource_type": "aws_instance", + "resource_name": "example-instance-947", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example947}}]", + "search_line": 8525, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7530e2289fcb1dc0c7ce3fee85afa97daf1cda1df15d685ea4ef59512ff83903", + "line": 2243, + "resource_type": "aws_instance", + "resource_name": "example-instance-249", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example249}}]", + "search_line": 2243, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4c2a2dcd8a63a3e6660509e33b686c77577e6653e008e261f3d4bf9139a95760", + "line": 2990, + "resource_type": "aws_instance", + "resource_name": "example-instance-332", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example332}}]", + "search_line": 2990, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cf19d305ac446a33bbe6ec857a071f5b2ec43a4bec6c52a31a44446507988730", + "line": 74, + "resource_type": "aws_instance", + "resource_name": "example-instance-8", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example8}}]", + "search_line": 74, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a9c5ffa7b2dfbf282f6bb5467269c4379b113316625792f47c0b28646d6c2004", + "line": 4043, + "resource_type": "aws_instance", + "resource_name": "example-instance-449", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example449}}]", + "search_line": 4043, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1a2f8a12208ea01bf624b41b25b744fb16868188b0040def5fd711ea06e398da", + "line": 2117, + "resource_type": "aws_instance", + "resource_name": "example-instance-235", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example235}}]", + "search_line": 2117, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "887b70fcfee763ea9c78145f64a00565ec48f4c267357437c09e41cba20cc9c3", + "line": 2360, + "resource_type": "aws_instance", + "resource_name": "example-instance-262", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example262}}]", + "search_line": 2360, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "be6db8ada321454d0e501e9b19e640f89f8f02fb7c088fad0629f803c5bfebe0", + "line": 5330, + "resource_type": "aws_instance", + "resource_name": "example-instance-592", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example592}}]", + "search_line": 5330, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b22734dbb679085925f24f71af456d2f56d354da2aed03cb5b8143f187a0a2c6", + "line": 6293, + "resource_type": "aws_instance", + "resource_name": "example-instance-699", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example699}}]", + "search_line": 6293, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cf1678b2bea1101239be9d640ea3d0f38c020a73e3e93bfa1007d1910df710a8", + "line": 2396, + "resource_type": "aws_instance", + "resource_name": "example-instance-266", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example266}}]", + "search_line": 2396, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "68096c3ab40a79c4e211423429ac79762d54a0afbdc22925006b643a222cb29a", + "line": 3728, + "resource_type": "aws_instance", + "resource_name": "example-instance-414", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example414}}]", + "search_line": 3728, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5de57ee684ba5f991ac75232a350d9ddb8e12b7a29273eb748b87bfd68844d7c", + "line": 1775, + "resource_type": "aws_instance", + "resource_name": "example-instance-197", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example197}}]", + "search_line": 1775, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5086c56850ed5f907c3aadc67532ede09d96ad381ba70c0dcb34070a6d285954", + "line": 3332, + "resource_type": "aws_instance", + "resource_name": "example-instance-370", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example370}}]", + "search_line": 3332, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "46649f00de6359bf8a2315e353bdd4296dce85e9673b77067192c7c6fe2f9f83", + "line": 2369, + "resource_type": "aws_instance", + "resource_name": "example-instance-263", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example263}}]", + "search_line": 2369, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1105347e7a7f595dcbb0255c3867c27a1c3b6d7f9882cd5bbdea26a2178d5745", + "line": 7148, + "resource_type": "aws_instance", + "resource_name": "example-instance-794", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example794}}]", + "search_line": 7148, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "44ba758a4f9af458a4861328ee401b2bd3098c14129fe668655aee4b713d757a", + "line": 992, + "resource_type": "aws_instance", + "resource_name": "example-instance-110", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example110}}]", + "search_line": 992, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a8644bfbd0ba8c61bd439b1dfdeb19e5bac018178f72c7902b0382c113add559", + "line": 2027, + "resource_type": "aws_instance", + "resource_name": "example-instance-225", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example225}}]", + "search_line": 2027, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "912b3c92194e338e62ed01e1927fdb6f6c0d7d663f563b29b594747d40b1a9d7", + "line": 632, + "resource_type": "aws_instance", + "resource_name": "example-instance-70", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example70}}]", + "search_line": 632, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8dcec656126f20f29fc549e7e418b4741696eabe3f752d42a8353477567b1237", + "line": 1388, + "resource_type": "aws_instance", + "resource_name": "example-instance-154", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example154}}]", + "search_line": 1388, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0b725554d7ea13cfcdf83f425b5c5469fb8fa6568172ac0d95c3d4fb00ca1058", + "line": 2531, + "resource_type": "aws_instance", + "resource_name": "example-instance-281", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example281}}]", + "search_line": 2531, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a7338397b1b424c5d7d1795f0624d77c461b1afa794b8b73511ae21526874046", + "line": 4205, + "resource_type": "aws_instance", + "resource_name": "example-instance-467", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example467}}]", + "search_line": 4205, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "782c9460e5fa88329f5d45897506f4ed8ed5f5a42fd7326d2511d6a74c9d96bb", + "line": 5861, + "resource_type": "aws_instance", + "resource_name": "example-instance-651", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example651}}]", + "search_line": 5861, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a0d612f57c6e4cbb00a795a630960b5a9be994dd29e302c9caf5fd64b06540a5", + "line": 5501, + "resource_type": "aws_instance", + "resource_name": "example-instance-611", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example611}}]", + "search_line": 5501, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c904ed44a519e976fb51f1d734cf566769bc9ece233b3fafbaef138513e98f45", + "line": 2657, + "resource_type": "aws_instance", + "resource_name": "example-instance-295", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example295}}]", + "search_line": 2657, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b6a4ac97c83b1bb57396fcd61c0308b8252cc5f434f4d1102570d0d9d52bfedb", + "line": 3107, + "resource_type": "aws_instance", + "resource_name": "example-instance-345", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example345}}]", + "search_line": 3107, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "816ee3cad741fe8ff6597cf7120555e1f70e8c4022bbb46ffef1834bd69ebb2d", + "line": 3854, + "resource_type": "aws_instance", + "resource_name": "example-instance-428", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example428}}]", + "search_line": 3854, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "09538b96ee3134f34d27b1b7c58f80f44c5587513e302efb3040e62cb7339d9f", + "line": 857, + "resource_type": "aws_instance", + "resource_name": "example-instance-95", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example95}}]", + "search_line": 857, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f0aa98d6d2d6bff7b6c570b1d14ce3d1f0e9c69b24c5fb16145f75a284eb47bc", + "line": 8840, + "resource_type": "aws_instance", + "resource_name": "example-instance-982", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example982}}]", + "search_line": 8840, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "175796ef1883b5d0c6ff8d3da5e5fecbe8a7985c55035bee3b02daad5d627806", + "line": 2405, + "resource_type": "aws_instance", + "resource_name": "example-instance-267", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example267}}]", + "search_line": 2405, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "afe70472261cca6a2a9269572a9ef0871d8f340285f31f485a696bf31eeceb1f", + "line": 5159, + "resource_type": "aws_instance", + "resource_name": "example-instance-573", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example573}}]", + "search_line": 5159, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c7de135683e10042dd5f1870e0b0cd4b1a0a312d9c6e63f02480c3bc5155ef8a", + "line": 218, + "resource_type": "aws_instance", + "resource_name": "example-instance-24", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example24}}]", + "search_line": 218, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1246b069e081d2442f4ce58149fb33367d5d04cb59646fa63dab01654ca2c75e", + "line": 4808, + "resource_type": "aws_instance", + "resource_name": "example-instance-534", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example534}}]", + "search_line": 4808, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ee2a3015acedb49521299666b451231b6ae714c9b3e99b9496dfe241e79ef90b", + "line": 7427, + "resource_type": "aws_instance", + "resource_name": "example-instance-825", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example825}}]", + "search_line": 7427, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "77640d4f70fcfc49c01e61b9c449a71529338e92b1d2d49cf393840a8753299c", + "line": 2558, + "resource_type": "aws_instance", + "resource_name": "example-instance-284", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example284}}]", + "search_line": 2558, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3ef9330a0d4ebcbb96e93f22ffd20a8e7fddb25d1184a5457e4e590324c4817e", + "line": 1559, + "resource_type": "aws_instance", + "resource_name": "example-instance-173", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example173}}]", + "search_line": 1559, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "774ca8f473ccbcb56a5a9ceeaeb543a68df5817a29d8f8a79ef36474ba1b0c47", + "line": 5141, + "resource_type": "aws_instance", + "resource_name": "example-instance-571", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example571}}]", + "search_line": 5141, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d2c2045308d02ba77820a9441a4e62a60171557c57cb6f3124261d9c92ed611f", + "line": 3674, + "resource_type": "aws_instance", + "resource_name": "example-instance-408", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example408}}]", + "search_line": 3674, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2c72e1a682b3f0e85f3dcee1095679f305d393778a176e01df63aea3dabc8643", + "line": 4799, + "resource_type": "aws_instance", + "resource_name": "example-instance-533", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example533}}]", + "search_line": 4799, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1842a95529f2c206fa282954b74dee86d60f24dc0e3e295a966d3e7302228b30", + "line": 7499, + "resource_type": "aws_instance", + "resource_name": "example-instance-833", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example833}}]", + "search_line": 7499, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "536756740fb61de99fabb3a5e9d3a959b14dc4317879805b6d9fc800c153dd1a", + "line": 7589, + "resource_type": "aws_instance", + "resource_name": "example-instance-843", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example843}}]", + "search_line": 7589, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "91444e12234be4e7048dab2ff8cb3e2cf9f676e67a488fdafd573bbf8391e61e", + "line": 5204, + "resource_type": "aws_instance", + "resource_name": "example-instance-578", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example578}}]", + "search_line": 5204, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "90001813ee6549ee300e8b8d72a8489633ef4b2524be7457d887f3f8b3f92e87", + "line": 5438, + "resource_type": "aws_instance", + "resource_name": "example-instance-604", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example604}}]", + "search_line": 5438, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5ae7701f4145d430806464dd621c48e222235f68efe833d665ab1edf1760ab23", + "line": 7553, + "resource_type": "aws_instance", + "resource_name": "example-instance-839", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example839}}]", + "search_line": 7553, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "33e05a460347fc6c0b175c41cea1378832bc0a5f5f2cf51102ebf18ff51edc3c", + "line": 4106, + "resource_type": "aws_instance", + "resource_name": "example-instance-456", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example456}}]", + "search_line": 4106, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d6982f140ab5371e15eccd1327ac52eaa82bcaa8e4474ecfc5a3e454c5972db4", + "line": 839, + "resource_type": "aws_instance", + "resource_name": "example-instance-93", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example93}}]", + "search_line": 839, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9b74a80a1d21f20c7104604dc7c146549c98f65391baac177a4735c09af293b2", + "line": 8498, + "resource_type": "aws_instance", + "resource_name": "example-instance-944", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example944}}]", + "search_line": 8498, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e66c4b7483d31dde2f70e61f07987ab6095dbcdf21bd0a5d9a42b960797fd746", + "line": 407, + "resource_type": "aws_instance", + "resource_name": "example-instance-45", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example45}}]", + "search_line": 407, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "572f7afcfe8567eb28c270529622da2129af208b51d599425880ae1dd99c3167", + "line": 7652, + "resource_type": "aws_instance", + "resource_name": "example-instance-850", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example850}}]", + "search_line": 7652, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9f53de83e08ffdff2ccb7e9e15e78e79d095487af8eb1a5ca4d0f55edf46e7ae", + "line": 3620, + "resource_type": "aws_instance", + "resource_name": "example-instance-402", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example402}}]", + "search_line": 3620, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3716212378025ba374cdb5caa41ed2790941d7f67aba92376f7b49a668dfc934", + "line": 5276, + "resource_type": "aws_instance", + "resource_name": "example-instance-586", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example586}}]", + "search_line": 5276, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "176669fe5d5a148ffaee41897466b312775991176b6361649924675919c2f11d", + "line": 6554, + "resource_type": "aws_instance", + "resource_name": "example-instance-728", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example728}}]", + "search_line": 6554, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a00869b798e84819c36cc8a3d6c69575ccb42e905ba5fb58b73aafae372b7d6e", + "line": 5888, + "resource_type": "aws_instance", + "resource_name": "example-instance-654", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example654}}]", + "search_line": 5888, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3c8881f33b43bdf50fdc293855c7cbe615c4f45c2c18485cbe487dd7a72574f0", + "line": 722, + "resource_type": "aws_instance", + "resource_name": "example-instance-80", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example80}}]", + "search_line": 722, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "17aa8c211e50981227f4de369281a4fcbedc02bf0b4ec38d7833ffab45cb78d5", + "line": 1748, + "resource_type": "aws_instance", + "resource_name": "example-instance-194", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example194}}]", + "search_line": 1748, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ef073130f495372213d2e62bf0579c0dabadce6e9eaee3558c143aa3b4fb18e8", + "line": 7409, + "resource_type": "aws_instance", + "resource_name": "example-instance-823", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example823}}]", + "search_line": 7409, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "aecd7a4eacad12c587c672dd252a50359e514b9351a1390fb1ed047858c77264", + "line": 5231, + "resource_type": "aws_instance", + "resource_name": "example-instance-581", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example581}}]", + "search_line": 5231, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9c8df507471f8c98242443a3ce339fbe6cb15e1a4a118ac0b70f7c5b347f187d", + "line": 173, + "resource_type": "aws_instance", + "resource_name": "example-instance-19", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example19}}]", + "search_line": 173, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "72a4cdc43c7fdd9350cad2349c45f0a04da36c66bafc49ea4e854520085ea935", + "line": 5123, + "resource_type": "aws_instance", + "resource_name": "example-instance-569", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example569}}]", + "search_line": 5123, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "994fe8f5c5b91bc69e5adf92c87282b0ddfaeb625788ad3a53a9270b0557f064", + "line": 1190, + "resource_type": "aws_instance", + "resource_name": "example-instance-132", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example132}}]", + "search_line": 1190, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f3c2f7eb3f6d7769981c2f688aca200c958ef6eebcc9e17ed9b680cfc209c7e6", + "line": 5978, + "resource_type": "aws_instance", + "resource_name": "example-instance-664", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example664}}]", + "search_line": 5978, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "38d457ba4e02e4b6bd854b01e6001146f2492284897e1d4d3d1df2149ce2343c", + "line": 3134, + "resource_type": "aws_instance", + "resource_name": "example-instance-348", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example348}}]", + "search_line": 3134, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1bd0cf01219d6941e79fd6b372b4ffab9dfafc3d8df64d5aa846d3931b80539b", + "line": 7292, + "resource_type": "aws_instance", + "resource_name": "example-instance-810", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example810}}]", + "search_line": 7292, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "546bd99f5f748504ec6f2bfb8681d69e06e2b8f2be4ccbb8c73ba52fb7f99bc0", + "line": 2486, + "resource_type": "aws_instance", + "resource_name": "example-instance-276", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example276}}]", + "search_line": 2486, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "72e32ffa51841fc307c4ede12a82cca9e8e59cf149324edaacc6706b2ce8e4f8", + "line": 4493, + "resource_type": "aws_instance", + "resource_name": "example-instance-499", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example499}}]", + "search_line": 4493, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "90739ec6ed998280ab068a2715ed2a0f26878958bdce9200099e9d374f869120", + "line": 8732, + "resource_type": "aws_instance", + "resource_name": "example-instance-970", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example970}}]", + "search_line": 8732, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "75dbdd56ba60bf5a2bd83ffb0638105f3b14121be2858be8b7d0120a1be9c0a5", + "line": 2594, + "resource_type": "aws_instance", + "resource_name": "example-instance-288", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example288}}]", + "search_line": 2594, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "155e49f543ac7f185e4822d0b13696ffe01bfab6cb2ad32bf972ecea7f21f53e", + "line": 4529, + "resource_type": "aws_instance", + "resource_name": "example-instance-503", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example503}}]", + "search_line": 4529, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1cf74e8c0655cd410abdd06920c85aa3bd0626f5e334515b004d06366fae8f39", + "line": 8399, + "resource_type": "aws_instance", + "resource_name": "example-instance-933", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example933}}]", + "search_line": 8399, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "35fae87ddcab41290e4b610f8e1982e77db9557546ece796cb73e574adc77fbd", + "line": 1352, + "resource_type": "aws_instance", + "resource_name": "example-instance-150", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example150}}]", + "search_line": 1352, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "93ea73a3bfcd2516c4c45c0f69f44345ab51249d9d8ffa70dd312aa91ed39c08", + "line": 1883, + "resource_type": "aws_instance", + "resource_name": "example-instance-209", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example209}}]", + "search_line": 1883, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5671c3ca0d08f4e848a2a1d344bb2f1b4740cb25a60fdf755ac71b302a14aa1b", + "line": 1919, + "resource_type": "aws_instance", + "resource_name": "example-instance-213", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example213}}]", + "search_line": 1919, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "96172ae93df9bec014ee158164a43b4d8a7115739f691431b038b22242cd22cc", + "line": 884, + "resource_type": "aws_instance", + "resource_name": "example-instance-98", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example98}}]", + "search_line": 884, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6b70e2ceca91125ae0b920b14a309e1d3a8e018b42d2d004be9aa1a274519b2b", + "line": 5969, + "resource_type": "aws_instance", + "resource_name": "example-instance-663", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example663}}]", + "search_line": 5969, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bed1a1afed200c66fdd777596be1c001ab31bf70e91edfb19c368e98fe8af8e9", + "line": 6662, + "resource_type": "aws_instance", + "resource_name": "example-instance-740", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example740}}]", + "search_line": 6662, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3a46e46d8b3b423981922cc50affff9a556e14d3980d4afd369b4fb45474a0ac", + "line": 5105, + "resource_type": "aws_instance", + "resource_name": "example-instance-567", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example567}}]", + "search_line": 5105, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5aceec801ae3bb0263d84d362560a8c3919e79dcd077dda166e5de87ad505ad6", + "line": 1982, + "resource_type": "aws_instance", + "resource_name": "example-instance-220", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example220}}]", + "search_line": 1982, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ae2338f35b23c815881eb5b60c50385383099cd0baac223f2a5a5c917170314c", + "line": 5942, + "resource_type": "aws_instance", + "resource_name": "example-instance-660", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example660}}]", + "search_line": 5942, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a416bde873ec1081206738705952509425b157366665b07302b0f23716511d12", + "line": 5474, + "resource_type": "aws_instance", + "resource_name": "example-instance-608", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example608}}]", + "search_line": 5474, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c5ca56dd30e421117003e1411230d59066d7adcd0227a614b8dcfb4e92eb3ea2", + "line": 5024, + "resource_type": "aws_instance", + "resource_name": "example-instance-558", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example558}}]", + "search_line": 5024, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cf307e437ada8435a605bf0e8906e974bb51bd3b47ac4645a44924bfe5f60b9e", + "line": 1577, + "resource_type": "aws_instance", + "resource_name": "example-instance-175", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example175}}]", + "search_line": 1577, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1aad71435aa29ffe603c7b38e494a3a626a63efbe10ce7f5791ba388d9124d97", + "line": 7058, + "resource_type": "aws_instance", + "resource_name": "example-instance-784", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example784}}]", + "search_line": 7058, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "96bd8213d0ae62078f2e6b78b6aaf4d23ac39813cfcfba8c96c38f4f0cf56afc", + "line": 1802, + "resource_type": "aws_instance", + "resource_name": "example-instance-200", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example200}}]", + "search_line": 1802, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "347407829cb08b940b8142caa103603581f1ab335d5b4da8bbd612121cba6179", + "line": 7571, + "resource_type": "aws_instance", + "resource_name": "example-instance-841", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example841}}]", + "search_line": 7571, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2de27b7b45b78df8568155389f68c145d72da693214d0d9bcaade002130c9ae9", + "line": 3890, + "resource_type": "aws_instance", + "resource_name": "example-instance-432", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example432}}]", + "search_line": 3890, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "93cab1589fabc50234497f3732e24778019f214c9c3589954018c19c3b072e10", + "line": 4061, + "resource_type": "aws_instance", + "resource_name": "example-instance-451", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example451}}]", + "search_line": 4061, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a4e21c5ed129fd2c12f73e5cce9b7b7c908705acc226cc7e3889312c5782dada", + "line": 7796, + "resource_type": "aws_instance", + "resource_name": "example-instance-866", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example866}}]", + "search_line": 7796, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0e0f0be1e3d4e778a89efbc7e8f2386592403899e47f845a0285557a70a6e88b", + "line": 8624, + "resource_type": "aws_instance", + "resource_name": "example-instance-958", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example958}}]", + "search_line": 8624, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6e95fa8d348c0ec35336f1650b4fe813899e79ec463df953c05e31377581a78d", + "line": 1928, + "resource_type": "aws_instance", + "resource_name": "example-instance-214", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example214}}]", + "search_line": 1928, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7c495fd8bc626c175735c0ea30896e15511015dc2f07dcfc272abcc66fb74728", + "line": 362, + "resource_type": "aws_instance", + "resource_name": "example-instance-40", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example40}}]", + "search_line": 362, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "debbc1da70a3c8345840565ae1a093071fb536a6e55259fba16455e9a57e58dd", + "line": 5069, + "resource_type": "aws_instance", + "resource_name": "example-instance-563", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example563}}]", + "search_line": 5069, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b56d880f5e5c26503b34e7ab390874efe1dfc2add2a240b1f92d5559292d7983", + "line": 542, + "resource_type": "aws_instance", + "resource_name": "example-instance-60", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example60}}]", + "search_line": 542, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b283c6c383a8a91992cb23718c3268deb879e3d17bc2afb0ed06c67dd4fc8c4b", + "line": 6230, + "resource_type": "aws_instance", + "resource_name": "example-instance-692", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example692}}]", + "search_line": 6230, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "339567bfccb2fac3a886ff7397dbda532ee47df4af80573cc3bed9a942f0f805", + "line": 848, + "resource_type": "aws_instance", + "resource_name": "example-instance-94", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example94}}]", + "search_line": 848, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5f3786c960d136fa2982f3b704ae935376cba373c547a257ca011ed262eccfba", + "line": 1316, + "resource_type": "aws_instance", + "resource_name": "example-instance-146", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example146}}]", + "search_line": 1316, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "75e5b3a73376c3e2025ee098f5ee53f5d8f0161c8f16caf8aee73b1b1fb8715b", + "line": 5852, + "resource_type": "aws_instance", + "resource_name": "example-instance-650", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example650}}]", + "search_line": 5852, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a9b6ef79e8a841b4b3035bffbba30e8da4625c91a7e858f83656d0cd8b39d86f", + "line": 2522, + "resource_type": "aws_instance", + "resource_name": "example-instance-280", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example280}}]", + "search_line": 2522, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2ab6d6e07c4097012e09dbdb53c1dd518066b6443d3c96794d3ad74bfd04793b", + "line": 8741, + "resource_type": "aws_instance", + "resource_name": "example-instance-971", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example971}}]", + "search_line": 8741, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "23ac1793013695ee7ca61ce8c985d6412739054b6597ba312754a23cf3123312", + "line": 7922, + "resource_type": "aws_instance", + "resource_name": "example-instance-880", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example880}}]", + "search_line": 7922, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6e1095c5ded7c8fe1179abbaf866a141b834df845fa70a8102a3c1488378891f", + "line": 8795, + "resource_type": "aws_instance", + "resource_name": "example-instance-977", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example977}}]", + "search_line": 8795, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6228cba8fefa9e46e92f604d0173c5fee44578ab85cd653b53bd2d0deab4160b", + "line": 3782, + "resource_type": "aws_instance", + "resource_name": "example-instance-420", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example420}}]", + "search_line": 3782, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cf28364bc4774cee470f1cec388a0583180862bcfc7feff85438658ceb6269a3", + "line": 7310, + "resource_type": "aws_instance", + "resource_name": "example-instance-812", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example812}}]", + "search_line": 7310, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2e70aca0cce5943812780174b04379b5a84ecef44826d50740fc147538ec6c6a", + "line": 8723, + "resource_type": "aws_instance", + "resource_name": "example-instance-969", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example969}}]", + "search_line": 8723, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6db70bafbf3f655de5f4e0c5df99602a82b6546e0ce17f102806bf4789544e5f", + "line": 1496, + "resource_type": "aws_instance", + "resource_name": "example-instance-166", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example166}}]", + "search_line": 1496, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "baa177032bd2fa767224d2e5cf9efbb005def9ab5edd25c51d5f7543e65c778d", + "line": 236, + "resource_type": "aws_instance", + "resource_name": "example-instance-26", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example26}}]", + "search_line": 236, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ef2522972f2f1929885ad20345971ded49294980785aa5fe1aad35de1f39d922", + "line": 3242, + "resource_type": "aws_instance", + "resource_name": "example-instance-360", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example360}}]", + "search_line": 3242, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2b87a6f732f2c2b73323ba607e879fb102ec959237ba37e76c1b0c92b0c74e06", + "line": 7814, + "resource_type": "aws_instance", + "resource_name": "example-instance-868", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example868}}]", + "search_line": 7814, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2bdae4803e0c42e0c1186c9ef9d3311eea9aa68b4e962885314a6f3587f791a7", + "line": 1523, + "resource_type": "aws_instance", + "resource_name": "example-instance-169", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example169}}]", + "search_line": 1523, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e1d2ad28c4cfe21e068e13dc03c32b34952167ca25a1924a3a457e64e7faf17a", + "line": 2927, + "resource_type": "aws_instance", + "resource_name": "example-instance-325", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example325}}]", + "search_line": 2927, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "59cad6ffff38bca18f4448853a8b78293fb1ed1013e52d9a602a49f97f4e1ddf", + "line": 4835, + "resource_type": "aws_instance", + "resource_name": "example-instance-537", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example537}}]", + "search_line": 4835, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2253487cce59e189c1a0dc260a46632152645c2de0ee41da4f376300f48d63f0", + "line": 983, + "resource_type": "aws_instance", + "resource_name": "example-instance-109", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example109}}]", + "search_line": 983, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d39eb667b36a8321ae3d79d379266193b6f20fbdc7db0b97424ed4e290c4da93", + "line": 7364, + "resource_type": "aws_instance", + "resource_name": "example-instance-818", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example818}}]", + "search_line": 7364, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "aa1dffb3ffc2a9fd9af65567ea12f12165910be078e1faf8f62e6561e93f343b", + "line": 1865, + "resource_type": "aws_instance", + "resource_name": "example-instance-207", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example207}}]", + "search_line": 1865, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "afdf0015fd8604158bd894d67620c383a5848871f8e7862dd9df3ff8c45890e4", + "line": 3152, + "resource_type": "aws_instance", + "resource_name": "example-instance-350", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example350}}]", + "search_line": 3152, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4ce516530dc2d495553e028bb86891ebb21122b573dcb710f7b3af8fa6722923", + "line": 5240, + "resource_type": "aws_instance", + "resource_name": "example-instance-582", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example582}}]", + "search_line": 5240, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c9fbee3ad89691c99b03ad9bddaf42731f4c7c3f9e8f258b4df93c89dcb6dc01", + "line": 6599, + "resource_type": "aws_instance", + "resource_name": "example-instance-733", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example733}}]", + "search_line": 6599, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a907a2f0f08ba8f17ca13547e4648a694140823840c4ccf6382176c43030364c", + "line": 7355, + "resource_type": "aws_instance", + "resource_name": "example-instance-817", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example817}}]", + "search_line": 7355, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8622c2af6aa0fcb4b11105ff3cdd435515d864580d396890cb88f0aaeee1df31", + "line": 8597, + "resource_type": "aws_instance", + "resource_name": "example-instance-955", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example955}}]", + "search_line": 8597, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2cd80d4c1e8512abdd947519b5d27ce48515a3c1d8ff1c14fe15be38b794535c", + "line": 2045, + "resource_type": "aws_instance", + "resource_name": "example-instance-227", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example227}}]", + "search_line": 2045, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "19d8ad20f94ce55b58274d41bba294a0d235c42ea5cb8b437480a87256a97dd1", + "line": 4727, + "resource_type": "aws_instance", + "resource_name": "example-instance-525", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example525}}]", + "search_line": 4727, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e46b63d96800a4b0176a915c56f7ae50f98d8da35d604ea2b1be4746c46755e5", + "line": 2801, + "resource_type": "aws_instance", + "resource_name": "example-instance-311", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example311}}]", + "search_line": 2801, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ea37e83a07a9986bd7767fbbf4040e56ccc3dc9cd81a31e2745728b8d2f819ab", + "line": 6167, + "resource_type": "aws_instance", + "resource_name": "example-instance-685", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example685}}]", + "search_line": 6167, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "00d4f0a327f849c6597619c346a75dee92070a169cb9f9dd869e1c88ce7d4d4f", + "line": 6995, + "resource_type": "aws_instance", + "resource_name": "example-instance-777", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example777}}]", + "search_line": 6995, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "52a6f346ad023b8b231273b252c71f4df94e6fa839ad26df83fbcd1c231a35d9", + "line": 2603, + "resource_type": "aws_instance", + "resource_name": "example-instance-289", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example289}}]", + "search_line": 2603, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9534f469dd0c4459a91db442ce2eddf522cda887d6f1dda1e5dd55627c126f8b", + "line": 8588, + "resource_type": "aws_instance", + "resource_name": "example-instance-954", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example954}}]", + "search_line": 8588, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2b61bb12e627ff7950125ee3db12e33d3ac969e36be7c0399809002b06084aeb", + "line": 2072, + "resource_type": "aws_instance", + "resource_name": "example-instance-230", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example230}}]", + "search_line": 2072, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8205e491a0220e114100782914e6bedaf9f791319f3d79510d15223567d959c4", + "line": 1433, + "resource_type": "aws_instance", + "resource_name": "example-instance-159", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example159}}]", + "search_line": 1433, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0331757d567586e6157a373fbe8648068e4c1feb3b3df633d1041bc8313221d0", + "line": 3701, + "resource_type": "aws_instance", + "resource_name": "example-instance-411", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example411}}]", + "search_line": 3701, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "58fab39a979daece4364210a97785e4e18cebc0072cacc0d98f681135bde05d8", + "line": 2765, + "resource_type": "aws_instance", + "resource_name": "example-instance-307", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example307}}]", + "search_line": 2765, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "500c2a252a3c501b221630e1d9984ea5c228c5c39a35d9c8f94354756629d809", + "line": 767, + "resource_type": "aws_instance", + "resource_name": "example-instance-85", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example85}}]", + "search_line": 767, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4195a3491ada578eb19e2ff3eec04950bd7bf7f656ca1310c0caab014e03cec2", + "line": 1721, + "resource_type": "aws_instance", + "resource_name": "example-instance-191", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example191}}]", + "search_line": 1721, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ddd6d78fb4ea5b5a4b347130a31cc1cbaa7b70077166b10206dcc248f3ed7f4b", + "line": 8354, + "resource_type": "aws_instance", + "resource_name": "example-instance-928", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example928}}]", + "search_line": 8354, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "771162bb3057bddfa417c98e51cf07be48fd7b2b16eb8284e14fbf4b12359cb5", + "line": 1091, + "resource_type": "aws_instance", + "resource_name": "example-instance-121", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example121}}]", + "search_line": 1091, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bea06c1c3e664477d2b2e5c32246234ba609ba275f61e17b718d91122fe83c30", + "line": 4133, + "resource_type": "aws_instance", + "resource_name": "example-instance-459", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example459}}]", + "search_line": 4133, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ff9861c8c47eb3155390c414c64d94929f13f5b176bb12bbdead00d9155658f1", + "line": 5492, + "resource_type": "aws_instance", + "resource_name": "example-instance-610", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example610}}]", + "search_line": 5492, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a0caa67660837197f226445687c6f7d6fe0466fa1e94096f296c444e21d02c16", + "line": 2837, + "resource_type": "aws_instance", + "resource_name": "example-instance-315", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example315}}]", + "search_line": 2837, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2fb57a447958c05a25074d2a71a64954e4a18070f9c3c96b92b38041a5e5cbcc", + "line": 2819, + "resource_type": "aws_instance", + "resource_name": "example-instance-313", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example313}}]", + "search_line": 2819, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "be1c36f80ba7dae8ca44d5d3ce222c581b5d18baba201a1a533fee7a516cacfe", + "line": 5699, + "resource_type": "aws_instance", + "resource_name": "example-instance-633", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example633}}]", + "search_line": 5699, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "609eb15af8500a7e24ac0f5c30f2a096fe923a130fd2ce8d7c8b52f0acfea1dc", + "line": 3116, + "resource_type": "aws_instance", + "resource_name": "example-instance-346", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example346}}]", + "search_line": 3116, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "70e0111c67b2c8b6ebb9490c2c68b0a6cbbf3755178065fa58cff42b77da5a14", + "line": 4520, + "resource_type": "aws_instance", + "resource_name": "example-instance-502", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example502}}]", + "search_line": 4520, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8be6c475f2c555121c9a407005ff0ae63728315468bb07ff7cf64db07740a6a5", + "line": 7022, + "resource_type": "aws_instance", + "resource_name": "example-instance-780", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example780}}]", + "search_line": 7022, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8b44a90cdbde099d275a34fa3183b889fc551229e39518d9bf407a907ebf21ce", + "line": 5546, + "resource_type": "aws_instance", + "resource_name": "example-instance-616", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example616}}]", + "search_line": 5546, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6f05573c4652e265235686ecfdb65833105463ec33720cbb5c462d171b922ef2", + "line": 2540, + "resource_type": "aws_instance", + "resource_name": "example-instance-282", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example282}}]", + "search_line": 2540, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "85000a5990bb37b6d592cb52fe1f7d91a7b2a7fae490a10a6ea4cd574a54788c", + "line": 6923, + "resource_type": "aws_instance", + "resource_name": "example-instance-769", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example769}}]", + "search_line": 6923, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "508f35d060efaf1779def11dd20c0874d0ea03534f79ac9f3c08d5f28bba6cf4", + "line": 2414, + "resource_type": "aws_instance", + "resource_name": "example-instance-268", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example268}}]", + "search_line": 2414, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "726fa41c53fb45801b2606018e9485e396f10b2372f78428182bed34f57ad51e", + "line": 3323, + "resource_type": "aws_instance", + "resource_name": "example-instance-369", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example369}}]", + "search_line": 3323, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ed3b4150c97eace7063ce85fc0a7c5d5c7f420679f31976d3ff128206bec179d", + "line": 5906, + "resource_type": "aws_instance", + "resource_name": "example-instance-656", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example656}}]", + "search_line": 5906, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7c0eae668e5e3b1e5ad02c34375e2759cec7cb8ba55908d0b84e39d45b70d4d8", + "line": 8885, + "resource_type": "aws_instance", + "resource_name": "example-instance-987", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example987}}]", + "search_line": 8885, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e5178635afb7c3df834417f717714a07ffbe55c82424bb2eb2034b7c78b6f436", + "line": 5114, + "resource_type": "aws_instance", + "resource_name": "example-instance-568", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example568}}]", + "search_line": 5114, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "aa6d1972e565ba72ecc541d229f91ddc1659d48d3e5e99f39f775fcddef5b4e7", + "line": 3935, + "resource_type": "aws_instance", + "resource_name": "example-instance-437", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example437}}]", + "search_line": 3935, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bcd4bc42b6ae89e32e036cf73150b766c74064973b0c6023863e40a3480df00e", + "line": 2756, + "resource_type": "aws_instance", + "resource_name": "example-instance-306", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example306}}]", + "search_line": 2756, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7b8dac54d869881de93147134f145d4027cba79f38cf2454c183bb6d2ca58c71", + "line": 4430, + "resource_type": "aws_instance", + "resource_name": "example-instance-492", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example492}}]", + "search_line": 4430, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "94d4f8c72a5f310437edffda5d31d836340d24888f8cd66a4a6197741f0626bf", + "line": 2333, + "resource_type": "aws_instance", + "resource_name": "example-instance-259", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example259}}]", + "search_line": 2333, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "51be1dbbd5ee537a9dd7e48a183b5d1be2edad53cdcd9dd18ee1d6738ececd24", + "line": 5132, + "resource_type": "aws_instance", + "resource_name": "example-instance-570", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example570}}]", + "search_line": 5132, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a025554de8e6438d2be24b60a13bedc61aade05d8277772df280b53f2d9cd60e", + "line": 6086, + "resource_type": "aws_instance", + "resource_name": "example-instance-676", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example676}}]", + "search_line": 6086, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e0231fb24b0291c0da477e5febfee71a72c47d6082979309c7c751aa2010cbb7", + "line": 7157, + "resource_type": "aws_instance", + "resource_name": "example-instance-795", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example795}}]", + "search_line": 7157, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "362a153c3a757baec74fa189581b44c03f812b6ce84df2a75f48d60e7ca5dd12", + "line": 1397, + "resource_type": "aws_instance", + "resource_name": "example-instance-155", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example155}}]", + "search_line": 1397, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2d233ad82684c369d3104a25d7ebf9561a8f64219624670ad479ded17a134ae5", + "line": 2666, + "resource_type": "aws_instance", + "resource_name": "example-instance-296", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example296}}]", + "search_line": 2666, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ee20dc4059bcedab8a8cb0d4f0765807f88a37c4ce47c7edbb3bdb374dcb53d5", + "line": 1874, + "resource_type": "aws_instance", + "resource_name": "example-instance-208", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example208}}]", + "search_line": 1874, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fa97e75bdabe5de5fb1d1a5f2bf83ff1c9ae549cecbd1618111ace456bacdb56", + "line": 5006, + "resource_type": "aws_instance", + "resource_name": "example-instance-556", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example556}}]", + "search_line": 5006, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1b6d0ef4719c42d9decb90c24a8e635120b44aea236a1dfb6ce5b0dfb991bc13", + "line": 3440, + "resource_type": "aws_instance", + "resource_name": "example-instance-382", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example382}}]", + "search_line": 3440, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "460716d300b6a2db0022ddb311885a0f9de888e68eb0853dbaa4aa01334809b6", + "line": 3566, + "resource_type": "aws_instance", + "resource_name": "example-instance-396", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example396}}]", + "search_line": 3566, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f38632bdf8dab3730508c9d95437cb5da4f0af0a8a57052746b071ca3414f73f", + "line": 1028, + "resource_type": "aws_instance", + "resource_name": "example-instance-114", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example114}}]", + "search_line": 1028, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d475fb835cc8aafe53449b9950b0f482a7c1b09d35e96ea1e5b3045b51a79fff", + "line": 8219, + "resource_type": "aws_instance", + "resource_name": "example-instance-913", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example913}}]", + "search_line": 8219, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a2bd6b2b8098bce7577c33bbd0dbea512e7fb6e4c8326860ff2e3a72a6021e1d", + "line": 8813, + "resource_type": "aws_instance", + "resource_name": "example-instance-979", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example979}}]", + "search_line": 8813, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ab401cd0b9d5033c792b5afffd362e709ab8547f4b69066afb47feef8dda8357", + "line": 3512, + "resource_type": "aws_instance", + "resource_name": "example-instance-390", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example390}}]", + "search_line": 3512, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7026f1f1b0205c864fb49b1dbbf7e48188a2701e357c170f9dbc5bcebdb7a9b3", + "line": 3629, + "resource_type": "aws_instance", + "resource_name": "example-instance-403", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example403}}]", + "search_line": 3629, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7374b08b0e361d770489a43c61c3bcd3792727c571290a841da5f3eaa0bb07fd", + "line": 8147, + "resource_type": "aws_instance", + "resource_name": "example-instance-905", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example905}}]", + "search_line": 8147, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1a33dd7d3000ec8151b5a40acec135490b8078740d35cf066a067509f02d63cf", + "line": 1046, + "resource_type": "aws_instance", + "resource_name": "example-instance-116", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example116}}]", + "search_line": 1046, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1cbd134f7e933eb015a93b610924f601aaa5ee7ee68fec9ecc19a167e7f63328", + "line": 6932, + "resource_type": "aws_instance", + "resource_name": "example-instance-770", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example770}}]", + "search_line": 6932, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a06d8f7b48d7300450d21b992ee9d67963603237e28d45d74f2ca29020ab1a7e", + "line": 6725, + "resource_type": "aws_instance", + "resource_name": "example-instance-747", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example747}}]", + "search_line": 6725, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4cef3bb70ff01b4053295e22c7abbee4eabeb7569ec6aa23eff70dc352f58137", + "line": 6977, + "resource_type": "aws_instance", + "resource_name": "example-instance-775", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example775}}]", + "search_line": 6977, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3f62340de06e83f115e77ac62e80b83100e7f2ecb3d8d863767e2e75c81ed599", + "line": 5294, + "resource_type": "aws_instance", + "resource_name": "example-instance-588", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example588}}]", + "search_line": 5294, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d0db92c5d8af8de16340cb940d2487394596ec841e18a55a8fd03ad6d7a66ed9", + "line": 5312, + "resource_type": "aws_instance", + "resource_name": "example-instance-590", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example590}}]", + "search_line": 5312, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "792df3d2c34411c77f306c6f3f20ad6e995233987642762d7f123aa9a791a301", + "line": 8120, + "resource_type": "aws_instance", + "resource_name": "example-instance-902", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example902}}]", + "search_line": 8120, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b0f395b83fc4cbe58f26f3de12398e54dfee6fab1fa9913fba677e12612683f0", + "line": 5627, + "resource_type": "aws_instance", + "resource_name": "example-instance-625", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example625}}]", + "search_line": 5627, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "548ea04b3ca62099e3af2de87cc8ef4cb6748512217262ac77d946961f66203e", + "line": 7670, + "resource_type": "aws_instance", + "resource_name": "example-instance-852", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example852}}]", + "search_line": 7670, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4b1a3f0f1308b0c901def98d4ff52d3770a18883dff1cdef64dbaf3aaab400a0", + "line": 7841, + "resource_type": "aws_instance", + "resource_name": "example-instance-871", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example871}}]", + "search_line": 7841, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "08423c2d65564be7a0f4c53fbea2f1ea2515e3136bdfbf02ddcdb38e01ab62a1", + "line": 3026, + "resource_type": "aws_instance", + "resource_name": "example-instance-336", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example336}}]", + "search_line": 3026, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "34b2842171419f712dea097b51ca4e619273ecf69669e47c9acd02440b114e89", + "line": 4718, + "resource_type": "aws_instance", + "resource_name": "example-instance-524", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example524}}]", + "search_line": 4718, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fba46b99e1eb2e6903f269f5ee6a107fc2a9d49c877052a55b459be789cdaf13", + "line": 2873, + "resource_type": "aws_instance", + "resource_name": "example-instance-319", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example319}}]", + "search_line": 2873, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8fdfd6a0930c48dcba2ad0a5f9d2f91ce6f7b0ca8c6b2542e8913f1a30dda497", + "line": 3287, + "resource_type": "aws_instance", + "resource_name": "example-instance-365", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example365}}]", + "search_line": 3287, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cc9e059813edb6b13e9e63dc7fde19c51f42a64f41c903d1d44aef642752e805", + "line": 416, + "resource_type": "aws_instance", + "resource_name": "example-instance-46", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example46}}]", + "search_line": 416, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a2a18c4fd4dfb607f705aeb02f7c3d8c544e86c80aef90a9e83639f4e082191c", + "line": 4358, + "resource_type": "aws_instance", + "resource_name": "example-instance-484", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example484}}]", + "search_line": 4358, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a221b1ea34ed6821a077554696bbed31a54de1d0fbc985ea418df305c88f5e33", + "line": 2378, + "resource_type": "aws_instance", + "resource_name": "example-instance-264", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example264}}]", + "search_line": 2378, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1e29ca61ce04236ce4b028bfc61cc949f29a47a26d101220dc4b0ef2418af460", + "line": 8948, + "resource_type": "aws_instance", + "resource_name": "example-instance-994", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example994}}]", + "search_line": 8948, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "01a778f3380c54acc7585eb516bf1c9610c8599ff43f7f88d7a991213237d0dd", + "line": 8993, + "resource_type": "aws_instance", + "resource_name": "example-instance-999", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example999}}]", + "search_line": 8993, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d8672c6122bcd4415f5381ecae852886c97cdab460762258d791020b8a5c978f", + "line": 4709, + "resource_type": "aws_instance", + "resource_name": "example-instance-523", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example523}}]", + "search_line": 4709, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b89250498ccd3fe4d6d488f7f142d6357a0f2d2e6a4190cedc9838831cb31a11", + "line": 6401, + "resource_type": "aws_instance", + "resource_name": "example-instance-711", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example711}}]", + "search_line": 6401, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c7eb636e908255c4e1976752aec567401de84293e39c3bb82f24cc33cfd0d5fe", + "line": 5411, + "resource_type": "aws_instance", + "resource_name": "example-instance-601", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example601}}]", + "search_line": 5411, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a15fbd1fda377f1867cee1bcf3e46b79b769a1b4344a8b564750b204b95e0a63", + "line": 6797, + "resource_type": "aws_instance", + "resource_name": "example-instance-755", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example755}}]", + "search_line": 6797, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e70dcd50d009ffb362d366a5028648fc5572151872641639eb3fa5e3b7448dc2", + "line": 434, + "resource_type": "aws_instance", + "resource_name": "example-instance-48", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example48}}]", + "search_line": 434, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "07201bf9386edf5e51e9aef255b229d09945d2aa482963c563e83f0b6afc18a9", + "line": 3197, + "resource_type": "aws_instance", + "resource_name": "example-instance-355", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example355}}]", + "search_line": 3197, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3ef07174d4ff00cdddc4e861be0e6a9e38e0e03e75d418bbaa1e652c554ac1d8", + "line": 7724, + "resource_type": "aws_instance", + "resource_name": "example-instance-858", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example858}}]", + "search_line": 7724, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "955e11bfdd577293057fecafdf8ca6c789d68066446630c6329ff1425c238ea6", + "line": 7166, + "resource_type": "aws_instance", + "resource_name": "example-instance-796", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example796}}]", + "search_line": 7166, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2c2a5cd75966acfd4527206e42a82da4a938ea090c4ecbc1be23962c23a1ba50", + "line": 1226, + "resource_type": "aws_instance", + "resource_name": "example-instance-136", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example136}}]", + "search_line": 1226, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "94e711d0aeac05c4243be98552379448bc49a237290da3d1e67c5b4260235192", + "line": 1505, + "resource_type": "aws_instance", + "resource_name": "example-instance-167", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example167}}]", + "search_line": 1505, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a38301f2835a154d4a24fe7c7d0739ca3a0de5adbacec2159cac22141766af86", + "line": 3845, + "resource_type": "aws_instance", + "resource_name": "example-instance-427", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example427}}]", + "search_line": 3845, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b8211dfd8f32dc80ab156f2fc620802763bbeabc4916ddfbcc26ebc8553a61d9", + "line": 5987, + "resource_type": "aws_instance", + "resource_name": "example-instance-665", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example665}}]", + "search_line": 5987, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a9d8408d9916902d1f354316fe07c967108992d7b46a7697cf55608df8d8f227", + "line": 8075, + "resource_type": "aws_instance", + "resource_name": "example-instance-897", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example897}}]", + "search_line": 8075, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "22c05e68c29bcb35e95db8e3733c74d23e859b9e4ff867c194f785917118093e", + "line": 1370, + "resource_type": "aws_instance", + "resource_name": "example-instance-152", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example152}}]", + "search_line": 1370, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9c8c3fba08fbf6ab615e226aadaa7354451fe36b534fb23c0636d6c31dcae7b1", + "line": 4826, + "resource_type": "aws_instance", + "resource_name": "example-instance-536", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example536}}]", + "search_line": 4826, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a437f340470092834912ba36fe06ac2673b5a9f4c7517f49116fc44a4ab782cf", + "line": 5663, + "resource_type": "aws_instance", + "resource_name": "example-instance-629", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example629}}]", + "search_line": 5663, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1656583dcb9d100422e672da2993aa92505646de9b1e44f32c0ab1a024752a42", + "line": 3989, + "resource_type": "aws_instance", + "resource_name": "example-instance-443", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example443}}]", + "search_line": 3989, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "510eaba5f7ee96d49f2c3880f35cf5492a1d74433906047362ec4ef5284d2ca3", + "line": 1811, + "resource_type": "aws_instance", + "resource_name": "example-instance-201", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example201}}]", + "search_line": 1811, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "97d4704b05e8d14468195dda0bf11966ec645e6e35babf3124192fed6c3f98a3", + "line": 866, + "resource_type": "aws_instance", + "resource_name": "example-instance-96", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example96}}]", + "search_line": 866, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b4a5f1059db099db775d42c3aa9642c927cf6e36d370e9058d8c7207a31fe509", + "line": 3017, + "resource_type": "aws_instance", + "resource_name": "example-instance-335", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example335}}]", + "search_line": 3017, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e813aa5d8b15bbf0e0ccfc872eaf1cb5f2217c8bae882652907cbbfb484506ea", + "line": 1613, + "resource_type": "aws_instance", + "resource_name": "example-instance-179", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example179}}]", + "search_line": 1613, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2b359fc786ad594b2d8189f3e12eed1fb57b77d2c912b211696f96ea77a8fd25", + "line": 209, + "resource_type": "aws_instance", + "resource_name": "example-instance-23", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example23}}]", + "search_line": 209, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4e0e7cf6abe600b81ed97b8bbdadc621502cd0c8738bb6c96475a3d42b1b7abb", + "line": 3710, + "resource_type": "aws_instance", + "resource_name": "example-instance-412", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example412}}]", + "search_line": 3710, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f3c1befa371a4454bad3d7ac38245559a557cc692a7ceb6e3aee7627729c4df8", + "line": 4511, + "resource_type": "aws_instance", + "resource_name": "example-instance-501", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example501}}]", + "search_line": 4511, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9bed468b76fa16ce6bfda7941e756a4d33a84b4f81876b722439deaf62b3e41a", + "line": 6329, + "resource_type": "aws_instance", + "resource_name": "example-instance-703", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example703}}]", + "search_line": 6329, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "13c9f256520f865474d79c41fd45ed505036461a9548f445f7c164c6ca1c5a6e", + "line": 4448, + "resource_type": "aws_instance", + "resource_name": "example-instance-494", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example494}}]", + "search_line": 4448, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "05e54aca5676921399a5c2f82a30b672b835153cf278bf752a145604b01a1026", + "line": 5825, + "resource_type": "aws_instance", + "resource_name": "example-instance-647", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example647}}]", + "search_line": 5825, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b1209f985f6093f3a985b01241237da6d2e9f915ec51f214d285518340c800e7", + "line": 5528, + "resource_type": "aws_instance", + "resource_name": "example-instance-614", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example614}}]", + "search_line": 5528, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5ebd9c3c3cc887c0034be989ee005245391e90e6b5757891a6c5904b51101e96", + "line": 6482, + "resource_type": "aws_instance", + "resource_name": "example-instance-720", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example720}}]", + "search_line": 6482, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a5b6187d32b87b86708d6b24caf49995e9c6d006e8695f1fa390293151558f9e", + "line": 191, + "resource_type": "aws_instance", + "resource_name": "example-instance-21", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example21}}]", + "search_line": 191, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "828802bd66b2c680ec1f3d62f3cf4901300b0642e3d1f043d316933aac17522d", + "line": 5717, + "resource_type": "aws_instance", + "resource_name": "example-instance-635", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example635}}]", + "search_line": 5717, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e3fc416781ce09365120edd7c211d3067dd1382bb9720e0c30de1554354e04e3", + "line": 8138, + "resource_type": "aws_instance", + "resource_name": "example-instance-904", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example904}}]", + "search_line": 8138, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "055f4f5375496f3890bb0fd7845ef481ab9354f66504c362fae29943b5cfbd2b", + "line": 3908, + "resource_type": "aws_instance", + "resource_name": "example-instance-434", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example434}}]", + "search_line": 3908, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c1cf731cfd81339ed7381e17a36fa1f20a1b98a107e91fcf52c23c81d5c86057", + "line": 6023, + "resource_type": "aws_instance", + "resource_name": "example-instance-669", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example669}}]", + "search_line": 6023, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "422b47ad9003d6a938966d87f55f96b1da89f1279def316b2bd68ecfe9816256", + "line": 479, + "resource_type": "aws_instance", + "resource_name": "example-instance-53", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example53}}]", + "search_line": 479, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "637f751e59f100d14c81f8badce894a71cf3e8066dd090a6453d2d4003b8c9ff", + "line": 6743, + "resource_type": "aws_instance", + "resource_name": "example-instance-749", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example749}}]", + "search_line": 6743, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e29e57c60ca3a8436440231a58e9ceae611f7ecbece1416295d3ebe4e8a9dbff", + "line": 4160, + "resource_type": "aws_instance", + "resource_name": "example-instance-462", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example462}}]", + "search_line": 4160, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9a8579c020f9f31f53e65795958030faddf5eaa1aa250442d0eb52ff0749e0de", + "line": 5078, + "resource_type": "aws_instance", + "resource_name": "example-instance-564", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example564}}]", + "search_line": 5078, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f63e4bee352b60d6ce844530c11712df780c441889087adcc1f0292cca2efe7f", + "line": 5915, + "resource_type": "aws_instance", + "resource_name": "example-instance-657", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example657}}]", + "search_line": 5915, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c913071ffe64eaf01e39b653fcffeaa113c50f2f070d74dac470c491a8895e14", + "line": 668, + "resource_type": "aws_instance", + "resource_name": "example-instance-74", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example74}}]", + "search_line": 668, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4f9953184c8239b086b8dc5f208d443edd723680a01c2f892ae4c754bb0568f6", + "line": 5816, + "resource_type": "aws_instance", + "resource_name": "example-instance-646", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example646}}]", + "search_line": 5816, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c269d098497c60daad87345e0fce4dfb7e72ff428439d80deb254cfa77f578b3", + "line": 6203, + "resource_type": "aws_instance", + "resource_name": "example-instance-689", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example689}}]", + "search_line": 6203, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9a4ead10df78e28fb2e0cdb60e250f057147ea9fbf78797c1199b032767fcf45", + "line": 6734, + "resource_type": "aws_instance", + "resource_name": "example-instance-748", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example748}}]", + "search_line": 6734, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "35de6d03ab8c8f278512ebd21d181b5bcdf5b425560db212aa0be7bd6460a546", + "line": 3737, + "resource_type": "aws_instance", + "resource_name": "example-instance-415", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example415}}]", + "search_line": 3737, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d7634e3120726b2446d0d4e24e87a3c46eef31c901414e7c7b4acc5e7ee4aeb5", + "line": 1658, + "resource_type": "aws_instance", + "resource_name": "example-instance-184", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example184}}]", + "search_line": 1658, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3e73292c3386510897a155dfbb29ff903b0bf97451bc311f85cf2fa8cedff859", + "line": 3350, + "resource_type": "aws_instance", + "resource_name": "example-instance-372", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example372}}]", + "search_line": 3350, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1652a2a5ac1d030da79fe156a79fe3449c0c5eddf0bc6bce43f8956841a33f61", + "line": 1631, + "resource_type": "aws_instance", + "resource_name": "example-instance-181", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example181}}]", + "search_line": 1631, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4053c93d8e718e71ea8b9ba6fb702249131aaf62e81481af932fcac8efdd99bf", + "line": 7004, + "resource_type": "aws_instance", + "resource_name": "example-instance-778", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example778}}]", + "search_line": 7004, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "92fa625c6e2667658be5ca8a9f862178935efb8a98246e29d0ccf9d8834c6a44", + "line": 5357, + "resource_type": "aws_instance", + "resource_name": "example-instance-595", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example595}}]", + "search_line": 5357, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fdfeb8d25399a080eefc765f8c70af74f16d79e3eb152af69617463ceaefafa0", + "line": 7184, + "resource_type": "aws_instance", + "resource_name": "example-instance-798", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example798}}]", + "search_line": 7184, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3180d69adaf06660cf7bcf0a88e10635cee6fe0fb11a07de08d861b3d5348349", + "line": 1145, + "resource_type": "aws_instance", + "resource_name": "example-instance-127", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example127}}]", + "search_line": 1145, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ae6ce030d59d95892f3d115e30024e2e5175417bc52b8215dd82c5ea5020e480", + "line": 3260, + "resource_type": "aws_instance", + "resource_name": "example-instance-362", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example362}}]", + "search_line": 3260, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fb2f15ff2760f69452e8dad16fd0f28f931561809b9ae78d62f8a82b265151b4", + "line": 6185, + "resource_type": "aws_instance", + "resource_name": "example-instance-687", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example687}}]", + "search_line": 6185, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "199625b56468a2b738459bdbe713703f5dfaf63698d7430cd033ed547c115054", + "line": 8084, + "resource_type": "aws_instance", + "resource_name": "example-instance-898", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example898}}]", + "search_line": 8084, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e6a47dec3b97caeec7ccb2fa8a2e501608e57799f386f8656c1196129975777a", + "line": 3395, + "resource_type": "aws_instance", + "resource_name": "example-instance-377", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example377}}]", + "search_line": 3395, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "33e3c079cfa963c5ea8779b243d1092acb1cbf580314f542123661bc61af20e7", + "line": 335, + "resource_type": "aws_instance", + "resource_name": "example-instance-37", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example37}}]", + "search_line": 335, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "58972f4f7406f9915593cac34a741d4e0ee48d20c95fd07912143efa96f2ce2e", + "line": 5195, + "resource_type": "aws_instance", + "resource_name": "example-instance-577", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example577}}]", + "search_line": 5195, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "38b8f2fdc240e0270f395f2d65efac1915256f1a141efc1e1cdc4ab1d1e34fb1", + "line": 1235, + "resource_type": "aws_instance", + "resource_name": "example-instance-137", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example137}}]", + "search_line": 1235, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "51c10dfbfef628dbcf8cab941fe57b11ec70a5860fe716d51b908f145c38ba78", + "line": 4574, + "resource_type": "aws_instance", + "resource_name": "example-instance-508", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example508}}]", + "search_line": 4574, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4468c7592207f8e4eabc85d636db9cd932f2438c009f1355928f0f12a42d75c1", + "line": 6077, + "resource_type": "aws_instance", + "resource_name": "example-instance-675", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example675}}]", + "search_line": 6077, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "871405d576213d0f5a5f9d9dddc837af95f3d2edb1b66162abe59b4eb7533b5f", + "line": 6896, + "resource_type": "aws_instance", + "resource_name": "example-instance-766", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example766}}]", + "search_line": 6896, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "229dbb498d7877697a3d2fe73948138e716ddb98b68c8cca912c14257103e895", + "line": 8156, + "resource_type": "aws_instance", + "resource_name": "example-instance-906", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example906}}]", + "search_line": 8156, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f0513829c3792acf01f87e386b4cc08dd90a4ab3ae0746d9d528bcdd6d607eff", + "line": 4655, + "resource_type": "aws_instance", + "resource_name": "example-instance-517", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example517}}]", + "search_line": 4655, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3325d86f49bc8bcf48dc2e0671b84a850e65f602a0cc88ef9a0c6a0abbb5d380", + "line": 6824, + "resource_type": "aws_instance", + "resource_name": "example-instance-758", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example758}}]", + "search_line": 6824, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d36a8c6a06011baa87d214c62d26cae8dbf79f33bb1e244fd78d31e889722139", + "line": 8453, + "resource_type": "aws_instance", + "resource_name": "example-instance-939", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example939}}]", + "search_line": 8453, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "49e55cd67ba631c48fc333a3373c552c0d7403efbbfcc696626bc9f1ae495907", + "line": 1730, + "resource_type": "aws_instance", + "resource_name": "example-instance-192", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example192}}]", + "search_line": 1730, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "91a3cb4a0abaaad53f024714cfc0205fea96888f3e68c5c22a2d78edd555d43b", + "line": 7562, + "resource_type": "aws_instance", + "resource_name": "example-instance-840", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example840}}]", + "search_line": 7562, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5f57d1e0fd2a2085d1f1c84045bbf668c6eb83a6586c9dc4d98f9250dcb5f42e", + "line": 8939, + "resource_type": "aws_instance", + "resource_name": "example-instance-993", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example993}}]", + "search_line": 8939, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6c177e22ffeed7ff44a93b994dc922935df82db276772790cae572b8114918e3", + "line": 650, + "resource_type": "aws_instance", + "resource_name": "example-instance-72", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example72}}]", + "search_line": 650, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "46b004ff47eb6bed74ec2f1369c50a7eada5ea53cf52f8f1f0f542c4cab6690c", + "line": 7850, + "resource_type": "aws_instance", + "resource_name": "example-instance-872", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example872}}]", + "search_line": 7850, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bec454331d739896a69e68f76398c691bcee71324128dcf5dbb1f3171d779350", + "line": 2567, + "resource_type": "aws_instance", + "resource_name": "example-instance-285", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example285}}]", + "search_line": 2567, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2abb36e4c72ede4c411c9586a06177c45c014ae8d8b6c6a3e7ec373759d6f6fe", + "line": 1199, + "resource_type": "aws_instance", + "resource_name": "example-instance-133", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example133}}]", + "search_line": 1199, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cada54354879db2eaca6b163244c9e31b5614ff9717809c5f9748e035598297e", + "line": 5636, + "resource_type": "aws_instance", + "resource_name": "example-instance-626", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example626}}]", + "search_line": 5636, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "eb028c4fdbf2b8355299c4cb5ecba52774dc47e8ce620e31f26232254be15ebf", + "line": 2963, + "resource_type": "aws_instance", + "resource_name": "example-instance-329", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example329}}]", + "search_line": 2963, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6f21034feb388851a386802c6caa5082f417fa84aaccc49653199f63812ba1be", + "line": 8930, + "resource_type": "aws_instance", + "resource_name": "example-instance-992", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example992}}]", + "search_line": 8930, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4c71b2b7433ab438ce2461d93251636f9d6c0aec3967fd3866168e2f8d9f3dc2", + "line": 272, + "resource_type": "aws_instance", + "resource_name": "example-instance-30", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example30}}]", + "search_line": 272, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "607673fe9277afc1437abaf2c92cea23f98c95050b23ae9bf0ffaec3b9e7958f", + "line": 5510, + "resource_type": "aws_instance", + "resource_name": "example-instance-612", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example612}}]", + "search_line": 5510, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4eb0f5558fbcba7dcd139803ab74ad9782d2188111a270f31f3a5a0511a679b9", + "line": 8543, + "resource_type": "aws_instance", + "resource_name": "example-instance-949", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example949}}]", + "search_line": 8543, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e1251d59fb8aa6c1ad35834f99ac76ee367a918d1c0c5f8222c1e788d854dc2b", + "line": 641, + "resource_type": "aws_instance", + "resource_name": "example-instance-71", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example71}}]", + "search_line": 641, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cb46eecd3c13072f95809dceedc4ed0f01b5bc6c780f02e8102d75538d19f278", + "line": 5807, + "resource_type": "aws_instance", + "resource_name": "example-instance-645", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example645}}]", + "search_line": 5807, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "96c3472fd268b6041a2d6a7cc82da2fdc829618e42e5577c848427a99e5af63a", + "line": 8057, + "resource_type": "aws_instance", + "resource_name": "example-instance-895", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example895}}]", + "search_line": 8057, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7097b9be949aa607798a347a9cbbed9a681a5d22ad464ba546afe02ff1ecdaa8", + "line": 5096, + "resource_type": "aws_instance", + "resource_name": "example-instance-566", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example566}}]", + "search_line": 5096, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6d2fcc6dad602a6700d66183854c75ad023fd885e71824ccd6329b09bf03a7f7", + "line": 2774, + "resource_type": "aws_instance", + "resource_name": "example-instance-308", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example308}}]", + "search_line": 2774, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ffe9c48e60db503643a62cb7b34d108340792dd38449d94482f83c0dabf9dcd6", + "line": 749, + "resource_type": "aws_instance", + "resource_name": "example-instance-83", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example83}}]", + "search_line": 749, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b9e12a6f5eddc2f0d7a007366fb6da785de542167ee79c2ff235a6122f285ede", + "line": 3296, + "resource_type": "aws_instance", + "resource_name": "example-instance-366", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example366}}]", + "search_line": 3296, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fcfdf56e6bbcc7c201018cdc6f288f092fa3213ee9882dcdd822efdce0cece33", + "line": 5033, + "resource_type": "aws_instance", + "resource_name": "example-instance-559", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example559}}]", + "search_line": 5033, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6cf256eef4617e05280981d21e8030dbe0da135fb55234d6d87b331d8ff2f6a3", + "line": 1640, + "resource_type": "aws_instance", + "resource_name": "example-instance-182", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example182}}]", + "search_line": 1640, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "185f896755248aab3541f496f2eb5a959b47195106eabad4aa937f7ccb749b8c", + "line": 5672, + "resource_type": "aws_instance", + "resource_name": "example-instance-630", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example630}}]", + "search_line": 5672, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e722d9954cb5aee2de86082f38f0e28423fdba4df8e41a7c5ca634226a730c3e", + "line": 6950, + "resource_type": "aws_instance", + "resource_name": "example-instance-772", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example772}}]", + "search_line": 6950, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "80efc0248baa12f66649bf2e4b87bd17abaab2d5579e76684047d0c2a050b190", + "line": 6986, + "resource_type": "aws_instance", + "resource_name": "example-instance-776", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example776}}]", + "search_line": 6986, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b632421ecba449bc350fcc61efd8158ad6b5a27ba87977d4b175cd08db40af33", + "line": 4376, + "resource_type": "aws_instance", + "resource_name": "example-instance-486", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example486}}]", + "search_line": 4376, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "47cedfa760ae5d236460b77e8165a48266bb1e69913c9b4b9c041ba56716dff5", + "line": 8570, + "resource_type": "aws_instance", + "resource_name": "example-instance-952", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example952}}]", + "search_line": 8570, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a007cb334a8b6a451e51ca171f0c051043dc3de97ed144c378ace2acfe2d80dc", + "line": 8030, + "resource_type": "aws_instance", + "resource_name": "example-instance-892", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example892}}]", + "search_line": 8030, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "75fbe772c6fe6cdecec48e2d8770c7f7e0ebd34e2e86d66a0791aaedc4e16609", + "line": 83, + "resource_type": "aws_instance", + "resource_name": "example-instance-9", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example9}}]", + "search_line": 83, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2730d65d6139697840066a5b7941cc54610af90f754b6b3982004167f6c9af9c", + "line": 6095, + "resource_type": "aws_instance", + "resource_name": "example-instance-677", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example677}}]", + "search_line": 6095, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ad03dbe2308f0285b959ed2b1063525dbb39b5bbfc9d20df0855b296b36df217", + "line": 6122, + "resource_type": "aws_instance", + "resource_name": "example-instance-680", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example680}}]", + "search_line": 6122, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b0a19a72566147ff62c5df4454f6dcd8c5b3793757a3a85b2d20d6b4d8626130", + "line": 5870, + "resource_type": "aws_instance", + "resource_name": "example-instance-652", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example652}}]", + "search_line": 5870, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "97631cf23bff31b759441a44a02d83e22e458b8e0ff68023b33e64f2d5550a7b", + "line": 2108, + "resource_type": "aws_instance", + "resource_name": "example-instance-234", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example234}}]", + "search_line": 2108, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cc68ed8ac0cbbaf2e1c3bfc74dddabb37c76a3f00b87b75237ab41912b21b82f", + "line": 6149, + "resource_type": "aws_instance", + "resource_name": "example-instance-683", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example683}}]", + "search_line": 6149, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0acf74b91f2e7176e155f7366e2a10866c0e6d4ceb3d3418301fdf88cfb68a74", + "line": 6014, + "resource_type": "aws_instance", + "resource_name": "example-instance-668", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example668}}]", + "search_line": 6014, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "aa4037567a4bce5bc3d3dfb77b75ca5db29ebf27ded69ec479696caf18837d74", + "line": 6491, + "resource_type": "aws_instance", + "resource_name": "example-instance-721", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example721}}]", + "search_line": 6491, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b5a401bbc6f913d61cea458d314836432616118fe182da6122de981a360842d2", + "line": 7679, + "resource_type": "aws_instance", + "resource_name": "example-instance-853", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example853}}]", + "search_line": 7679, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a0df414beec01c2e173a05adbcefc27d42932431c2cd35787034a5dec2bfd004", + "line": 3431, + "resource_type": "aws_instance", + "resource_name": "example-instance-381", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example381}}]", + "search_line": 3431, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8476fd26e6ad8e0b17da7056d96e1888a55c8393f2ed428c779d91aba03e396c", + "line": 4286, + "resource_type": "aws_instance", + "resource_name": "example-instance-476", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example476}}]", + "search_line": 4286, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "397441cf656cc6455e8bbe8589fa2978843c44d09ae6e9c3752b480b85b6d4cc", + "line": 3449, + "resource_type": "aws_instance", + "resource_name": "example-instance-383", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example383}}]", + "search_line": 3449, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "639b1ba9c1a1b24ab4f3815461ed434e7485fc43b48d5a7cce454bc63e205b71", + "line": 2387, + "resource_type": "aws_instance", + "resource_name": "example-instance-265", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example265}}]", + "search_line": 2387, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "89e7f707e05b11d0847dd5e46e6b1b2d89dd8756445f5f9721cf506f8cf1e322", + "line": 7787, + "resource_type": "aws_instance", + "resource_name": "example-instance-865", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example865}}]", + "search_line": 7787, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "60afe0a7ee9c0b1333b7ffb0f19c7414dc405439e25320f100b7bef2ece9dde4", + "line": 7346, + "resource_type": "aws_instance", + "resource_name": "example-instance-816", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example816}}]", + "search_line": 7346, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1f47b90de968ebae7b1248017a2727aac2d40398857ce452ac79a88200ec629c", + "line": 1208, + "resource_type": "aws_instance", + "resource_name": "example-instance-134", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example134}}]", + "search_line": 1208, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5fb5cddf4c0565d3b0cbd7e558715290ab3831f4068c83b00c00f33533891132", + "line": 1442, + "resource_type": "aws_instance", + "resource_name": "example-instance-160", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example160}}]", + "search_line": 1442, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fcad235eef09b98bfe868e9128184f0719c457406817ea50dbe5c6ea2f2849d5", + "line": 155, + "resource_type": "aws_instance", + "resource_name": "example-instance-17", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example17}}]", + "search_line": 155, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "60d2acc4b3af5b589764a88db5aa6d3f50997503112e2abe6c6aff4c6bb28b6e", + "line": 1478, + "resource_type": "aws_instance", + "resource_name": "example-instance-164", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example164}}]", + "search_line": 1478, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "51d849f85d35941cf96b5b2d3c871f3bd875c92f3a849feb5da9673291c2a4f9", + "line": 3251, + "resource_type": "aws_instance", + "resource_name": "example-instance-361", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example361}}]", + "search_line": 3251, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d52ddea25871417f26045def2a558b38ba58baa09ac43461ff64d4d00e5c9412", + "line": 7103, + "resource_type": "aws_instance", + "resource_name": "example-instance-789", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example789}}]", + "search_line": 7103, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "416d123ea06dc80e9befc12956227690a6f0fde41f71d22b78550f12cb500a66", + "line": 7697, + "resource_type": "aws_instance", + "resource_name": "example-instance-855", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example855}}]", + "search_line": 7697, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f7594d0b072949f75887986e7e19fe3ebea6a1c11f4422672b60325419a59a64", + "line": 8327, + "resource_type": "aws_instance", + "resource_name": "example-instance-925", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example925}}]", + "search_line": 8327, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5274536319dba3c4854413e338988e5b30f74dc810e296a7231146d61ebdea7f", + "line": 3719, + "resource_type": "aws_instance", + "resource_name": "example-instance-413", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example413}}]", + "search_line": 3719, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a4acd237fa16632a88891bb8bff2f976874452e1cb24e3451a4b2111e9c976b6", + "line": 7121, + "resource_type": "aws_instance", + "resource_name": "example-instance-791", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example791}}]", + "search_line": 7121, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b363a4fe9ea3114ff2e9605bf45eb45a8ce6b80dfe6ba4dc64c6b98aa756fff8", + "line": 803, + "resource_type": "aws_instance", + "resource_name": "example-instance-89", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example89}}]", + "search_line": 803, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ebb268704201d0779a431829a05ed268f608447715aa81cf42e9f1dd7c7264ab", + "line": 1109, + "resource_type": "aws_instance", + "resource_name": "example-instance-123", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example123}}]", + "search_line": 1109, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9737b93bfe3604ed8e8d887819c74d609de0e864a3b3760abc4ca5ea40a7205f", + "line": 8246, + "resource_type": "aws_instance", + "resource_name": "example-instance-916", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example916}}]", + "search_line": 8246, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d59056c447ba55d81bf3ad49e25262082014076668c73392f213f0acfc638bc3", + "line": 92, + "resource_type": "aws_instance", + "resource_name": "example-instance-10", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example10}}]", + "search_line": 92, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "82a29f45927e70e0bcf324489a32ea389cd6e1e0d52d85c88c5e58be6fa98c38", + "line": 5564, + "resource_type": "aws_instance", + "resource_name": "example-instance-618", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example618}}]", + "search_line": 5564, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a015fcf33f452bf018ac30d87f11aba500fe499173b7ea1a50617cb0384f1663", + "line": 6959, + "resource_type": "aws_instance", + "resource_name": "example-instance-773", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example773}}]", + "search_line": 6959, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "78f4a32e94396b67dffdcf257179c03199fb9caa53aaa7c408c02d801432748c", + "line": 2846, + "resource_type": "aws_instance", + "resource_name": "example-instance-316", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example316}}]", + "search_line": 2846, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7156f0c88d4facc33532c2d113805f18a2f2ae568a570f3ce715fe64bcec8bcc", + "line": 7454, + "resource_type": "aws_instance", + "resource_name": "example-instance-828", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example828}}]", + "search_line": 7454, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "657dfda40f027715093876c1f599b7be515d280d5eef2bdadf56d97c58700af8", + "line": 5366, + "resource_type": "aws_instance", + "resource_name": "example-instance-596", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example596}}]", + "search_line": 5366, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c3c59ade0fcf0b11c17236c3336459d77d760a58caf700e6c121fd5d72d289f5", + "line": 6455, + "resource_type": "aws_instance", + "resource_name": "example-instance-717", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example717}}]", + "search_line": 6455, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3de73db89156014854c34861e8562f60bc5d31e441564cd5361ddf29d82a4865", + "line": 5555, + "resource_type": "aws_instance", + "resource_name": "example-instance-617", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example617}}]", + "search_line": 5555, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bcbfcb1624dd4996492db4c32cb1a3abc658f74dbea2cf75b6465df7f0e7485e", + "line": 4241, + "resource_type": "aws_instance", + "resource_name": "example-instance-471", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example471}}]", + "search_line": 4241, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bf8ba160da52813748ca7cc27ffe69c772c9712f0536729e20b14af6b92ce44c", + "line": 7247, + "resource_type": "aws_instance", + "resource_name": "example-instance-805", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example805}}]", + "search_line": 7247, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d9662846d894a05f69d81a8e87bbf48caf823390efa06d648494a51f6d16ead8", + "line": 4979, + "resource_type": "aws_instance", + "resource_name": "example-instance-553", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example553}}]", + "search_line": 4979, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8fd2fea6ee7e2447e9d7a00b892923ed6a92735db6a4ba65ae588cd9a99ce470", + "line": 7220, + "resource_type": "aws_instance", + "resource_name": "example-instance-802", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example802}}]", + "search_line": 7220, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c581dfb10ab8eabf80c61e1df2e177c8cb752aa5238ff63b4dc5956288541882", + "line": 389, + "resource_type": "aws_instance", + "resource_name": "example-instance-43", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example43}}]", + "search_line": 389, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "49649dacbc271745853a03616a3a85303bae2b13cedcdb4dc6954f080cce0b07", + "line": 6392, + "resource_type": "aws_instance", + "resource_name": "example-instance-710", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example710}}]", + "search_line": 6392, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9b8cc690a40600a424859ecb1b74720b795577cde661c6218951dedc5d06951e", + "line": 7643, + "resource_type": "aws_instance", + "resource_name": "example-instance-849", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example849}}]", + "search_line": 7643, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "324513047007da9be1adecaec6c86b2997920925391eb26b19b6553666cd1bf3", + "line": 2198, + "resource_type": "aws_instance", + "resource_name": "example-instance-244", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example244}}]", + "search_line": 2198, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3d5344f9b7f4083e907bec5e72c567bf5d1d5ced6f45382544fde1ec4f237674", + "line": 4025, + "resource_type": "aws_instance", + "resource_name": "example-instance-447", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example447}}]", + "search_line": 4025, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ffb903f1aa7574fa8bfcb818a2f17934bca121be86ee93357e033b5d2c56d20a", + "line": 677, + "resource_type": "aws_instance", + "resource_name": "example-instance-75", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example75}}]", + "search_line": 677, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3f4acb7dc9d26778a4fd6ace1ee0497b70839ad1c0c0f68476767c30b605946b", + "line": 8606, + "resource_type": "aws_instance", + "resource_name": "example-instance-956", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example956}}]", + "search_line": 8606, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f6fbcfd36e90d3a3e9809628bc4791df3dc311179ad5c7cebd8a5295f4bf63c1", + "line": 3773, + "resource_type": "aws_instance", + "resource_name": "example-instance-419", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example419}}]", + "search_line": 3773, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "622b9fc493d7015ba58db15475b975288a09037ee9f893a40ab0fdcc09f21f74", + "line": 704, + "resource_type": "aws_instance", + "resource_name": "example-instance-78", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example78}}]", + "search_line": 704, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8b6471e8ffc3e3a696858cff0dd1275cf6d237fb482ba19858ba2aeecd193056", + "line": 8255, + "resource_type": "aws_instance", + "resource_name": "example-instance-917", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example917}}]", + "search_line": 8255, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9934c8afa425da57f4cd0d16b73d2cdb1d1438788ab867778f90b1bde9687a6e", + "line": 3485, + "resource_type": "aws_instance", + "resource_name": "example-instance-387", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example387}}]", + "search_line": 3485, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f58c88a3c84595c7865839e7b88b2155d5db781eeb12a6d719931082e30ed0a6", + "line": 3818, + "resource_type": "aws_instance", + "resource_name": "example-instance-424", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example424}}]", + "search_line": 3818, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "21505c38ebf5a5dc3e559f1a9faa37520711e9bb143b442167319142f1de7740", + "line": 5267, + "resource_type": "aws_instance", + "resource_name": "example-instance-585", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example585}}]", + "search_line": 5267, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "64f9cb8a341c526e08fc56f745db6d4e3ede76d37ee9d26166aa9ac951324f9e", + "line": 7013, + "resource_type": "aws_instance", + "resource_name": "example-instance-779", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example779}}]", + "search_line": 7013, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "af334bf71cdadaaa708eba805a006d14b5fb72925246b53ac7d98ae7e8b78d12", + "line": 7895, + "resource_type": "aws_instance", + "resource_name": "example-instance-877", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example877}}]", + "search_line": 7895, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d7448691cc1810b81da9b4ce52da704685294bd5c4ffebbaa889e3012bcc1f03", + "line": 6347, + "resource_type": "aws_instance", + "resource_name": "example-instance-705", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example705}}]", + "search_line": 6347, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "103cabd4538e1886618d99a926702d250729e6c79469a78c9046e4e7587b981d", + "line": 6635, + "resource_type": "aws_instance", + "resource_name": "example-instance-737", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example737}}]", + "search_line": 6635, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1d037120990ef424d039f667dcdd82616d612443d3c8b85b255c9bd5dc09bed8", + "line": 2423, + "resource_type": "aws_instance", + "resource_name": "example-instance-269", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example269}}]", + "search_line": 2423, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2502293ca8fa9bc5cab776c61068b0de527f8c5ed6c1abb1662f5ffdb3c97af7", + "line": 344, + "resource_type": "aws_instance", + "resource_name": "example-instance-38", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example38}}]", + "search_line": 344, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b6bfbbf61bcbd3059b5a9790e1e04d2596e7276ff2d178c4dd5490da92cdfadd", + "line": 2126, + "resource_type": "aws_instance", + "resource_name": "example-instance-236", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example236}}]", + "search_line": 2126, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dd1031ca2260fd4520f237501adf92890594628aacccd7610ace2cfdba341c4a", + "line": 8237, + "resource_type": "aws_instance", + "resource_name": "example-instance-915", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example915}}]", + "search_line": 8237, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3881db559395a2c05fcdfd6b7362d95047eaa35daf5176c395f6bf5cc3a0785f", + "line": 4457, + "resource_type": "aws_instance", + "resource_name": "example-instance-495", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example495}}]", + "search_line": 4457, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fdf07852c45cb7e12044ffc37cf7472541cf1ef37a7fd19fc62569c56ad7e22b", + "line": 1424, + "resource_type": "aws_instance", + "resource_name": "example-instance-158", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example158}}]", + "search_line": 1424, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8a8810aa6c4cedea0cb6b94e62bb2c490324bba4842b9964c3bc5155f0979d87", + "line": 6509, + "resource_type": "aws_instance", + "resource_name": "example-instance-723", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example723}}]", + "search_line": 6509, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d397bc296a32b602d48401dcda4483382ab58b3c4d894d3261b4fc87dfcc85d7", + "line": 8291, + "resource_type": "aws_instance", + "resource_name": "example-instance-921", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example921}}]", + "search_line": 8291, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ea951a7497d46ff8dfc5e773550278ef7d4e621a98f6dc98c5f0369f183fada4", + "line": 3926, + "resource_type": "aws_instance", + "resource_name": "example-instance-436", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example436}}]", + "search_line": 3926, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5b1cf1b392811211822dce6a45665a90f5fade189f4a4dc7705bde5426f0b6af", + "line": 3953, + "resource_type": "aws_instance", + "resource_name": "example-instance-439", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example439}}]", + "search_line": 3953, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "26edcb632b9b55e9f99f3a824f6869d71e0b43b590588dbe8084b1192623c457", + "line": 623, + "resource_type": "aws_instance", + "resource_name": "example-instance-69", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example69}}]", + "search_line": 623, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "96f8cffb2ec4ccc1c572191c11d27cfab54a4d23db5e85ee9392c80af026f79f", + "line": 8174, + "resource_type": "aws_instance", + "resource_name": "example-instance-908", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example908}}]", + "search_line": 8174, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e9f0cc539805c58f097a4465bda8d4a97686595951c9b371bcd3244f3464c152", + "line": 8480, + "resource_type": "aws_instance", + "resource_name": "example-instance-942", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example942}}]", + "search_line": 8480, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3da55b2e611abede23235c4fd57ebbc2060eea3f6dff682263d3edd9f48001e5", + "line": 326, + "resource_type": "aws_instance", + "resource_name": "example-instance-36", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example36}}]", + "search_line": 326, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "876adee8ed1d505d2089cb3d77c73cfb92b8000c2c98efafdf9c8bb105c19779", + "line": 5924, + "resource_type": "aws_instance", + "resource_name": "example-instance-658", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example658}}]", + "search_line": 5924, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f90e8853776537ccf28d1776a6276e4c2dc707eb095dabf25edc5182ecb48095", + "line": 1838, + "resource_type": "aws_instance", + "resource_name": "example-instance-204", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example204}}]", + "search_line": 1838, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e31ec30a9003c7698e109fb1f6ab58da510ede0545ec30b892faf9b6193180ad", + "line": 578, + "resource_type": "aws_instance", + "resource_name": "example-instance-64", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example64}}]", + "search_line": 578, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8cf727c8a5a5afe9e238831ea9d64d7dc43e8a2d138bcc3d017043b08afe6d94", + "line": 776, + "resource_type": "aws_instance", + "resource_name": "example-instance-86", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example86}}]", + "search_line": 776, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "282a54595a7c2d61678bbe175601f95fb1fee36f11da145ca6fbd5bc5a6b1900", + "line": 8777, + "resource_type": "aws_instance", + "resource_name": "example-instance-975", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example975}}]", + "search_line": 8777, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3df3d6ea5c9ff4d4d179f6a08b6d1468e28185e23ca3bc97c86b9976cdbee912", + "line": 3917, + "resource_type": "aws_instance", + "resource_name": "example-instance-435", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example435}}]", + "search_line": 3917, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cacd4f186d76be1532271329ebb64c8f57b4a961ed653a4429c286b5bf54d0e0", + "line": 8552, + "resource_type": "aws_instance", + "resource_name": "example-instance-950", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example950}}]", + "search_line": 8552, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d28ba18b3cd568819133c4af75615ebe7c089fc1ba2f5c8cd8dd8986b74d759a", + "line": 4007, + "resource_type": "aws_instance", + "resource_name": "example-instance-445", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example445}}]", + "search_line": 4007, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "aed05629d80fd8e0c2719f709b06f4743a6b7704cfe33f9a474b22d95769ca37", + "line": 533, + "resource_type": "aws_instance", + "resource_name": "example-instance-59", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example59}}]", + "search_line": 533, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c80fd1d0e07f3c59668403ec52d1d967d42902204b8b16a8ab38fa6e921e082f", + "line": 1001, + "resource_type": "aws_instance", + "resource_name": "example-instance-111", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example111}}]", + "search_line": 1001, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b4bf2425bd5f94ca42c43d385cea91dbbcddd645889408edce17f2660eaf602e", + "line": 3962, + "resource_type": "aws_instance", + "resource_name": "example-instance-440", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example440}}]", + "search_line": 3962, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c89debf85dda97417fe584b459935cefb4856b0b3f23611cae311edb5a8a2875", + "line": 4682, + "resource_type": "aws_instance", + "resource_name": "example-instance-520", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example520}}]", + "search_line": 4682, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "08cf5c41ee92cd5dd2a3dcc45a30f48d49ecacac1761a1e3f7c038a3b8dfd220", + "line": 4898, + "resource_type": "aws_instance", + "resource_name": "example-instance-544", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example544}}]", + "search_line": 4898, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "52eeea03c6d797c0f47fe4820b791d6763fc011ba6519acfc533df03d1d1bb6e", + "line": 7238, + "resource_type": "aws_instance", + "resource_name": "example-instance-804", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example804}}]", + "search_line": 7238, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3b96eb2732d1ecf69b06b807aaa3152dd23b7efc28a6101b76d2f1932f72e4c9", + "line": 7832, + "resource_type": "aws_instance", + "resource_name": "example-instance-870", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example870}}]", + "search_line": 7832, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d63cd20290ef6ae69b3c268b9b08ace4f6560faf0b5ef931cf24e059660e51c0", + "line": 830, + "resource_type": "aws_instance", + "resource_name": "example-instance-92", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example92}}]", + "search_line": 830, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "43b1bec38e0cf73b52a93d438f4dfe6aa240eb5a40c2e3c724994764e60381a3", + "line": 7634, + "resource_type": "aws_instance", + "resource_name": "example-instance-848", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example848}}]", + "search_line": 7634, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "390474e4519904294ace82d6eacda799d7e21bb14412b691a2b36425dd8ac4c4", + "line": 4547, + "resource_type": "aws_instance", + "resource_name": "example-instance-505", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example505}}]", + "search_line": 4547, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "56a62e8bf04579f10d6962547f2e28718faa6afc7bd68c2ecfd42edfc6ebc76b", + "line": 7715, + "resource_type": "aws_instance", + "resource_name": "example-instance-857", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example857}}]", + "search_line": 7715, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c0b342f2ac53991171a304fb05f8a81523bfeaf52fa96166970bc781f22b2b5b", + "line": 4601, + "resource_type": "aws_instance", + "resource_name": "example-instance-511", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example511}}]", + "search_line": 4601, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "98527f9cdf77095c83406d4475495b73584a04fa4412b6b22dac455b9597ac65", + "line": 2702, + "resource_type": "aws_instance", + "resource_name": "example-instance-300", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example300}}]", + "search_line": 2702, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c5cb554e6088c9735842c44007c3d43ed8ac32832af96d55a625637e72214416", + "line": 6500, + "resource_type": "aws_instance", + "resource_name": "example-instance-722", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example722}}]", + "search_line": 6500, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f096a9cda66785588db3b0bc0c2296606d6208b478cf3294abfea60994fb7cdd", + "line": 659, + "resource_type": "aws_instance", + "resource_name": "example-instance-73", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example73}}]", + "search_line": 659, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d16e102618d6faf343daaf2e69d4d8623302b1dd4c74a1fa0b9e2bebca13f8a6", + "line": 3611, + "resource_type": "aws_instance", + "resource_name": "example-instance-401", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example401}}]", + "search_line": 3611, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "af14845cc809aebd01f9e7f61ff3ca74974b32f4de97128f5801f05a1310dd0e", + "line": 6428, + "resource_type": "aws_instance", + "resource_name": "example-instance-714", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example714}}]", + "search_line": 6428, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "609a43716aaae3987915ba856b27e2b360f04afe44a77319f81738d7cb5ca965", + "line": 6608, + "resource_type": "aws_instance", + "resource_name": "example-instance-734", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example734}}]", + "search_line": 6608, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1e687e818526e61fadea46e623e8f930b8bd7214db98d4f7f55a5d5b0e84a986", + "line": 7868, + "resource_type": "aws_instance", + "resource_name": "example-instance-874", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example874}}]", + "search_line": 7868, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "362322dfe8200e485f994f1b02d622bd875d637591f8a59b6e9e809d68329ccb", + "line": 2315, + "resource_type": "aws_instance", + "resource_name": "example-instance-257", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example257}}]", + "search_line": 2315, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4e0f3a814be96021a2109844d4f4b01765b6c670b4396e76bff6a763139dd314", + "line": 1856, + "resource_type": "aws_instance", + "resource_name": "example-instance-206", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example206}}]", + "search_line": 1856, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f401770e1136a191c6ae0d966299e498872b7ff0964c9519c8610de9a80d0c79", + "line": 1217, + "resource_type": "aws_instance", + "resource_name": "example-instance-135", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example135}}]", + "search_line": 1217, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8dd09808a617155d090b03501f9f601e3b28f4b39e4448959de3cca47419d699", + "line": 1847, + "resource_type": "aws_instance", + "resource_name": "example-instance-205", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example205}}]", + "search_line": 1847, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e955b810dd94852db3463649c6b502b71d9cfbbe362186951ca2a9221349a145", + "line": 6968, + "resource_type": "aws_instance", + "resource_name": "example-instance-774", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example774}}]", + "search_line": 6968, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b9bc4451b771dab338c3f870f1529619a6bf07f0438865d24b3e4e6c9324e968", + "line": 3080, + "resource_type": "aws_instance", + "resource_name": "example-instance-342", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example342}}]", + "search_line": 3080, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f8f3b60b41aef85614545e5decbfd787bd01317e67fa6c07b69859ed30705564", + "line": 3746, + "resource_type": "aws_instance", + "resource_name": "example-instance-416", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example416}}]", + "search_line": 3746, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ad18f82fde57f9051743a3ca781e444d306ef49fb739d7497e238c394f7dcc4f", + "line": 713, + "resource_type": "aws_instance", + "resource_name": "example-instance-79", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example79}}]", + "search_line": 713, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e4d23503127794592489e3fa1e84c0e8e402c569ff34dec3898d53e8cd1ee495", + "line": 7373, + "resource_type": "aws_instance", + "resource_name": "example-instance-819", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example819}}]", + "search_line": 7373, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "74ef8c5442688269fe284315415720ad8034c8bb087490f74c397d76ea55802c", + "line": 2342, + "resource_type": "aws_instance", + "resource_name": "example-instance-260", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example260}}]", + "search_line": 2342, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3df811b23510b528742a04a00f5bfa47717630d229c9bdb2b08efaca64b29eaa", + "line": 920, + "resource_type": "aws_instance", + "resource_name": "example-instance-102", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example102}}]", + "search_line": 920, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fecba2a2e3dac8cbec5950717c03e902048cc1f77f6a18b0f81c69d4c5ede3ab", + "line": 4772, + "resource_type": "aws_instance", + "resource_name": "example-instance-530", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example530}}]", + "search_line": 4772, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8231ffbe116db5e4d9a1d6d1b85ed81f7e7a1352c6ca78bdeb7618abbf1f1cc7", + "line": 6887, + "resource_type": "aws_instance", + "resource_name": "example-instance-765", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example765}}]", + "search_line": 6887, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fa86e82489fafb4379ef14485b8becec315e85f2164184c7c2005e2dbcc6914b", + "line": 8390, + "resource_type": "aws_instance", + "resource_name": "example-instance-932", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example932}}]", + "search_line": 8390, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1864e295533ddf8dd6f50a300cb7d0948e01e8eed3e53ec1dab0ffc93bc2c642", + "line": 8426, + "resource_type": "aws_instance", + "resource_name": "example-instance-936", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example936}}]", + "search_line": 8426, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "39cf95fa1c87b3fc41a31e854aad097521d28e9d251f38f0a2e98d7d0a2740fe", + "line": 4367, + "resource_type": "aws_instance", + "resource_name": "example-instance-485", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example485}}]", + "search_line": 4367, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "743fb8a0c5094e59e98fd45dc8ccbe519c4f54f076e35338684ff7f8ecfb3bfa", + "line": 6518, + "resource_type": "aws_instance", + "resource_name": "example-instance-724", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example724}}]", + "search_line": 6518, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7216b7884725003f413132725f2b9e0cfbdde15d5358d6b5d10b084942158ab7", + "line": 4502, + "resource_type": "aws_instance", + "resource_name": "example-instance-500", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example500}}]", + "search_line": 4502, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d38cea011cdb89816a5eeb8204e3cbcf2382e95497094d56603dcb7fea90ec52", + "line": 8786, + "resource_type": "aws_instance", + "resource_name": "example-instance-976", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example976}}]", + "search_line": 8786, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b668a465f1ebdd2f089ad0f7f7b00c658eed210c3f4a80bc999c88d802421d4d", + "line": 956, + "resource_type": "aws_instance", + "resource_name": "example-instance-106", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example106}}]", + "search_line": 956, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8c6b651ad0e7209f040cb1ec50af13840a064dc0ce56e4e4671203a99a205d1c", + "line": 821, + "resource_type": "aws_instance", + "resource_name": "example-instance-91", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example91}}]", + "search_line": 821, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6662e57c6646110b2c1d31ecd01dc2eaec009feaa032dc899e72d9e7dfc89d5f", + "line": 6059, + "resource_type": "aws_instance", + "resource_name": "example-instance-673", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example673}}]", + "search_line": 6059, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "05fe21edd7c2feab178f0df5ea12c09defbc01dab7155b4ffc7af82b1bf7fef5", + "line": 5762, + "resource_type": "aws_instance", + "resource_name": "example-instance-640", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example640}}]", + "search_line": 5762, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "46021a9bc6bc798a6496af40acf2afe74334eb011c30d4d8eb060b318cb938a4", + "line": 6266, + "resource_type": "aws_instance", + "resource_name": "example-instance-696", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example696}}]", + "search_line": 6266, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e588cab3dae165a9d7a4735f14684896470e106fc80e13f9bcc9fd19a46fd74d", + "line": 3377, + "resource_type": "aws_instance", + "resource_name": "example-instance-375", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example375}}]", + "search_line": 3377, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "52d7fb79551ce9d69bac7b52ad8d5c4a697b6590ef4530a4c900860e2b6e3349", + "line": 2585, + "resource_type": "aws_instance", + "resource_name": "example-instance-287", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example287}}]", + "search_line": 2585, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "aa4c476e11fc0f7810b32ab813138a422ab8ed2d7ba4fe1661e05b4c1ea19e05", + "line": 7751, + "resource_type": "aws_instance", + "resource_name": "example-instance-861", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example861}}]", + "search_line": 7751, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7765a88a8932aca45a52613fd5f553f502c84bac3753f55f901ee41ef2f18a0b", + "line": 6212, + "resource_type": "aws_instance", + "resource_name": "example-instance-690", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example690}}]", + "search_line": 6212, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ed8868e73cdf1aa09fe8e6009d29365599269f42a1ece29c03e228652e6466c0", + "line": 3872, + "resource_type": "aws_instance", + "resource_name": "example-instance-430", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example430}}]", + "search_line": 3872, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c8fb5297bac00c1ae78d2dd1b5ece21bc1e8d7330d1655cdd7454b472713a21c", + "line": 2630, + "resource_type": "aws_instance", + "resource_name": "example-instance-292", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example292}}]", + "search_line": 2630, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "31a5d2405099d2a2ccde569df352fd269c593ecca9b75b387e0cd3c780e22cce", + "line": 4871, + "resource_type": "aws_instance", + "resource_name": "example-instance-541", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example541}}]", + "search_line": 4871, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "460c7075f0e4627de28e70a9129b5ef419ab9ca687558c8f1f93b8250236d438", + "line": 4970, + "resource_type": "aws_instance", + "resource_name": "example-instance-552", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example552}}]", + "search_line": 4970, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f95c0e7ff604b3401288b83bff97047d99e78195152bea60bc9c8e141a42bc46", + "line": 1406, + "resource_type": "aws_instance", + "resource_name": "example-instance-156", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example156}}]", + "search_line": 1406, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7cc8f8ad02a58275a2e23a57c2ba8a4d053b4d743e729e9d33bb983b721a0fb1", + "line": 4790, + "resource_type": "aws_instance", + "resource_name": "example-instance-532", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example532}}]", + "search_line": 4790, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c4a573054c9b75313fb406a6b4fbb8003329e3b6a9f84edad66638c8edce1050", + "line": 5519, + "resource_type": "aws_instance", + "resource_name": "example-instance-613", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example613}}]", + "search_line": 5519, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "85808949fd84ccebf2f3e3132c40e10ad90a28fd415c66da4aba1aba811ed84e", + "line": 1955, + "resource_type": "aws_instance", + "resource_name": "example-instance-217", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example217}}]", + "search_line": 1955, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9a27d710d7a600688a8dfb898ace3e31a5fa8e632faafa72b44eca8aa8f268fe", + "line": 2900, + "resource_type": "aws_instance", + "resource_name": "example-instance-322", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example322}}]", + "search_line": 2900, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f4ee5d5d60c95f1e0b1600c7b4cb077745f7e8bf7898453ba3d1ef1da30d16b4", + "line": 6545, + "resource_type": "aws_instance", + "resource_name": "example-instance-727", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example727}}]", + "search_line": 6545, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "50a90c0415636961c5b08c4ab3b24635e30ec20d7561b2b579dbb2d18a28c072", + "line": 4313, + "resource_type": "aws_instance", + "resource_name": "example-instance-479", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example479}}]", + "search_line": 4313, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "704cb3bd13db78e0bf9905e6bbcb443b53f50f27b5aa8de32642f31e76264bac", + "line": 7445, + "resource_type": "aws_instance", + "resource_name": "example-instance-827", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example827}}]", + "search_line": 7445, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "205624b12819268a6b123843fd56a236e8e39ec8bd86a4b784a7df19a16d8647", + "line": 5465, + "resource_type": "aws_instance", + "resource_name": "example-instance-607", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example607}}]", + "search_line": 5465, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f910a39395568fd6db77dd62d1989a70eeb248832f66e497ebe536fab1437585", + "line": 353, + "resource_type": "aws_instance", + "resource_name": "example-instance-39", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example39}}]", + "search_line": 353, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cef115bc1d328eba42a991aeb80c0d4b11e287e8b57bffc00b76866a6ab01c1d", + "line": 5042, + "resource_type": "aws_instance", + "resource_name": "example-instance-560", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example560}}]", + "search_line": 5042, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e746289b26eed44bc97f9c7e9cffbf4dfce51f91c0fdb073fc92a2b6033b426c", + "line": 4016, + "resource_type": "aws_instance", + "resource_name": "example-instance-446", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example446}}]", + "search_line": 4016, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fa709f8ec71fa95f1bd67b4c6f59b297509dab187e2811c18d15f3113678be67", + "line": 5249, + "resource_type": "aws_instance", + "resource_name": "example-instance-583", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example583}}]", + "search_line": 5249, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cbd9cb64f6547e5eb455761d9395f345106c6d69205da2a3e8d52f7f298d3b31", + "line": 1343, + "resource_type": "aws_instance", + "resource_name": "example-instance-149", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example149}}]", + "search_line": 1343, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "446c9cc839609ef38f2d6961a9f213f42501fe459f778fdcbb6ff6b738546160", + "line": 560, + "resource_type": "aws_instance", + "resource_name": "example-instance-62", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example62}}]", + "search_line": 560, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ac3877d1889a3ddcc4548317e4a7511370e72e2f8cfd0e0e8853cae2a28d94f1", + "line": 6815, + "resource_type": "aws_instance", + "resource_name": "example-instance-757", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example757}}]", + "search_line": 6815, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f35c8f704b9d7c7d166c40dbe8db3de6c85988f7562e02314aa24788dc0a4c7a", + "line": 4691, + "resource_type": "aws_instance", + "resource_name": "example-instance-521", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example521}}]", + "search_line": 4691, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4603799c95a48704c8cdac4ec303456d461408c84e026c2bcc961d7e42a8f73d", + "line": 7283, + "resource_type": "aws_instance", + "resource_name": "example-instance-809", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example809}}]", + "search_line": 7283, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5c4b3fcb916c504636d1364491a7a51955f1e944c85169b39f8dbc7c93e45c15", + "line": 8669, + "resource_type": "aws_instance", + "resource_name": "example-instance-963", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example963}}]", + "search_line": 8669, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9f828d2a2ed76015fc2b4941b7f2387f57bf1b00645022c4b4c550415f2303b9", + "line": 812, + "resource_type": "aws_instance", + "resource_name": "example-instance-90", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example90}}]", + "search_line": 812, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4f28cc5338c723df6b6eed4e3d5509d309b140b2a8b483a416226507b0d5a280", + "line": 794, + "resource_type": "aws_instance", + "resource_name": "example-instance-88", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example88}}]", + "search_line": 794, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4cf97055e252450d7b9c88fbc7c90becf8455f51c03960525cb0b757965b9a1d", + "line": 8534, + "resource_type": "aws_instance", + "resource_name": "example-instance-948", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example948}}]", + "search_line": 8534, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "50fdd749873bd769996b6b61cfa615c4d53d74f6857436eb7bc40ef00961aec6", + "line": 3602, + "resource_type": "aws_instance", + "resource_name": "example-instance-400", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example400}}]", + "search_line": 3602, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "827741907d66550e6566cc1a9e7f213faf62130708f7a1ed80802adb57434fd1", + "line": 4385, + "resource_type": "aws_instance", + "resource_name": "example-instance-487", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example487}}]", + "search_line": 4385, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "65510cbf6bbf44d515a81199a066523cfa9f3f631254ec79521c94b1951e8043", + "line": 8318, + "resource_type": "aws_instance", + "resource_name": "example-instance-924", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example924}}]", + "search_line": 8318, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "405f84135ab51622784dcd9a1714c47cbdb125da76bb5cf4c40fa76e81853ced", + "line": 7400, + "resource_type": "aws_instance", + "resource_name": "example-instance-822", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example822}}]", + "search_line": 7400, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bc13d509aa36dcc0ba407bcaa6007813472854103bc2e9f8d3d0af9f246d967c", + "line": 4277, + "resource_type": "aws_instance", + "resource_name": "example-instance-475", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example475}}]", + "search_line": 4277, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "090d8246b21f7f12d2a1c7a54a893888c3e28739355b9d43c7764ce7448967d3", + "line": 4268, + "resource_type": "aws_instance", + "resource_name": "example-instance-474", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example474}}]", + "search_line": 4268, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "96cc7e63cdbd145a089b7288eaa4a2cc4692903c5383bd783c5ae8984f226470", + "line": 3125, + "resource_type": "aws_instance", + "resource_name": "example-instance-347", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example347}}]", + "search_line": 3125, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e9faba5b26784fe5ebbdc2f180e2849ac4a7c870e1c684c6e41b3f6274f01bfb", + "line": 4052, + "resource_type": "aws_instance", + "resource_name": "example-instance-450", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example450}}]", + "search_line": 4052, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c1f4cc1ac3f564a09b752349361499348aca34100791d335d33850d65b979e89", + "line": 6761, + "resource_type": "aws_instance", + "resource_name": "example-instance-751", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example751}}]", + "search_line": 6761, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bff2ec92df41b6632b9b3598f054081cdde2f71386a60c99f163d3dda7597b47", + "line": 6581, + "resource_type": "aws_instance", + "resource_name": "example-instance-731", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example731}}]", + "search_line": 6581, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7727092d42a22ba201f50989d11213d0f3f1b0d67660b5bd0c7d3dcdc5a0de67", + "line": 3305, + "resource_type": "aws_instance", + "resource_name": "example-instance-367", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example367}}]", + "search_line": 3305, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2216332d54bba30340c6f7cf9d8ef18c8902fd3f7df302683167b08a6e4b6280", + "line": 8408, + "resource_type": "aws_instance", + "resource_name": "example-instance-934", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example934}}]", + "search_line": 8408, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d00628941f19ae20a9d1f2b574d0baedd16078f74b7cf3e264dc5d076bb07cda", + "line": 3413, + "resource_type": "aws_instance", + "resource_name": "example-instance-379", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example379}}]", + "search_line": 3413, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "38e836ef7d1138f4a301ced87c6c37c11edbbfeef364372177a732c6f7050441", + "line": 3593, + "resource_type": "aws_instance", + "resource_name": "example-instance-399", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example399}}]", + "search_line": 3593, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2825187cfffefb197fc2d30f741d358bf1fa1656f38559c46faa67026f56f533", + "line": 6311, + "resource_type": "aws_instance", + "resource_name": "example-instance-701", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example701}}]", + "search_line": 6311, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6ab876b9b8f9792e4aedc5f329085a45a2c9f9b55d8e216a953aa6c2dc15e9a5", + "line": 2054, + "resource_type": "aws_instance", + "resource_name": "example-instance-228", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example228}}]", + "search_line": 2054, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b92be0cfb3c59bf8da1b39c4c065e4eb69c505e8040d0ca5f0df67ca2b4e7645", + "line": 7985, + "resource_type": "aws_instance", + "resource_name": "example-instance-887", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example887}}]", + "search_line": 7985, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4eecfd00c94e7896ac599cf78bf24c10054cc495999f2a2713eb5a2585607a8e", + "line": 3530, + "resource_type": "aws_instance", + "resource_name": "example-instance-392", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example392}}]", + "search_line": 3530, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ac6d24feb8a160d83936c41f78f1cf9d7894e44f0a54dcd3400ce3633ad2ad93", + "line": 4628, + "resource_type": "aws_instance", + "resource_name": "example-instance-514", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example514}}]", + "search_line": 4628, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "12b53cf31100aaff9c3b9a16b0a44c04e3c6a0086af2dc022087237fef4d9c42", + "line": 6473, + "resource_type": "aws_instance", + "resource_name": "example-instance-719", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example719}}]", + "search_line": 6473, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1ade549eccdc3022b954f32fec086e9b3cc4612cfc4cd91b7f0a32e1d4e38adb", + "line": 3647, + "resource_type": "aws_instance", + "resource_name": "example-instance-405", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example405}}]", + "search_line": 3647, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f0f8feea542e8121c183db2f95a4a08e45bbae2160a40ede5c93725a78286d25", + "line": 7994, + "resource_type": "aws_instance", + "resource_name": "example-instance-888", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example888}}]", + "search_line": 7994, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "aa19b641fbeb95c24f4b5ecc55aee67821a46da5e176ccc297a89f94418912da", + "line": 8282, + "resource_type": "aws_instance", + "resource_name": "example-instance-920", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example920}}]", + "search_line": 8282, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "80572299505d7c0400c22cd11101b3550917f7d9d930b6c93bf9d8dce045eeec", + "line": 2234, + "resource_type": "aws_instance", + "resource_name": "example-instance-248", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example248}}]", + "search_line": 2234, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bbfbb7a9586c509bd91e01526567a5d0bd503a1a016632f05d1216f7ff6fc2e5", + "line": 5654, + "resource_type": "aws_instance", + "resource_name": "example-instance-628", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example628}}]", + "search_line": 5654, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4d39602755677ec52730bb71ee88adc71d9830eb53e96723cc6d9a504261b40b", + "line": 7958, + "resource_type": "aws_instance", + "resource_name": "example-instance-884", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example884}}]", + "search_line": 7958, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d8ac4d06ac27ef868c20a659d17f0122c6ed54123d993c2de68ceb2f8a25e74a", + "line": 6698, + "resource_type": "aws_instance", + "resource_name": "example-instance-744", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example744}}]", + "search_line": 6698, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3f7327c5a0d8ffa186e0d495289d4c67fba3914ff7854535e9cebfa9595086ee", + "line": 7337, + "resource_type": "aws_instance", + "resource_name": "example-instance-815", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example815}}]", + "search_line": 7337, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "095b7ddb7703d0a4200ab5016f6264ff8ef56964fab8a211a24e26bdb4a75fa6", + "line": 7274, + "resource_type": "aws_instance", + "resource_name": "example-instance-808", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example808}}]", + "search_line": 7274, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c3074896d41cadd969166b538f4b4ab135c2db0584eda94846d6e66236f0fa4b", + "line": 29, + "resource_type": "aws_instance", + "resource_name": "example-instance-3", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example3}}]", + "search_line": 29, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "73743cac94aa9bc273ca7c5bc46b04e38abd11fc4ada945d3e8a95643719bde6", + "line": 4466, + "resource_type": "aws_instance", + "resource_name": "example-instance-496", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example496}}]", + "search_line": 4466, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bfac53c1c1b7faab7c0975a28b2fde6218264c9c7b2fbd61b6712a849d16106f", + "line": 6410, + "resource_type": "aws_instance", + "resource_name": "example-instance-712", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example712}}]", + "search_line": 6410, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "716b4e14cc05203033be29b8042bb92a155c63689dc62c28318e898ac626e0a2", + "line": 1685, + "resource_type": "aws_instance", + "resource_name": "example-instance-187", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example187}}]", + "search_line": 1685, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "31ae7d81e997ba14d4b5e4b408a3fadeef96157c5f9c0e2905db15d5814df6b6", + "line": 6158, + "resource_type": "aws_instance", + "resource_name": "example-instance-684", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example684}}]", + "search_line": 6158, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7f16d05bd2f347c19a4add526e0c61649aea3002c5a7624131256a8f5e58c6d2", + "line": 6032, + "resource_type": "aws_instance", + "resource_name": "example-instance-670", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example670}}]", + "search_line": 6032, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8a3f4412a295e6237fae9da06d2f1dbc44263be7027ab9257a21da50e965fcc6", + "line": 4961, + "resource_type": "aws_instance", + "resource_name": "example-instance-551", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example551}}]", + "search_line": 4961, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "234d1e6fd71c0ce86b5884982604e90d3253cdeb72de7f50d5d270a65649513b", + "line": 1991, + "resource_type": "aws_instance", + "resource_name": "example-instance-221", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example221}}]", + "search_line": 1991, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7a18b84d8bc27ab4070e526e0873ee96b09f3438382ddb63fe4c40b275216716", + "line": 2441, + "resource_type": "aws_instance", + "resource_name": "example-instance-271", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example271}}]", + "search_line": 2441, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "50f7cb53eae14894190ee41ca7f235409a5de4881b03cae86cb881ee55870025", + "line": 4907, + "resource_type": "aws_instance", + "resource_name": "example-instance-545", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example545}}]", + "search_line": 4907, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3aea08dadbb33ff33b101bd47cee35536332be2de12521cbe00830f28488a0cb", + "line": 3467, + "resource_type": "aws_instance", + "resource_name": "example-instance-385", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example385}}]", + "search_line": 3467, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bbaebc1fe4af4e16c4e061a88aa7fe340c2c6c7204a69cd68fa147a027667ca0", + "line": 8471, + "resource_type": "aws_instance", + "resource_name": "example-instance-941", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example941}}]", + "search_line": 8471, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1d9fe5a5000663f15494078ed389feb96d1e2eb8ee45a1e1eec2784303b96681", + "line": 974, + "resource_type": "aws_instance", + "resource_name": "example-instance-108", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example108}}]", + "search_line": 974, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1096c2e86f21ce516544a5f08882b443bb4ef8132fd125fd76dc294337d63aae", + "line": 38, + "resource_type": "aws_instance", + "resource_name": "example-instance-4", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example4}}]", + "search_line": 38, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e77fece7ddf5817f06cd4d9c433924e23e2eee394555a225f06bcf2d591b61c8", + "line": 227, + "resource_type": "aws_instance", + "resource_name": "example-instance-25", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example25}}]", + "search_line": 227, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fff2e5b739bd4b81845e5aac848aa4dff8e8af02c0ccdd0fa151e8fd2c93e99b", + "line": 551, + "resource_type": "aws_instance", + "resource_name": "example-instance-61", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example61}}]", + "search_line": 551, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1f1d3be0d4d608ef7ab08044bcc060ed0168f36e57a12a6579d849e117c35613", + "line": 6248, + "resource_type": "aws_instance", + "resource_name": "example-instance-694", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example694}}]", + "search_line": 6248, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4a5e69a3e82d6aec6556a12768e650d94c974f897d46db27491156dcf8c3c472", + "line": 3044, + "resource_type": "aws_instance", + "resource_name": "example-instance-338", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example338}}]", + "search_line": 3044, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "12fbfde610a09dc0a6ca492c083c76be549cb4fc34399ff0593f0d6736268692", + "line": 3584, + "resource_type": "aws_instance", + "resource_name": "example-instance-398", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example398}}]", + "search_line": 3584, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "591ea79efbead02816a8b333d9ebbc0e1fe6b9d87e021c0dca668396fa6ff325", + "line": 6680, + "resource_type": "aws_instance", + "resource_name": "example-instance-742", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example742}}]", + "search_line": 6680, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "febd1fdf93830e334f6a9599e579997bda5a8696947e940bdef9913c80d2931e", + "line": 8975, + "resource_type": "aws_instance", + "resource_name": "example-instance-997", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example997}}]", + "search_line": 8975, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6eba455548c389c654069bb833d48083803cfd347282cdd89fdcaa386dabfd60", + "line": 7076, + "resource_type": "aws_instance", + "resource_name": "example-instance-786", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example786}}]", + "search_line": 7076, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fb16963dce1e6664fe7c0528d622c96b1132c52ee9bae209bdd45dfc92abec73", + "line": 4178, + "resource_type": "aws_instance", + "resource_name": "example-instance-464", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example464}}]", + "search_line": 4178, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "44c6e2cc251486c50f82d0289e3a32aea9b47c9baf6cd63c52e725921607652a", + "line": 4304, + "resource_type": "aws_instance", + "resource_name": "example-instance-478", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example478}}]", + "search_line": 4304, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f29e2d8003bc1acc04d26f21d709872a1184c1aa8dd36a950b8c3e7b4422b84e", + "line": 1289, + "resource_type": "aws_instance", + "resource_name": "example-instance-143", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example143}}]", + "search_line": 1289, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fe7a95c308f18373fef5e20b5a54dd50a6299162f83acadca6bb366254ead5e8", + "line": 8192, + "resource_type": "aws_instance", + "resource_name": "example-instance-910", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example910}}]", + "search_line": 8192, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "71a3e7202b61e0ac70c0a926106590de7e89765374b030b1aa4863fbaa79905c", + "line": 2747, + "resource_type": "aws_instance", + "resource_name": "example-instance-305", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example305}}]", + "search_line": 2747, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "08829397930d2f37d82a16089e299e3c9057f82f67788268073970bc52d3b543", + "line": 5537, + "resource_type": "aws_instance", + "resource_name": "example-instance-615", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example615}}]", + "search_line": 5537, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "318b75191a78186809d0ed022a92ef24ed76ba2de9220a5bb131ddb1e9ced3ce", + "line": 461, + "resource_type": "aws_instance", + "resource_name": "example-instance-51", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example51}}]", + "search_line": 461, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0ce322b467238480a3d1b77d8fe51d0958dc58578a78143ad59e1305b43e837c", + "line": 1649, + "resource_type": "aws_instance", + "resource_name": "example-instance-183", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example183}}]", + "search_line": 1649, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "40f9d4adad0d4cc76b26c5d398423b32fde90972cbee1d04cf4033dbb961bbcf", + "line": 2684, + "resource_type": "aws_instance", + "resource_name": "example-instance-298", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example298}}]", + "search_line": 2684, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b0545cee714925afe96ddea287ddd246ba51db8eb369a4c570b28784283a29fa", + "line": 6842, + "resource_type": "aws_instance", + "resource_name": "example-instance-760", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example760}}]", + "search_line": 6842, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d3ee74bbb8222dad87fec7d7d2c3ae5b7e04f92a4f23e891a65d0ac3ddc67d00", + "line": 8165, + "resource_type": "aws_instance", + "resource_name": "example-instance-907", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example907}}]", + "search_line": 8165, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "15d7517c2d4fafcfdba3a19cf46378e1e3869a2c3e16b901b9dd6b8b389d766e", + "line": 4034, + "resource_type": "aws_instance", + "resource_name": "example-instance-448", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example448}}]", + "search_line": 4034, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "730a15d2c8afae1012df90d8f8e6bc8fc73ff2048b956f9df142c2b880cb5e5f", + "line": 4673, + "resource_type": "aws_instance", + "resource_name": "example-instance-519", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example519}}]", + "search_line": 4673, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "071d9a17acfc164bd8d1ff958200513b20a4ddda58f0222161e5543324b5a701", + "line": 8651, + "resource_type": "aws_instance", + "resource_name": "example-instance-961", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example961}}]", + "search_line": 8651, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9651c045e86610be9fc3de483d10a9e5af8e3b218a525e64508887786a893a24", + "line": 4610, + "resource_type": "aws_instance", + "resource_name": "example-instance-512", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example512}}]", + "search_line": 4610, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ac7a2b4953d1b3155a8115c8a1ec1d51ad42e69362f60ff64ee3f82c16d70d87", + "line": 2090, + "resource_type": "aws_instance", + "resource_name": "example-instance-232", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example232}}]", + "search_line": 2090, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "12571be95e5559de937d5d36903b859ca1d01fbc336015608c0b28b27bdb4e30", + "line": 2738, + "resource_type": "aws_instance", + "resource_name": "example-instance-304", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example304}}]", + "search_line": 2738, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bcdfe243a1d20926f67f471feabf6172f423420ce5fcc8a995e576bb3028fda2", + "line": 8750, + "resource_type": "aws_instance", + "resource_name": "example-instance-972", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example972}}]", + "search_line": 8750, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0079222b7cfa2f43f850cbbd9347d448d3ae3c0aa4a240df0c12d4cbdc14037d", + "line": 6239, + "resource_type": "aws_instance", + "resource_name": "example-instance-693", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example693}}]", + "search_line": 6239, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ca3bb2a5e88deabcc872a7e33125024e59c5c8ab98421783d933d9f9ac03ad2c", + "line": 290, + "resource_type": "aws_instance", + "resource_name": "example-instance-32", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example32}}]", + "search_line": 290, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a7b286d98c0971017f275f1a4a57c5aabf959b6de4d5ec5766ab3d0bafdfdd04", + "line": 5186, + "resource_type": "aws_instance", + "resource_name": "example-instance-576", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example576}}]", + "search_line": 5186, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f70076e13a16d9ea70de13d6ded24efc7f5ba799c40adb61d9b8c46bad36a655", + "line": 2324, + "resource_type": "aws_instance", + "resource_name": "example-instance-258", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example258}}]", + "search_line": 2324, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b0ea6fec2ee1601fed1ef2334e1749ad8f08f2dae8203ce343d994f8ba985efc", + "line": 452, + "resource_type": "aws_instance", + "resource_name": "example-instance-50", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example50}}]", + "search_line": 452, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cb6a789f1d9b0cf7b3a7dc8b7716842fbfed5af6c8902b29b04a96fce5b95b34", + "line": 1703, + "resource_type": "aws_instance", + "resource_name": "example-instance-189", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example189}}]", + "search_line": 1703, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3002299d0fed8b4efe36535119373b428e9872ce2914f1e72d2ff38ecdbc8e5b", + "line": 4934, + "resource_type": "aws_instance", + "resource_name": "example-instance-548", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example548}}]", + "search_line": 4934, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6bd9949eae31b7eea570c55a4090b145e07e2f9d1a651295b0e31b64b654fa18", + "line": 8435, + "resource_type": "aws_instance", + "resource_name": "example-instance-937", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example937}}]", + "search_line": 8435, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "446c8650bc93a849eeff3ae4a3d03092ce26a030752954f8a47fa4210626ff04", + "line": 6788, + "resource_type": "aws_instance", + "resource_name": "example-instance-754", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example754}}]", + "search_line": 6788, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ba7b2fbe0ace0a393f19434d53f9bab055a77ec69501459af669089042c2c5d2", + "line": 2189, + "resource_type": "aws_instance", + "resource_name": "example-instance-243", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example243}}]", + "search_line": 2189, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "04201443c554fbe1415754eac7fb160822f8626849e9cea511730e8715d681de", + "line": 3800, + "resource_type": "aws_instance", + "resource_name": "example-instance-422", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example422}}]", + "search_line": 3800, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f96ca59f8ae852fe60c78ae4ee5579866221759cc127910a3b77b11aa5be4b89", + "line": 8957, + "resource_type": "aws_instance", + "resource_name": "example-instance-995", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example995}}]", + "search_line": 8957, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2a7e6ff87b9d9be22df263426ff34191255fbb6cc6af0df19df04708be7d1031", + "line": 4070, + "resource_type": "aws_instance", + "resource_name": "example-instance-452", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example452}}]", + "search_line": 4070, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4924bae2e9df9594204296e0e9461b1a814b3c491c93d6049d36a9ec589e5458", + "line": 515, + "resource_type": "aws_instance", + "resource_name": "example-instance-57", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example57}}]", + "search_line": 515, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a49a8d26a3b1ce2d0c3c4c2aa44c8b45a7a540623c91e7c4dd8cfba98add843d", + "line": 6752, + "resource_type": "aws_instance", + "resource_name": "example-instance-750", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example750}}]", + "search_line": 6752, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e98967511e8befe976d23c1177e77c4e6d3173e30d604b1cb240ac48fe366d7a", + "line": 4646, + "resource_type": "aws_instance", + "resource_name": "example-instance-516", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example516}}]", + "search_line": 4646, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a8508c606068621ef9349e19b4402863c2474b023a50f646631b771f11e108b3", + "line": 731, + "resource_type": "aws_instance", + "resource_name": "example-instance-81", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example81}}]", + "search_line": 731, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a6baaf0f57f8da4ac7ce0356eda42728f0e7da1084a3bdd5043094354e04bc62", + "line": 1127, + "resource_type": "aws_instance", + "resource_name": "example-instance-125", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example125}}]", + "search_line": 1127, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "02c0e3859169978499914b8301da84d9e3daddc113d0b9bc40dbe0f00cbe922d", + "line": 6275, + "resource_type": "aws_instance", + "resource_name": "example-instance-697", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example697}}]", + "search_line": 6275, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "be721dd6901b9311001f4374f092e244e2a03ae73d91a2025ffa783f0f3ebd81", + "line": 2675, + "resource_type": "aws_instance", + "resource_name": "example-instance-297", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example297}}]", + "search_line": 2675, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3432ab955562bd4a96a11b07436e9d565a39d8982e1664617e28e35c8519857a", + "line": 7508, + "resource_type": "aws_instance", + "resource_name": "example-instance-834", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example834}}]", + "search_line": 7508, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f17b254cb8326110344ab50fd65816eee532aaaa07aeb7fb5abe30984f65d31b", + "line": 8516, + "resource_type": "aws_instance", + "resource_name": "example-instance-946", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example946}}]", + "search_line": 8516, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8cf1614e7d80add4cc00896d70e14d2ced56e3c7c32c0749f114e848266b66e3", + "line": 5348, + "resource_type": "aws_instance", + "resource_name": "example-instance-594", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example594}}]", + "search_line": 5348, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4e5d275ee79ec0d9014f106597817957c4261f305821a0c7889a882c828ad824", + "line": 1136, + "resource_type": "aws_instance", + "resource_name": "example-instance-126", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example126}}]", + "search_line": 1136, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b13a250119c93553f20e116f9f7f6a9e9ddcbf357426841ec0afbbc18067f7ad", + "line": 3809, + "resource_type": "aws_instance", + "resource_name": "example-instance-423", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example423}}]", + "search_line": 3809, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3a2d57e6a1ccb0c7c516ad761ec736887fd3c0d7237b2c4bb31229e2b5c58e60", + "line": 1487, + "resource_type": "aws_instance", + "resource_name": "example-instance-165", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example165}}]", + "search_line": 1487, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "190cb6692a7b5668a369710ba3508d3201c802932fd392c9586930c7f4f7a3be", + "line": 3521, + "resource_type": "aws_instance", + "resource_name": "example-instance-391", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example391}}]", + "search_line": 3521, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f75723697adf1cc259296014c445059fa1c662f9a1bcd98d7f7d916d28067c57", + "line": 4295, + "resource_type": "aws_instance", + "resource_name": "example-instance-477", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example477}}]", + "search_line": 4295, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4ac3cbd5ba4f38fa231895f30928dd26a34c5e26677c1d5627605f479a44a59c", + "line": 6563, + "resource_type": "aws_instance", + "resource_name": "example-instance-729", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example729}}]", + "search_line": 6563, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d70a266d2d0969879a989020956cbeced6470ae2e20ec3dec39ae23df226452b", + "line": 6707, + "resource_type": "aws_instance", + "resource_name": "example-instance-745", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example745}}]", + "search_line": 6707, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "84ad78fc873f524c1c939f5f56711af1ed8d3b56f9fdb88e347d41fcbb663d2e", + "line": 2864, + "resource_type": "aws_instance", + "resource_name": "example-instance-318", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example318}}]", + "search_line": 2864, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0414fd099d64937c8bf089b38bb8d8ec76ce2090ea6d6f1f545f862a6320cede", + "line": 5780, + "resource_type": "aws_instance", + "resource_name": "example-instance-642", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example642}}]", + "search_line": 5780, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f7d54b4b355feac9100a2fbcad4ce522a2ac196ca03ef297d05d0da88f5ff230", + "line": 8309, + "resource_type": "aws_instance", + "resource_name": "example-instance-923", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example923}}]", + "search_line": 8309, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e7c717e018aef7616626d2e5ad380cff09ce9e4f9a237ac3bd8563689c24e561", + "line": 5933, + "resource_type": "aws_instance", + "resource_name": "example-instance-659", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example659}}]", + "search_line": 5933, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "88cf8866a35780d03748e40fae7a5e977ff1dd82ff19cee26989c1b7c0ec2359", + "line": 8111, + "resource_type": "aws_instance", + "resource_name": "example-instance-901", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example901}}]", + "search_line": 8111, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9ff81f241d852d04affb609a82a3dbb7c5159cbf6554e46b4f5211e04ac5955d", + "line": 8093, + "resource_type": "aws_instance", + "resource_name": "example-instance-899", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example899}}]", + "search_line": 8093, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e562c6f25dfbb68ef3101f3e326e8783e141925cc4680e471a95ff2e32f7449b", + "line": 7580, + "resource_type": "aws_instance", + "resource_name": "example-instance-842", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example842}}]", + "search_line": 7580, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b1fedde4873c476ee1a0b85d6a662ee3a984d6e9d9514c75472da6dca53ea5c5", + "line": 2477, + "resource_type": "aws_instance", + "resource_name": "example-instance-275", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example275}}]", + "search_line": 2477, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6d782e96b6eb2bf98fa06e91f550922b4aeb4a3fe549da8779f6ab4548afc552", + "line": 1460, + "resource_type": "aws_instance", + "resource_name": "example-instance-162", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example162}}]", + "search_line": 1460, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2f51102bf21a91951b25092adfb66ba6236a78cb8a9b52183b05be27a4bb1c0a", + "line": 2549, + "resource_type": "aws_instance", + "resource_name": "example-instance-283", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example283}}]", + "search_line": 2549, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6ab2b45083471beda2f1b1d1dc506fa08bd055825100b17fa627a6d820097760", + "line": 263, + "resource_type": "aws_instance", + "resource_name": "example-instance-29", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example29}}]", + "search_line": 263, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ab606264a6aa18178488e419b2e6bfb80dbbfb21af459abe93109884b1a787ff", + "line": 6464, + "resource_type": "aws_instance", + "resource_name": "example-instance-718", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example718}}]", + "search_line": 6464, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "670458d825c9fa76e47c0462648491712e9747b777b81a9e5978e2e7748ab510", + "line": 1181, + "resource_type": "aws_instance", + "resource_name": "example-instance-131", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example131}}]", + "search_line": 1181, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3f04b04b19057760272a232617172f72e555e8bbc43226701c00ce3339dd6576", + "line": 5690, + "resource_type": "aws_instance", + "resource_name": "example-instance-632", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example632}}]", + "search_line": 5690, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c63e500d07a0aa49da70d8f2f15c460219bed4a2549c337bd90d4c271f274df8", + "line": 1892, + "resource_type": "aws_instance", + "resource_name": "example-instance-210", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example210}}]", + "search_line": 1892, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8044ade14f5b811460a586552aa0c009a9335211161f7b0fb67278a00d719dad", + "line": 1946, + "resource_type": "aws_instance", + "resource_name": "example-instance-216", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example216}}]", + "search_line": 1946, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "66aa8da7dcb5ca0fe06716a0edad2734cc31f5da3b72afd5728a6f127f95610e", + "line": 4916, + "resource_type": "aws_instance", + "resource_name": "example-instance-546", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example546}}]", + "search_line": 4916, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "04e9f3624824b5ae322aed3a984f700eca0bcf1d6fc55918ae8caf46f2bed1bc", + "line": 6356, + "resource_type": "aws_instance", + "resource_name": "example-instance-706", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example706}}]", + "search_line": 6356, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "05484698a2c71918a9ea27fb458daff5bbbca3ba85e0d4f90847f0d7efd2dd97", + "line": 8300, + "resource_type": "aws_instance", + "resource_name": "example-instance-922", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example922}}]", + "search_line": 8300, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "31fe721675e4d11ed2b2ce2c3682712997c8abb9a34713c753a92bb27163d584", + "line": 8660, + "resource_type": "aws_instance", + "resource_name": "example-instance-962", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example962}}]", + "search_line": 8660, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f6f50b80d1e32ee35cfe82268fdb7a783caa055860e0f01627f09a54b2907fd1", + "line": 902, + "resource_type": "aws_instance", + "resource_name": "example-instance-100", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example100}}]", + "search_line": 902, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b23aeb8fc804b7e24e10ca87421cda8cd6a8b776e3bdd0e1ee1bf2c14395be12", + "line": 11, + "resource_type": "aws_instance", + "resource_name": "example-instance-1", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example1}}]", + "search_line": 11, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4da9e156f1e3c7edbd281b34d9531d232d6dd472c94849fe809d3c1747a1b16e", + "line": 3233, + "resource_type": "aws_instance", + "resource_name": "example-instance-359", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example359}}]", + "search_line": 3233, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2365cc265dc34516ff27cb9b1225ebbe0d564ba309517100b694344a3563bd9f", + "line": 7040, + "resource_type": "aws_instance", + "resource_name": "example-instance-782", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example782}}]", + "search_line": 7040, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0d2b74947ec970d3e66026c360df5cb596ab7bde5852c5912202a36519130346", + "line": 2720, + "resource_type": "aws_instance", + "resource_name": "example-instance-302", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example302}}]", + "search_line": 2720, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2458d4f241340da9dd1015be8f0b206e0d9c176012a47b57d4e1e778ee6029d4", + "line": 4844, + "resource_type": "aws_instance", + "resource_name": "example-instance-538", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example538}}]", + "search_line": 4844, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1b28fc33f6ed5f06282e31d50778460ffeacfc59dcedc0132a28720d9364b80d", + "line": 6176, + "resource_type": "aws_instance", + "resource_name": "example-instance-686", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example686}}]", + "search_line": 6176, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a283d27d8e57bde0d95ce6e546cabe399d26f1cd791a02afccb6f10322e79da0", + "line": 317, + "resource_type": "aws_instance", + "resource_name": "example-instance-35", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example35}}]", + "search_line": 317, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ac5b1f4a2f95c94ee5c5ab1ef9d0980df4b9d1a0340db701e25552b1792197ab", + "line": 3575, + "resource_type": "aws_instance", + "resource_name": "example-instance-397", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example397}}]", + "search_line": 3575, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b17bfd8209800ae0546cf26ba327af995aa31f57abffe7fc21abbb8fa3826242", + "line": 7202, + "resource_type": "aws_instance", + "resource_name": "example-instance-800", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example800}}]", + "search_line": 7202, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9dc45a5e8f6adaeebd4c2183476178684c2706b8eec2eb31638a3bb082504507", + "line": 4412, + "resource_type": "aws_instance", + "resource_name": "example-instance-490", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example490}}]", + "search_line": 4412, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7d39cec37f3c3522da16c7ffb5d0e69c6d56cf2f583e39e22a33b2b83f9deef0", + "line": 1469, + "resource_type": "aws_instance", + "resource_name": "example-instance-163", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example163}}]", + "search_line": 1469, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c67a194214098ec9e30d6a40be844bbfb28c25427b57ca5f881533b5479b4440", + "line": 5843, + "resource_type": "aws_instance", + "resource_name": "example-instance-649", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example649}}]", + "search_line": 5843, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9e8bd1934a7c7c76d22e86be6d2755a015af2281ca95c6f75361ae4cb3bd18bc", + "line": 7616, + "resource_type": "aws_instance", + "resource_name": "example-instance-846", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example846}}]", + "search_line": 7616, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8d5c1f17de3d9a7f2accebc290e081be33e94b75cfca0a4a06ca49db3a4334db", + "line": 371, + "resource_type": "aws_instance", + "resource_name": "example-instance-41", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example41}}]", + "search_line": 371, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "93ed35f54e3b6eb7f98e039d30193ee9da42e89426b93f57f9e786d480986e93", + "line": 7112, + "resource_type": "aws_instance", + "resource_name": "example-instance-790", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example790}}]", + "search_line": 7112, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0c47b1e543880803ef09444aee2f6c91bb233a37f189e06b28eaa910d07552c5", + "line": 4817, + "resource_type": "aws_instance", + "resource_name": "example-instance-535", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example535}}]", + "search_line": 4817, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1640dc59ada8120b62413823dfc6946fe509f6734726a9d04da6d78fb6ece3b5", + "line": 4142, + "resource_type": "aws_instance", + "resource_name": "example-instance-460", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example460}}]", + "search_line": 4142, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "19f8198967c6df2b2a9d2504196f9e30620399322df1fd756666da3c81fee18a", + "line": 8336, + "resource_type": "aws_instance", + "resource_name": "example-instance-926", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example926}}]", + "search_line": 8336, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "67f0470b08913fb2cef1b791bda3180e867fc829b5ce7ea25f60bc7ec03dac5b", + "line": 110, + "resource_type": "aws_instance", + "resource_name": "example-instance-12", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example12}}]", + "search_line": 110, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d2e7a6c6e740db9eb06497fba050b9b727bf9e1b34687ba6a87b6d398ef1a652", + "line": 4583, + "resource_type": "aws_instance", + "resource_name": "example-instance-509", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example509}}]", + "search_line": 4583, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fb5cc5dd83ec5a6fee4d84ad861c590e28a5cfd1ddaafcb69071b5b3b2a3b76f", + "line": 5051, + "resource_type": "aws_instance", + "resource_name": "example-instance-561", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example561}}]", + "search_line": 5051, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "67e7bbd621647de483b69b885d797e038b9c19e677168fbdd76a620b63fffe16", + "line": 5726, + "resource_type": "aws_instance", + "resource_name": "example-instance-636", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example636}}]", + "search_line": 5726, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "205bf9ee8721089df22771168640cbced3d0dd91a1d115231925213d5cdb3f6b", + "line": 5429, + "resource_type": "aws_instance", + "resource_name": "example-instance-603", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example603}}]", + "search_line": 5429, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "25941539f5862d8b7a3116f0cd7d697444a2077b4a33da6372027d50a49ba28f", + "line": 947, + "resource_type": "aws_instance", + "resource_name": "example-instance-105", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example105}}]", + "search_line": 947, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2d28d45acf1621a3fa80512deac047b4153b94e01a608991213409d07c8365c5", + "line": 2693, + "resource_type": "aws_instance", + "resource_name": "example-instance-299", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example299}}]", + "search_line": 2693, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "20530830bf950d61d48a438a0d7c585dd86cf79ff8cb1eb955dcf44c45222f25", + "line": 6005, + "resource_type": "aws_instance", + "resource_name": "example-instance-667", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example667}}]", + "search_line": 6005, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f5a5c57087930e83899bc3e18b9d351a668ccc60ca25f80530168f7999a89ec1", + "line": 4196, + "resource_type": "aws_instance", + "resource_name": "example-instance-466", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example466}}]", + "search_line": 4196, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "db4294d85d33f9f6f56516b55d125c0304522f7d2fda315b9c70bb0c6bb3a77a", + "line": 6653, + "resource_type": "aws_instance", + "resource_name": "example-instance-739", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example739}}]", + "search_line": 6653, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1f5b81ad0e5a51ea2a1ff05aae7d2e00822c295d3abeb02df421d51125e70399", + "line": 5609, + "resource_type": "aws_instance", + "resource_name": "example-instance-623", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example623}}]", + "search_line": 5609, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c17b014bad7f650b19c40059347d67f2c951d415337feaf3c13ac693f88fa67c", + "line": 3224, + "resource_type": "aws_instance", + "resource_name": "example-instance-358", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example358}}]", + "search_line": 3224, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f772a4a7936ac9cc76e4e7ae7b7ad62ac36c5a7e89485b0628f3036a390cea88", + "line": 5060, + "resource_type": "aws_instance", + "resource_name": "example-instance-562", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example562}}]", + "search_line": 5060, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "595b2be2301f2c1d51eb9327a5deeb1a29a7d42c95b5cbaabeae088d7abe5c51", + "line": 2207, + "resource_type": "aws_instance", + "resource_name": "example-instance-245", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example245}}]", + "search_line": 2207, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9255185143eba234d68c0e62eb8a6714320e463671bd3c4de2a499e002c67df1", + "line": 605, + "resource_type": "aws_instance", + "resource_name": "example-instance-67", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example67}}]", + "search_line": 605, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1ae3853125075952f0d3e547425a97c1eec0ee10b7619229443db7020ff4485f", + "line": 587, + "resource_type": "aws_instance", + "resource_name": "example-instance-65", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example65}}]", + "search_line": 587, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "30a699aa864e23554a1ccc896e7d582260e0fd013f3b30cf290f25b36c2025bf", + "line": 7517, + "resource_type": "aws_instance", + "resource_name": "example-instance-835", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example835}}]", + "search_line": 7517, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e8d3f08fa051aa8f054c87f09c863fc7f7ff8404f4236abfd8378292cb40141f", + "line": 2711, + "resource_type": "aws_instance", + "resource_name": "example-instance-301", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example301}}]", + "search_line": 2711, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dd411f99ec4beb329c511277bfee711160e6d0757cb4427efcffd434c97f30cb", + "line": 3422, + "resource_type": "aws_instance", + "resource_name": "example-instance-380", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example380}}]", + "search_line": 3422, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6d39fd780eeb255a850e800991eeee23bbba52260582c52ca4785577d31e2b16", + "line": 4340, + "resource_type": "aws_instance", + "resource_name": "example-instance-482", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example482}}]", + "search_line": 4340, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8f7337e09bb386dd18294bdfe72f750d91a9c856d4ac6f0cd4b4e375cf19d2d9", + "line": 5177, + "resource_type": "aws_instance", + "resource_name": "example-instance-575", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example575}}]", + "search_line": 5177, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a0c00143adcb6de541befb3b9ccee3c293fc014cdaa7a9f60d5a680fb2d05b3f", + "line": 7904, + "resource_type": "aws_instance", + "resource_name": "example-instance-878", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example878}}]", + "search_line": 7904, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9be8ae5874998dbc85028790cdbe685c93cd03a4352d527f2b24f964bc7aad58", + "line": 8579, + "resource_type": "aws_instance", + "resource_name": "example-instance-953", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example953}}]", + "search_line": 8579, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c8fa8e2186f9176a454ff16e3f860cb4cacdb099b0e737bf3126f7b53cf21be5", + "line": 1298, + "resource_type": "aws_instance", + "resource_name": "example-instance-144", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example144}}]", + "search_line": 1298, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "71c2a40fa58903e1aa6eef7ebb70b04a8d240fe50f4ae2a328dd94aa299a99af", + "line": 3476, + "resource_type": "aws_instance", + "resource_name": "example-instance-386", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example386}}]", + "search_line": 3476, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f31cbfb4b72082a7a0568aa60f2ce65324ff214c703f39ba6defcfe058b4c041", + "line": 7436, + "resource_type": "aws_instance", + "resource_name": "example-instance-826", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example826}}]", + "search_line": 7436, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cd0848414e57493913c8864056bcc48adf9de2d93d794ef1ea8320df3ca6e1fb", + "line": 3089, + "resource_type": "aws_instance", + "resource_name": "example-instance-343", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example343}}]", + "search_line": 3089, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a91efcd251402cfd7e44b450d45756f77f746a31ddd17773c8f6fe242e5244a1", + "line": 2783, + "resource_type": "aws_instance", + "resource_name": "example-instance-309", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example309}}]", + "search_line": 2783, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cd3d390b2f2a98c24bf5dda3e219771acb7023a3d444a388b968b7d7cdd7cea9", + "line": 2792, + "resource_type": "aws_instance", + "resource_name": "example-instance-310", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example310}}]", + "search_line": 2792, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3664c7d8634c2980ba0a5c016b6fb5ad7b1447722db272b73fd8a6ec1f705265", + "line": 7490, + "resource_type": "aws_instance", + "resource_name": "example-instance-832", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example832}}]", + "search_line": 7490, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "785571581909d0697ee3b5a427db1c6b75314ff5f9f2767fde7c4c3f614b75bf", + "line": 7967, + "resource_type": "aws_instance", + "resource_name": "example-instance-885", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example885}}]", + "search_line": 7967, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8dc83e04dd556d1d1d979cb58acad774a338e2842f3021540ec6d58a0014cf79", + "line": 2036, + "resource_type": "aws_instance", + "resource_name": "example-instance-226", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example226}}]", + "search_line": 2036, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c02694aed7a63aeecbb66cbf36116bc3128b2105d0e88f2618c8190daa9cef1d", + "line": 5600, + "resource_type": "aws_instance", + "resource_name": "example-instance-622", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example622}}]", + "search_line": 5600, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bf788816864e47ae685dc09b94bf717b816fd9506ec147d963453617f9f5da45", + "line": 8381, + "resource_type": "aws_instance", + "resource_name": "example-instance-931", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example931}}]", + "search_line": 8381, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9b47ad139c7bc22f55a6059f176cfc2d9f9b24311aced36811a4f2c77e973aa8", + "line": 6851, + "resource_type": "aws_instance", + "resource_name": "example-instance-761", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example761}}]", + "search_line": 6851, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9c3ea7e2a71794b1038a0601868e549c4ff80dab6f9eb2129f173ed0abaea23a", + "line": 7625, + "resource_type": "aws_instance", + "resource_name": "example-instance-847", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example847}}]", + "search_line": 7625, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c8aa0af9f98027c1b69aa17bf51929e249392c2bc75cdfcf2209df3dd91ce157", + "line": 1073, + "resource_type": "aws_instance", + "resource_name": "example-instance-119", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example119}}]", + "search_line": 1073, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "22505b0f816c7e1544aed97b89bae68cb3a9a68c1b36769fcedf684314d3e2c7", + "line": 1271, + "resource_type": "aws_instance", + "resource_name": "example-instance-141", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example141}}]", + "search_line": 1271, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f33eea75479b654ed3e276c44ff925abc03c7bf013959bc531ccd34a5a082af1", + "line": 2882, + "resource_type": "aws_instance", + "resource_name": "example-instance-320", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example320}}]", + "search_line": 2882, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2d7be95434be20b8a78a612e5cad64a513482e28e928e18cdc349f1362b2716d", + "line": 5573, + "resource_type": "aws_instance", + "resource_name": "example-instance-619", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example619}}]", + "search_line": 5573, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ccd847ae2e4adb2cfc47e881733392319e6d12a157c0d632157fdc2f2566b593", + "line": 686, + "resource_type": "aws_instance", + "resource_name": "example-instance-76", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example76}}]", + "search_line": 686, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7148ea5c1667b42df66deb375b08d5b81070df390af2e8509d9168096cb45f62", + "line": 3359, + "resource_type": "aws_instance", + "resource_name": "example-instance-373", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example373}}]", + "search_line": 3359, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "43b9adb01799549437f4938defc30adaf5201b4ac65d418669110142fd790d65", + "line": 5375, + "resource_type": "aws_instance", + "resource_name": "example-instance-597", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example597}}]", + "search_line": 5375, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "60dc08ec93ae4d47fd29f4e22c492533e51a8587644dba9df56dbec69a3feade", + "line": 8129, + "resource_type": "aws_instance", + "resource_name": "example-instance-903", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example903}}]", + "search_line": 8129, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7a4602bb1285ac6d05b9e627802560cc8dd87ba9878f628763d2d44b1cf700b5", + "line": 4565, + "resource_type": "aws_instance", + "resource_name": "example-instance-507", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example507}}]", + "search_line": 4565, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e0e22dbaa0fcd8f262a307967852b608af926c0597ea0298209e981b5a6d210b", + "line": 8849, + "resource_type": "aws_instance", + "resource_name": "example-instance-983", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example983}}]", + "search_line": 8849, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "72c0e773bf28befd75330a0baeb90b93634f1648768ff93a59f6f00e0d3e0747", + "line": 5789, + "resource_type": "aws_instance", + "resource_name": "example-instance-643", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example643}}]", + "search_line": 5789, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ed4ec168d27460a287f8d3a80d2c6ff6dafae990f70692c967110de178fad18a", + "line": 8696, + "resource_type": "aws_instance", + "resource_name": "example-instance-966", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example966}}]", + "search_line": 8696, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0a0cb7f56f2765ee07f86e228bf37fea351f3fcbc213034f4b2fc16858e6090c", + "line": 8858, + "resource_type": "aws_instance", + "resource_name": "example-instance-984", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example984}}]", + "search_line": 8858, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "05332b0f93bbd724327796044d2ff049d31fa42e7b4a5ab94b527fd027a054fc", + "line": 4619, + "resource_type": "aws_instance", + "resource_name": "example-instance-513", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example513}}]", + "search_line": 4619, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3be25b0d09120d675f759c848856e483240a85ac384cad2e16e3b249f28e1f64", + "line": 8561, + "resource_type": "aws_instance", + "resource_name": "example-instance-951", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example951}}]", + "search_line": 8561, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d91879b7aa489f7b9a1b2bdf9c207a22fc417d7960a278cca55751117ff4cb0d", + "line": 1037, + "resource_type": "aws_instance", + "resource_name": "example-instance-115", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example115}}]", + "search_line": 1037, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9a3a2825e8ba77cba1d1611af95425b07a7b90c4eabec1055ffb3c72f916f5ab", + "line": 6833, + "resource_type": "aws_instance", + "resource_name": "example-instance-759", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example759}}]", + "search_line": 6833, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "80754f77496ea781d3ed4a13f80f42f471eabf1d26487274f8903ce809d5de1b", + "line": 7661, + "resource_type": "aws_instance", + "resource_name": "example-instance-851", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example851}}]", + "search_line": 7661, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fc68a5e8836713a94bd43e065e3c378dae033734bfd67189f270aeee401a5e97", + "line": 2999, + "resource_type": "aws_instance", + "resource_name": "example-instance-333", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example333}}]", + "search_line": 2999, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "22c28df983eb8b6e3619d1be5f51cdbc4ce7a0d4f01efb16e6a9f03c751efe5e", + "line": 3206, + "resource_type": "aws_instance", + "resource_name": "example-instance-356", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example356}}]", + "search_line": 3206, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f75a698ed67f43b40df2fc0ab9def21c4472fb499fba661f4e00c14924bb0054", + "line": 8363, + "resource_type": "aws_instance", + "resource_name": "example-instance-929", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example929}}]", + "search_line": 8363, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "12285dc1949f7f9df17a15036c35054f9dbb23ebdd84cb2bf9445a05d1aa0a2c", + "line": 2450, + "resource_type": "aws_instance", + "resource_name": "example-instance-272", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example272}}]", + "search_line": 2450, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1bbd29712a62fb59a66136499b79aa1defe8c01b2ff12581e3178f862f7b33c0", + "line": 281, + "resource_type": "aws_instance", + "resource_name": "example-instance-31", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example31}}]", + "search_line": 281, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "76f498809f1f501e887350eb0e51d6394bd00eca1ee09b29cef3b6442b7068e8", + "line": 6374, + "resource_type": "aws_instance", + "resource_name": "example-instance-708", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example708}}]", + "search_line": 6374, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c581e6c4a5b803cf1147ae4674e6b5b12ab5f2b222f86bd8e354fbca0ce87839", + "line": 893, + "resource_type": "aws_instance", + "resource_name": "example-instance-99", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example99}}]", + "search_line": 893, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b0cbb695854fadbd36906275c401b57ab5e5856a77c74a96fdb64e7f42b52a43", + "line": 1325, + "resource_type": "aws_instance", + "resource_name": "example-instance-147", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example147}}]", + "search_line": 1325, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8bce75a8cb6704757d2304afb7a0872f4f0192cd3bbd8c50039af21f907002e9", + "line": 6779, + "resource_type": "aws_instance", + "resource_name": "example-instance-753", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example753}}]", + "search_line": 6779, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c5a726fc62eb4390bf661e0361f376f256a6398d9dfc5312f898e4055db51a05", + "line": 2918, + "resource_type": "aws_instance", + "resource_name": "example-instance-324", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example324}}]", + "search_line": 2918, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "77837a019272c310362c74fb0e0304acb46e7b7f95698d4ac0ec16d9972b5bd9", + "line": 5798, + "resource_type": "aws_instance", + "resource_name": "example-instance-644", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example644}}]", + "search_line": 5798, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cc386ffdf52df3ef36b180964fcf734252be87a7fd6ad21fcb9203fd23caf53e", + "line": 5258, + "resource_type": "aws_instance", + "resource_name": "example-instance-584", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example584}}]", + "search_line": 5258, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1a488619da3d4583fc6619f99d20a4ce7f4aa2b260ad8b5978ac2204373499b3", + "line": 8507, + "resource_type": "aws_instance", + "resource_name": "example-instance-945", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example945}}]", + "search_line": 8507, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "79ade477a5d62c001bca4b8a8c597eee008dfb26e5ff880f169932b4f272ea23", + "line": 2252, + "resource_type": "aws_instance", + "resource_name": "example-instance-250", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example250}}]", + "search_line": 2252, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "df9d65dd1ba10109502ca126424dcd2390035ba177a321a5af9ae3656a579801", + "line": 1667, + "resource_type": "aws_instance", + "resource_name": "example-instance-185", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example185}}]", + "search_line": 1667, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "609f44df642de37bcfcebe68349914a1697c1365b1ce4f0db37439de3526f8ad", + "line": 5618, + "resource_type": "aws_instance", + "resource_name": "example-instance-624", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example624}}]", + "search_line": 5618, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "914313807faf75bff61a343910fb91246f23297cdd8bc9056a728a97b33396b0", + "line": 6527, + "resource_type": "aws_instance", + "resource_name": "example-instance-725", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example725}}]", + "search_line": 6527, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3514111da93055fcb3dc4a710811435859cfc18e76cdc762b47ecc6f425762b4", + "line": 6716, + "resource_type": "aws_instance", + "resource_name": "example-instance-746", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example746}}]", + "search_line": 6716, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "434333cb6f41a7a3addd9338481e443d0f394ef73b5023b9136eda8ee8077841", + "line": 1064, + "resource_type": "aws_instance", + "resource_name": "example-instance-118", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example118}}]", + "search_line": 1064, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1ed10a7a329de0903c0d543966750d59724ac0a126f1cf682ca039d3d108de2c", + "line": 6806, + "resource_type": "aws_instance", + "resource_name": "example-instance-756", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example756}}]", + "search_line": 6806, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "880fc53b777a72e7146e439a7aee9e47fba3ca1150b5ed5d05d845d09587151b", + "line": 6914, + "resource_type": "aws_instance", + "resource_name": "example-instance-768", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example768}}]", + "search_line": 6914, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b76d201d835b051d0d5f9b570c36995bd7d918a830834263a43094a605f8bff9", + "line": 5303, + "resource_type": "aws_instance", + "resource_name": "example-instance-589", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example589}}]", + "search_line": 5303, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "17c1aebccfe99e536a406786b71a05d4feb5bc188a3ad046347340a9fd57085e", + "line": 8048, + "resource_type": "aws_instance", + "resource_name": "example-instance-894", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example894}}]", + "search_line": 8048, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "78f09a31d008fceb1ddff9786b0df79613169d6dbc3a1f84caf6c5b2d667a894", + "line": 137, + "resource_type": "aws_instance", + "resource_name": "example-instance-15", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example15}}]", + "search_line": 137, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0f1a793e015f03d61aaacc2dedb8ff3dd924e99f652770af1445bfd440c51a01", + "line": 2810, + "resource_type": "aws_instance", + "resource_name": "example-instance-312", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example312}}]", + "search_line": 2810, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "da783c12abdc997a8a5a95b8788c4540cd6292ed32b1ec099b60eae2de7236b5", + "line": 8705, + "resource_type": "aws_instance", + "resource_name": "example-instance-967", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example967}}]", + "search_line": 8705, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6700460e4c5120ad3b89ba8908d0a3502751d150abe447c5a39fdde5e5a4294a", + "line": 8966, + "resource_type": "aws_instance", + "resource_name": "example-instance-996", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example996}}]", + "search_line": 8966, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "37d2ef4a0f8568d2fc669e914199a6fe2ade68890c6120574b53cd662f9851c6", + "line": 1964, + "resource_type": "aws_instance", + "resource_name": "example-instance-218", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example218}}]", + "search_line": 1964, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "514d16f73341d05f6296aef50e8a00d950b337a39c4fe0fd0bc10d98a529d084", + "line": 4187, + "resource_type": "aws_instance", + "resource_name": "example-instance-465", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example465}}]", + "search_line": 4187, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b5c0c39ae985b940ddd0569d6ed0b2040e4d5b2cb24e42739ca92a4b8f766e50", + "line": 7211, + "resource_type": "aws_instance", + "resource_name": "example-instance-801", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example801}}]", + "search_line": 7211, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "525782c40f957dd2ec1c3318a9bffd9faeae1ebf1fe28ae83b74fb9cca6c1055", + "line": 1595, + "resource_type": "aws_instance", + "resource_name": "example-instance-177", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example177}}]", + "search_line": 1595, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1ae0635d29d8bc43c78f49b8f935d8974fb55e15390cd606e8992af140166724", + "line": 3188, + "resource_type": "aws_instance", + "resource_name": "example-instance-354", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example354}}]", + "search_line": 3188, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f170bf3c136c4fb148b11ebb009f17645615566a9f4e629254815ac318831ef7", + "line": 7328, + "resource_type": "aws_instance", + "resource_name": "example-instance-814", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example814}}]", + "search_line": 7328, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f8762454669a561983eb1d5ea7a9262b40fd2810914ef65100155293139c3e77", + "line": 2261, + "resource_type": "aws_instance", + "resource_name": "example-instance-251", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example251}}]", + "search_line": 2261, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2538a715978e0af7d7591b15e81ae1b8794211cbad43220ae8fe7f3dfbe6a652", + "line": 3386, + "resource_type": "aws_instance", + "resource_name": "example-instance-376", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example376}}]", + "search_line": 3386, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "18e5c55c2e1f44b1a1e3f0047708d2ed8f20e5e262fc7e17d55161c395f174a9", + "line": 7463, + "resource_type": "aws_instance", + "resource_name": "example-instance-829", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example829}}]", + "search_line": 7463, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c22fddd9060c87e175dcad6cc3670f7119cf02ef8660778c19d35cff84cc85b5", + "line": 5393, + "resource_type": "aws_instance", + "resource_name": "example-instance-599", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example599}}]", + "search_line": 5393, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8572c1a49bc14cd356a87a4a13ffaec137895c4ff3262ab15159c26fda985a94", + "line": 7688, + "resource_type": "aws_instance", + "resource_name": "example-instance-854", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example854}}]", + "search_line": 7688, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f8ddf4b53e2ae85cd14adb181990f6878772fb469c70d8400edf24b1c0e77d3a", + "line": 8714, + "resource_type": "aws_instance", + "resource_name": "example-instance-968", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example968}}]", + "search_line": 8714, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4bc74d87af32157327328f968afe2a59b8a81023b97108b3e058a523c2760348", + "line": 4331, + "resource_type": "aws_instance", + "resource_name": "example-instance-481", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example481}}]", + "search_line": 4331, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "194404f3e6d239626752a0e73ea87b99cd9afde4b282988c9680e246b8521f67", + "line": 4592, + "resource_type": "aws_instance", + "resource_name": "example-instance-510", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example510}}]", + "search_line": 4592, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7505632f54b5ffe04126ad68c5513fc6aea0b8ae178b4a6b14d4332fee68d380", + "line": 3404, + "resource_type": "aws_instance", + "resource_name": "example-instance-378", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example378}}]", + "search_line": 3404, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "88b4e5f57bbf52d10ed6e6e5247a6022d6a180e028497070131689dbfb5258b9", + "line": 596, + "resource_type": "aws_instance", + "resource_name": "example-instance-66", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example66}}]", + "search_line": 596, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "50ffbeb633eb0d2e3b6e87e39ef33a34095ca0699713019b222a5ffd8d4417c9", + "line": 569, + "resource_type": "aws_instance", + "resource_name": "example-instance-63", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example63}}]", + "search_line": 569, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6063d0c8ace163a19354e72e1a4bc3309c9305651c9d28dca5f299a3b0d93e3f", + "line": 5321, + "resource_type": "aws_instance", + "resource_name": "example-instance-591", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example591}}]", + "search_line": 5321, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1179fb3d3f94e4776bf6d071099921efc62da4811f6871e8a69c1704b28f90e5", + "line": 758, + "resource_type": "aws_instance", + "resource_name": "example-instance-84", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example84}}]", + "search_line": 758, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cf1357fb329ab948d84baa03d9ebabaed2bc3931f7d201b2ab97c2f3b0ecfdad", + "line": 8678, + "resource_type": "aws_instance", + "resource_name": "example-instance-964", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example964}}]", + "search_line": 8678, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f2bb7565c330e77f9a92ced43edf2230e1541b8dc4bf7f75532e9270d870e705", + "line": 6284, + "resource_type": "aws_instance", + "resource_name": "example-instance-698", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example698}}]", + "search_line": 6284, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "17f1c880d4193b2d64576c21238bbee10eb9644d753b437198051b3984d35b03", + "line": 2495, + "resource_type": "aws_instance", + "resource_name": "example-instance-277", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example277}}]", + "search_line": 2495, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ee124bb69d408e13a7db2aac585b52b649f825934f6469f45b36de83e099d5a4", + "line": 4403, + "resource_type": "aws_instance", + "resource_name": "example-instance-489", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example489}}]", + "search_line": 4403, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a7946bbbfced877bf90f95a560f4e51eeddf38feeec5cfec813b57663678664b", + "line": 6437, + "resource_type": "aws_instance", + "resource_name": "example-instance-715", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example715}}]", + "search_line": 6437, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5cb03c56dd9ce28c59c8630c8ac32a56036feea58f6908ab32c23f7c18bd11f9", + "line": 3764, + "resource_type": "aws_instance", + "resource_name": "example-instance-418", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example418}}]", + "search_line": 3764, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "41dcaafa339126392780f66fc8bf13fd7613f9d6c80145bb8c6b1ea1bfda6db7", + "line": 56, + "resource_type": "aws_instance", + "resource_name": "example-instance-6", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example6}}]", + "search_line": 56, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ab329b281b61b661818af9da96f6e6a081f5c818ac7a82d10ba080feec0ff1f6", + "line": 5951, + "resource_type": "aws_instance", + "resource_name": "example-instance-661", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example661}}]", + "search_line": 5951, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bc63cf6ddc467da48d332c51e6e962a3aa7189cf08b52ea032d3328962c0eca3", + "line": 6041, + "resource_type": "aws_instance", + "resource_name": "example-instance-671", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example671}}]", + "search_line": 6041, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "53a073f80828f1bbea34148951e891ac7f0add9e5df8fe1967b08a6376a7c344", + "line": 1019, + "resource_type": "aws_instance", + "resource_name": "example-instance-113", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example113}}]", + "search_line": 1019, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "03508b2268c1d5d01313a806212ac578eef4b4c240a00cf622cdb198d909c45e", + "line": 1100, + "resource_type": "aws_instance", + "resource_name": "example-instance-122", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example122}}]", + "search_line": 1100, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "794b7e6f12a0b8cde059c9de72362e725abc325878e0529da6f98da8b77c3a5e", + "line": 2828, + "resource_type": "aws_instance", + "resource_name": "example-instance-314", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example314}}]", + "search_line": 2828, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "85a92dc38c99e4b37e25776a6b3b89e4d89fec83222613f74f37bdec4b800f76", + "line": 299, + "resource_type": "aws_instance", + "resource_name": "example-instance-33", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example33}}]", + "search_line": 299, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b7725f80135dc1d58ba83aa3ea2819b4f62f39552394e1264ab0e1afeb3c39b8", + "line": 4394, + "resource_type": "aws_instance", + "resource_name": "example-instance-488", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example488}}]", + "search_line": 4394, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "520ed483a9b0685f926b03c33a5dc690870252b115357c0562444238014cc8cc", + "line": 3548, + "resource_type": "aws_instance", + "resource_name": "example-instance-394", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example394}}]", + "search_line": 3548, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7776acf590c344b4e287b6dfe4086182cf314d9a3eb9e711494d787c89a9bc9a", + "line": 3656, + "resource_type": "aws_instance", + "resource_name": "example-instance-406", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example406}}]", + "search_line": 3656, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "85fc0cbaea0a79e11bebd14e23816fd63f6ad930c62d91cc896f2a4c4b7831c8", + "line": 8633, + "resource_type": "aws_instance", + "resource_name": "example-instance-959", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example959}}]", + "search_line": 8633, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6b1a864cf85e65400a390f1606e594899a149f50a56d513b0b3f681a7c2953c3", + "line": 2351, + "resource_type": "aws_instance", + "resource_name": "example-instance-261", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example261}}]", + "search_line": 2351, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "00e0079806c4d2a323de470023429297ddc8334807d039e6ef0db47ea228292b", + "line": 308, + "resource_type": "aws_instance", + "resource_name": "example-instance-34", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example34}}]", + "search_line": 308, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "049e0ac39f973e4da5e0bb85ce025fdfec04f65ff195f52dff24b8c56092682e", + "line": 3098, + "resource_type": "aws_instance", + "resource_name": "example-instance-344", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example344}}]", + "search_line": 3098, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dbe15468442f1bd1e2842cd89ef02bdacde04eeaccaa7d25c225c924753814ed", + "line": 5591, + "resource_type": "aws_instance", + "resource_name": "example-instance-621", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example621}}]", + "search_line": 5591, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e6cfe3a05c4bab1fb9dd01e8e167252c502c27fb64ac5a3ba67351dd10e16c90", + "line": 6131, + "resource_type": "aws_instance", + "resource_name": "example-instance-681", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example681}}]", + "search_line": 6131, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "96c35ef36d83f58eec6aa9e542f26055814f01cf7ef4f18030709a153be20455", + "line": 8039, + "resource_type": "aws_instance", + "resource_name": "example-instance-893", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example893}}]", + "search_line": 8039, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4b2f6768820fe1fc1c4da676706beac5bfcd8c52c13041f7d8d705f04f7aa5ae", + "line": 5771, + "resource_type": "aws_instance", + "resource_name": "example-instance-641", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example641}}]", + "search_line": 5771, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bfad76081efdbc59557a64d5d1a2849099cd6b0356081f50c56d7b328c77e5c6", + "line": 7877, + "resource_type": "aws_instance", + "resource_name": "example-instance-875", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example875}}]", + "search_line": 7877, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ceb4767d9a233cb25697efed10652f0a57db042db0007c0f8cbb36d589300fa0", + "line": 2180, + "resource_type": "aws_instance", + "resource_name": "example-instance-242", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example242}}]", + "search_line": 2180, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "79402d16260628de3a3d1010ad69e18c22ce5603b7e537be9635d620fa52400b", + "line": 2909, + "resource_type": "aws_instance", + "resource_name": "example-instance-323", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example323}}]", + "search_line": 2909, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c9c4804917b4558a68e71b827d6a9fb382f87013b944e47c6d72ad537eb35055", + "line": 7760, + "resource_type": "aws_instance", + "resource_name": "example-instance-862", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example862}}]", + "search_line": 7760, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a13810931410a5197c6430d895c94a7eab3b266d41a0cfbc4c6b6d13d46d922e", + "line": 4421, + "resource_type": "aws_instance", + "resource_name": "example-instance-491", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example491}}]", + "search_line": 4421, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a7ac6e27b12adac8d79fa15549a3739eecb86fcad948ccb5e47bb91e414d6270", + "line": 8804, + "resource_type": "aws_instance", + "resource_name": "example-instance-978", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example978}}]", + "search_line": 8804, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4c63459c47ff5571b7c1d0b2b1943f09ee4bb4f220aa60672accc0d0b8a78e86", + "line": 8894, + "resource_type": "aws_instance", + "resource_name": "example-instance-988", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example988}}]", + "search_line": 8894, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "512c9fab58c0b67f62d320e0c53f09edd4c417db975156dbdefa22b5269b6df0", + "line": 8984, + "resource_type": "aws_instance", + "resource_name": "example-instance-998", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example998}}]", + "search_line": 8984, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0cdcf2d0611b0e23bb7b5778743513a659321fa28fdb426d993dbba74a1970eb", + "line": 2162, + "resource_type": "aws_instance", + "resource_name": "example-instance-240", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example240}}]", + "search_line": 2162, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e6ae3855d24876446a1770df83ef000ff4c288e387d01604810e82d201ceeefd", + "line": 7778, + "resource_type": "aws_instance", + "resource_name": "example-instance-864", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example864}}]", + "search_line": 7778, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0129af4970b10d76f32a227024ef102a2c33bc62a429fa0782ae2ad51eb001af", + "line": 4169, + "resource_type": "aws_instance", + "resource_name": "example-instance-463", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example463}}]", + "search_line": 4169, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1a297ad8c0bd1342ed55c880f0a13e8cd7118339225ed3f2bb01b38a411909d2", + "line": 875, + "resource_type": "aws_instance", + "resource_name": "example-instance-97", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example97}}]", + "search_line": 875, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a2d3e18d23f3e09fc7f73393966d1b50245a450b5370db40801091dff7acf3b5", + "line": 425, + "resource_type": "aws_instance", + "resource_name": "example-instance-47", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example47}}]", + "search_line": 425, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ce64d350d990fe1a2bd8dd61bd3bda254938905c021845533b61aae8265f3ddb", + "line": 4862, + "resource_type": "aws_instance", + "resource_name": "example-instance-540", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example540}}]", + "search_line": 4862, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "842d6a93760a3b003556f7d7b944425bb8decb3558f59c72fadc9cf9c2c80deb", + "line": 4088, + "resource_type": "aws_instance", + "resource_name": "example-instance-454", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example454}}]", + "search_line": 4088, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7b30ae8a96513b63804126dfd30746e6b674a188faffb9336c180339280c3e38", + "line": 8183, + "resource_type": "aws_instance", + "resource_name": "example-instance-909", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example909}}]", + "search_line": 8183, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1883c0b00f05dd49d0acc51c85680b0822cbda76706dcc711d5e63a414dd7633", + "line": 5447, + "resource_type": "aws_instance", + "resource_name": "example-instance-605", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example605}}]", + "search_line": 5447, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "508a52d09549c5c37be40d58cfd2e41651b907d6c2d4ee1c702287adf6b06e5e", + "line": 7733, + "resource_type": "aws_instance", + "resource_name": "example-instance-859", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example859}}]", + "search_line": 7733, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "43d9cbec6c0099ea0c88c34c7e93554e32bf4ea67d406fc6036cc3d74b41821b", + "line": 3503, + "resource_type": "aws_instance", + "resource_name": "example-instance-389", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example389}}]", + "search_line": 3503, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "35169397ca3366e549ab4d55bab09122404cd73b0c51c0df3a40ac66982a9a08", + "line": 5834, + "resource_type": "aws_instance", + "resource_name": "example-instance-648", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example648}}]", + "search_line": 5834, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8e2578081ff5b99611df31e20aa48052b78676f74677a679b15cd7cc8c7c1070", + "line": 1514, + "resource_type": "aws_instance", + "resource_name": "example-instance-168", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example168}}]", + "search_line": 1514, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2c4a8a59fa70c07342eac48c8ea71ef2d566fc5eb20838a8398afe3f0b791b78", + "line": 1568, + "resource_type": "aws_instance", + "resource_name": "example-instance-174", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example174}}]", + "search_line": 1568, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "14107584e3e66994f1f05fc3259f1ccdf886e1888febab78cfd02f9f4dd7d38f", + "line": 182, + "resource_type": "aws_instance", + "resource_name": "example-instance-20", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example20}}]", + "search_line": 182, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0df3da37e7d5ad3843c6dd4936240eac8be61e1e006424f64957a959bc130354", + "line": 7472, + "resource_type": "aws_instance", + "resource_name": "example-instance-830", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example830}}]", + "search_line": 7472, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7e1dbfba0a2101b0c319479fa12dc89bb549fbfa4cb9e2c5f5a737e127d8fbbd", + "line": 8210, + "resource_type": "aws_instance", + "resource_name": "example-instance-912", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example912}}]", + "search_line": 8210, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6b0953114a3538ec7a84e7350019e3c97a228023a70a4f7fbe17096f361723cc", + "line": 1766, + "resource_type": "aws_instance", + "resource_name": "example-instance-196", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example196}}]", + "search_line": 1766, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0dbbe6b8466c81a2452aefc987b574c274f2cf09404a26f13be2d6200b254766", + "line": 3170, + "resource_type": "aws_instance", + "resource_name": "example-instance-352", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example352}}]", + "search_line": 3170, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "35f6b88906407b72690055cdc94706b76ea7972956fc013ccc9f3938c30ca8a5", + "line": 7859, + "resource_type": "aws_instance", + "resource_name": "example-instance-873", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example873}}]", + "search_line": 7859, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1018e9e9a6029d2faa013ea4f6caac7652b4bfd5530e1dab0feaa2f4804c4868", + "line": 7175, + "resource_type": "aws_instance", + "resource_name": "example-instance-797", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example797}}]", + "search_line": 7175, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "56693bb8d4ae02daf38dbb6579a58428c733df4614143ec7e136ba42188440bf", + "line": 7229, + "resource_type": "aws_instance", + "resource_name": "example-instance-803", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example803}}]", + "search_line": 7229, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b92120b4098e3fe3c1181a7d741ab02912db39925bf9d7fe22bddbd545118126", + "line": 3665, + "resource_type": "aws_instance", + "resource_name": "example-instance-407", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example407}}]", + "search_line": 3665, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "31a694605a96356cf793361c702326c1586575823ff127a903ba5867eb36ce00", + "line": 4484, + "resource_type": "aws_instance", + "resource_name": "example-instance-498", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example498}}]", + "search_line": 4484, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e3e98294fb793c0ff914151603ee9935195b6660cddf027aaec4290d082d3bbb", + "line": 7940, + "resource_type": "aws_instance", + "resource_name": "example-instance-882", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example882}}]", + "search_line": 7940, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ecc1277caddb08d7c5defef4143aebd5b659c05fb44bb79f690d306c0ff1cdc3", + "line": 2621, + "resource_type": "aws_instance", + "resource_name": "example-instance-291", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example291}}]", + "search_line": 2621, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d94891ed04e464a262e4c1a35dd810abca6f42b09ef8b88555bb50e869452c9c", + "line": 8372, + "resource_type": "aws_instance", + "resource_name": "example-instance-930", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example930}}]", + "search_line": 8372, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "90652122682a412b383def1581b3afd135c212d025c42f45a3abb7112c2e6c79", + "line": 2297, + "resource_type": "aws_instance", + "resource_name": "example-instance-255", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example255}}]", + "search_line": 2297, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ca40709092a2b4c25061d4b0eb3612b31d2154394c8239614e0644c031a6f2e6", + "line": 7769, + "resource_type": "aws_instance", + "resource_name": "example-instance-863", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example863}}]", + "search_line": 7769, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6711dbe8eb952500969473eb9a529f9408959985edcbd3c07a9c10f96e05b640", + "line": 4115, + "resource_type": "aws_instance", + "resource_name": "example-instance-457", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example457}}]", + "search_line": 4115, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ccee032b76c6584edf9033472b0d93d95538303ecd32b0d986d8b05e62e39963", + "line": 1676, + "resource_type": "aws_instance", + "resource_name": "example-instance-186", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example186}}]", + "search_line": 1676, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dfa81eb1b70349946074d11c3dccd4cf8b9476c88c19035bc9c13829a0eb4b24", + "line": 9002, + "resource_type": "aws_instance", + "resource_name": "example-instance-1000", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example1000}}]", + "search_line": 9002, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a5aacc8acc80cff4d9f3c90425912a50810343bbcb4c97c4a47adf60c0a00333", + "line": 6113, + "resource_type": "aws_instance", + "resource_name": "example-instance-679", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example679}}]", + "search_line": 6113, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ebdbb5d3febb31aa4390e09b578565241ba392369d1ba334e43f9f4af1e02549", + "line": 2432, + "resource_type": "aws_instance", + "resource_name": "example-instance-270", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example270}}]", + "search_line": 2432, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bfe20181c8884814bd06f5b6964765c89bd98d649a792b4c1666537577f8495d", + "line": 2216, + "resource_type": "aws_instance", + "resource_name": "example-instance-246", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example246}}]", + "search_line": 2216, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3c01fad21030927c91551551cab7262d4aa15dcbc2ebead2c1712aa3415e0430", + "line": 5645, + "resource_type": "aws_instance", + "resource_name": "example-instance-627", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example627}}]", + "search_line": 5645, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "46f099c5491b25ba2bf90d67f9baa20de1739effab68c2e92c47e9605e79238f", + "line": 7805, + "resource_type": "aws_instance", + "resource_name": "example-instance-867", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example867}}]", + "search_line": 7805, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dab5bb20db3569b66318823071fbc625c1d8db79fa7c37b4f91285d59cc24869", + "line": 1784, + "resource_type": "aws_instance", + "resource_name": "example-instance-198", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example198}}]", + "search_line": 1784, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "56de6f86a77834872c0746665b451d1b5c628fa954cade883b715a76ad669bcf", + "line": 20, + "resource_type": "aws_instance", + "resource_name": "example-instance-2", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example2}}]", + "search_line": 20, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7483b77215471dee3d7c631c662575f90aea59754acd61b352a50d03d42fc5ae", + "line": 1550, + "resource_type": "aws_instance", + "resource_name": "example-instance-172", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example172}}]", + "search_line": 1550, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "73640d5a0772f8a5cb9b62dde916156000e7cfcadd62d0986b998ae8ba6b2aac", + "line": 6869, + "resource_type": "aws_instance", + "resource_name": "example-instance-763", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example763}}]", + "search_line": 6869, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "df582cf18f83739951b27e295fec9b96bd97c6e8f966379e14dcddec1fa3df10", + "line": 3278, + "resource_type": "aws_instance", + "resource_name": "example-instance-364", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example364}}]", + "search_line": 3278, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "376c8ffa0a98cb2054c0e8118825ce021eb29379ef313921e63a230c56485d90", + "line": 4151, + "resource_type": "aws_instance", + "resource_name": "example-instance-461", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example461}}]", + "search_line": 4151, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "067106c3df0488383300c641fa944acc01c9292b700fe086a9c3e4b16abce1bf", + "line": 4097, + "resource_type": "aws_instance", + "resource_name": "example-instance-455", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example455}}]", + "search_line": 4097, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "026c06e3e9469c8b005ae8cda1871ec0132ccdf87153644781c3eab789bf9cf2", + "line": 8822, + "resource_type": "aws_instance", + "resource_name": "example-instance-980", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example980}}]", + "search_line": 8822, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "079756cf787835b59263f3d2c3e9b21aab9327475c9a6ec777ffcb39fb2d0fbd", + "line": 1451, + "resource_type": "aws_instance", + "resource_name": "example-instance-161", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example161}}]", + "search_line": 1451, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "02f9f9993eb1582ef8e502dcb287d82e8a7709ed24101142aaf1f2dbeae63b0e", + "line": 3827, + "resource_type": "aws_instance", + "resource_name": "example-instance-425", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example425}}]", + "search_line": 3827, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5fd9607348ce65c0ff4b5444bf6274387ecbf1e08f857b1bf21730df16402e35", + "line": 6320, + "resource_type": "aws_instance", + "resource_name": "example-instance-702", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example702}}]", + "search_line": 6320, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "45771a56fac55146742ec1194694491482b4c8f331fc6323f6885b90e689aaf5", + "line": 1937, + "resource_type": "aws_instance", + "resource_name": "example-instance-215", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example215}}]", + "search_line": 1937, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bcb9d7202555b4126903e2f36e84b831009b5929f65c1f801fb5734f8472a4c8", + "line": 4880, + "resource_type": "aws_instance", + "resource_name": "example-instance-542", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example542}}]", + "search_line": 4880, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ae2f58eae604a518642829912ad83fbbd3ad2b37289358eeb563a430d2a51afa", + "line": 7265, + "resource_type": "aws_instance", + "resource_name": "example-instance-807", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example807}}]", + "search_line": 7265, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4ccbf18b5e35a6bc362b749ae6340db52d09f3b6cac3bec2709d659b477745f4", + "line": 7886, + "resource_type": "aws_instance", + "resource_name": "example-instance-876", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example876}}]", + "search_line": 7886, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4c7882f6ba784f3ae9e7cdd761ac2d2c1551fe973ad443c52d170c9844718adb", + "line": 1757, + "resource_type": "aws_instance", + "resource_name": "example-instance-195", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example195}}]", + "search_line": 1757, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "de6346212b1483e0d0a028e3888e7dee38b3d238bd91163fa5d9cac0e0a608e8", + "line": 4232, + "resource_type": "aws_instance", + "resource_name": "example-instance-470", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example470}}]", + "search_line": 4232, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d81819d723bd9e88b1ddcd84df8a7bd25395aa125fcc1ad0a833dcb0f78f4c4f", + "line": 4124, + "resource_type": "aws_instance", + "resource_name": "example-instance-458", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example458}}]", + "search_line": 4124, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4e3378fb711a58cf3138249baa2f9dba8f847679b08baa996421acd3bbb520c7", + "line": 6536, + "resource_type": "aws_instance", + "resource_name": "example-instance-726", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example726}}]", + "search_line": 6536, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "79c04cfef001a28a694ff28bdc4871a4153825030e388346f76d8b39ed444b9c", + "line": 146, + "resource_type": "aws_instance", + "resource_name": "example-instance-16", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example16}}]", + "search_line": 146, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7fb913350e43fbf010a328b8a6c8342fed573b2c6db933342f16fa87a4173961", + "line": 4439, + "resource_type": "aws_instance", + "resource_name": "example-instance-493", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example493}}]", + "search_line": 4439, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "76831f83ee287b7dc75b9403d80ddd67b6dabce0a8e09558b90ee8922593f8a4", + "line": 2945, + "resource_type": "aws_instance", + "resource_name": "example-instance-327", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example327}}]", + "search_line": 2945, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9bcf2a5302913596df1c9dc9ae74f7ddc96f5bd24b9090429fd41330355dbca8", + "line": 3836, + "resource_type": "aws_instance", + "resource_name": "example-instance-426", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example426}}]", + "search_line": 3836, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e6c4a6cb88044116d106063abfc03062c1bd067dc5eec66cc6246f8abf18e03f", + "line": 3314, + "resource_type": "aws_instance", + "resource_name": "example-instance-368", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example368}}]", + "search_line": 3314, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "69542d1a73f1055e6fe79b919ef3bfa467a7e91a688d9b1461ca45b05fef711f", + "line": 740, + "resource_type": "aws_instance", + "resource_name": "example-instance-82", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example82}}]", + "search_line": 740, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c0eac6694a2b306359a1f5daadbf7e327a526067c1bed160066b755183cbb0e4", + "line": 8012, + "resource_type": "aws_instance", + "resource_name": "example-instance-890", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example890}}]", + "search_line": 8012, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "daa4e68f949e4dd68f4bb3d63e77a064929dd59cd6e1f75ffe471323f2fe7ae5", + "line": 1307, + "resource_type": "aws_instance", + "resource_name": "example-instance-145", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example145}}]", + "search_line": 1307, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6807e0fb29f83d45b20115a8dd56f0bdbbfdf462c96d9fd182bad95e69c2a132", + "line": 5897, + "resource_type": "aws_instance", + "resource_name": "example-instance-655", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example655}}]", + "search_line": 5897, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2add36b05732e7b600f161f17a847784da6da8bedef536ced83414cddaa2e2ba", + "line": 7301, + "resource_type": "aws_instance", + "resource_name": "example-instance-811", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example811}}]", + "search_line": 7301, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4c26179515f3f318775d40eb8e2d4c55e8fe8b9bde260599faa9ba13bcad45f6", + "line": 2135, + "resource_type": "aws_instance", + "resource_name": "example-instance-237", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example237}}]", + "search_line": 2135, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cb5b0f56711769236682b878bd6328dc7114ddca2dc56262a760da1e7aa8d1e0", + "line": 4637, + "resource_type": "aws_instance", + "resource_name": "example-instance-515", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example515}}]", + "search_line": 4637, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "391509f020c9af383eaa8f5ddad74c77dc1d4ac4578da7ffa256ae2e730fb550", + "line": 5708, + "resource_type": "aws_instance", + "resource_name": "example-instance-634", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example634}}]", + "search_line": 5708, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "aa3ffa94b3b3e4a82baeaa22d86bc794f15303e1c25fd23cabf340c8718e01f3", + "line": 8462, + "resource_type": "aws_instance", + "resource_name": "example-instance-940", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example940}}]", + "search_line": 8462, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "22d2bc67c2f719cb63664175e97aa7c5061e76ee47e4db50943d221256926a16", + "line": 4745, + "resource_type": "aws_instance", + "resource_name": "example-instance-527", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example527}}]", + "search_line": 4745, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ffa80426928a027185b0d687d854a74723a5aa07f0406f55282cbadf4b5ff1cb", + "line": 3557, + "resource_type": "aws_instance", + "resource_name": "example-instance-395", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example395}}]", + "search_line": 3557, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "45ea44dc04f1d59e458525e0ab82ab25145e4d3cde596c96a235e5b874fa8ed4", + "line": 5213, + "resource_type": "aws_instance", + "resource_name": "example-instance-579", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example579}}]", + "search_line": 5213, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1d33e41dd23e6ccbda783d9528bae323530879e2a521fe4b5cafca93a55ebd0d", + "line": 7544, + "resource_type": "aws_instance", + "resource_name": "example-instance-838", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example838}}]", + "search_line": 7544, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "23f6e7e6cc74ce5ac6eea6e97644090d4bcdf7a2c6b5300919692c8b9094d4cf", + "line": 1172, + "resource_type": "aws_instance", + "resource_name": "example-instance-130", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example130}}]", + "search_line": 1172, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cd4adeba3ef0e69662c47cfb389a18a357e48784f7d2546e79a0ffebd97cd2ca", + "line": 5150, + "resource_type": "aws_instance", + "resource_name": "example-instance-572", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example572}}]", + "search_line": 5150, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5cc80586c82a48978eafb4001f10450578c692254c4d1da15b93ca6386ef6230", + "line": 7607, + "resource_type": "aws_instance", + "resource_name": "example-instance-845", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example845}}]", + "search_line": 7607, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dd0c30e4f217c3446b68892f16498a5cd34ee4d7c0a53a7a7ef5367c288c48dc", + "line": 6365, + "resource_type": "aws_instance", + "resource_name": "example-instance-707", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example707}}]", + "search_line": 6365, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7a70eb13160bfddd55015ce75b69ff9d29e7bd900e409743d387434310822d64", + "line": 5753, + "resource_type": "aws_instance", + "resource_name": "example-instance-639", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example639}}]", + "search_line": 5753, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ac879214f2a997d849df71c9bd328051d1e496e5039ed537a061eb380f256dbe", + "line": 5420, + "resource_type": "aws_instance", + "resource_name": "example-instance-602", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example602}}]", + "search_line": 5420, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "64f70beea186f578717264230ace741e194fb4b494c1a2842f61306b76cd98a4", + "line": 2891, + "resource_type": "aws_instance", + "resource_name": "example-instance-321", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example321}}]", + "search_line": 2891, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "13683dec68aae740b091aa386a57587e18014b9eca9e3cc30ab1e4006f4e0d8b", + "line": 5222, + "resource_type": "aws_instance", + "resource_name": "example-instance-580", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example580}}]", + "search_line": 5222, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c3804f160926333185245a4f768cc06c49e132d05f8151eabe6dc3ca18f0630a", + "line": 1118, + "resource_type": "aws_instance", + "resource_name": "example-instance-124", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example124}}]", + "search_line": 1118, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "52d25bb0ad67b7f27cb290a7873ba2d02602faf8ade85fc320b4719e54224469", + "line": 4079, + "resource_type": "aws_instance", + "resource_name": "example-instance-453", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example453}}]", + "search_line": 4079, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3b759999522efb8b8c1516b0f03d4c80664b0ca0889c81427baa1c435660399a", + "line": 470, + "resource_type": "aws_instance", + "resource_name": "example-instance-52", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example52}}]", + "search_line": 470, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "26a3656d322d3e6791f5740a53e1c7fa85bcee6d55df9d9a7977ed76c4be53c5", + "line": 8003, + "resource_type": "aws_instance", + "resource_name": "example-instance-889", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example889}}]", + "search_line": 8003, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "691d2988fe1622a7c947ef6ee1c003cbfb06da2ac8e3a4b68370144ad1f6a130", + "line": 8615, + "resource_type": "aws_instance", + "resource_name": "example-instance-957", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example957}}]", + "search_line": 8615, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9cfbde8ee16c95ff70116710250b5858c9a9a8d1108b9eedad421f2f0fd1db5f", + "line": 695, + "resource_type": "aws_instance", + "resource_name": "example-instance-77", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example77}}]", + "search_line": 695, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "55c0ef85d89f4c9f41b78e56a249028aeefd149501a7ecddda384524ccaf490b", + "line": 6878, + "resource_type": "aws_instance", + "resource_name": "example-instance-764", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example764}}]", + "search_line": 6878, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3e38fa1b760280293a8fd91acf2ac6d2065d16a764c8d07a52bb1c04f365da95", + "line": 1973, + "resource_type": "aws_instance", + "resource_name": "example-instance-219", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example219}}]", + "search_line": 1973, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "99ae6a4884cce18b817a185f3aa077e72a1de01c512355be46595b0d87c2ee03", + "line": 2288, + "resource_type": "aws_instance", + "resource_name": "example-instance-254", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example254}}]", + "search_line": 2288, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d4598b55ac6f9062c198124c8fe18bbfca5d84c8f7a007e9f220b52ada79f9da", + "line": 929, + "resource_type": "aws_instance", + "resource_name": "example-instance-103", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example103}}]", + "search_line": 929, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b04a4f36e633966b99e4b0240a35134f56fb03c54f699b2f104c4df580bbf671", + "line": 4988, + "resource_type": "aws_instance", + "resource_name": "example-instance-554", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example554}}]", + "search_line": 4988, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2d6163216d2062798e5c8f25c45b965aa1b9801682a6ba9f8022a443219ee2e7", + "line": 3638, + "resource_type": "aws_instance", + "resource_name": "example-instance-404", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example404}}]", + "search_line": 3638, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a36e0534a331acfdc0fe15e2381cc63c0f18c2e30cd6d949102c1ea3927c3293", + "line": 7598, + "resource_type": "aws_instance", + "resource_name": "example-instance-844", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example844}}]", + "search_line": 7598, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "34a601e489b903668c5870b8c7e05f37ce42d55e68763b062006420943c3b728", + "line": 7976, + "resource_type": "aws_instance", + "resource_name": "example-instance-886", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example886}}]", + "search_line": 7976, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a75d2b611a8cde7aec959398e04abeaf1e5d5acca2e84fbc19d64f2521eb5d4c", + "line": 8345, + "resource_type": "aws_instance", + "resource_name": "example-instance-927", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example927}}]", + "search_line": 8345, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "60bf408061ad9766cc1371a46eb505a207d7b5176538671ac7e4beabd2ae4c1d", + "line": 2306, + "resource_type": "aws_instance", + "resource_name": "example-instance-256", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example256}}]", + "search_line": 2306, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "29726388f430b46632c8b436c140ac6e3d07623e8d1ce94dadd553e1b761e468", + "line": 2504, + "resource_type": "aws_instance", + "resource_name": "example-instance-278", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example278}}]", + "search_line": 2504, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "73547344385ceb4e45c545c393565e153ea6d5ea2447984aebbd328e9e1c98f7", + "line": 1262, + "resource_type": "aws_instance", + "resource_name": "example-instance-140", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example140}}]", + "search_line": 1262, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9ea208910b1969257d4d915cdc91c4dba3f58f3a961fa415973e5af2482eb48a", + "line": 1280, + "resource_type": "aws_instance", + "resource_name": "example-instance-142", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example142}}]", + "search_line": 1280, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f41a27b4e3a39c4495d4eda6616cf248e9d07bee767689d43b514aca640ed3de", + "line": 2225, + "resource_type": "aws_instance", + "resource_name": "example-instance-247", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example247}}]", + "search_line": 2225, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a23f42fd8c123f8fc5331bc638b9ff4b58b7d0dc1f51311c5412f416dc93bfb7", + "line": 7256, + "resource_type": "aws_instance", + "resource_name": "example-instance-806", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example806}}]", + "search_line": 7256, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7abf417e038d56e2a9833572ef4083cdab9abd1d69f3e5e4e72d2a290a4adb6c", + "line": 3071, + "resource_type": "aws_instance", + "resource_name": "example-instance-341", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example341}}]", + "search_line": 3071, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "02070646ddd32dfe13e2d501675456ef2aef2a59972b64c050843b65d8aa4c82", + "line": 4223, + "resource_type": "aws_instance", + "resource_name": "example-instance-469", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example469}}]", + "search_line": 4223, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5a530103441bf13a5ca70bcf56260d23f4f0b92e81d21e1f89ad5ee9a8b0e10e", + "line": 8021, + "resource_type": "aws_instance", + "resource_name": "example-instance-891", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example891}}]", + "search_line": 8021, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "adc9289f3519ad347e830e14f5be34e346ae2372c3f83811075bc97d02803830", + "line": 2729, + "resource_type": "aws_instance", + "resource_name": "example-instance-303", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example303}}]", + "search_line": 2729, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "99c37c2376e1b12edbf17a3f539de7e9afc4ed46ea2540f21b4c9ce598442602", + "line": 614, + "resource_type": "aws_instance", + "resource_name": "example-instance-68", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example68}}]", + "search_line": 614, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2d07d30203a2eebceffee26f0a76c5d292d1c4d11277cbd01108eb5cd6aaef80", + "line": 6860, + "resource_type": "aws_instance", + "resource_name": "example-instance-762", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example762}}]", + "search_line": 6860, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2f8cb70f1ff8f03b4cacb1a5dba67d3a9875a823f33262d4eac17b16213b523a", + "line": 1244, + "resource_type": "aws_instance", + "resource_name": "example-instance-138", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example138}}]", + "search_line": 1244, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2a4e14a279d1c002b0709dcf66358cf2f7d012068748560df4abbc5c62c814f7", + "line": 7049, + "resource_type": "aws_instance", + "resource_name": "example-instance-783", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example783}}]", + "search_line": 7049, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dea29c96a5cc104dcc3d5007f4cdbef4be7d0f0ff7d026ff9555d66e2d0b414c", + "line": 3899, + "resource_type": "aws_instance", + "resource_name": "example-instance-433", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example433}}]", + "search_line": 3899, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "933d4b0f195cced87f9a2889a3c4f8ab387f56c0eb8b91d774b120f32ab1fb11", + "line": 3944, + "resource_type": "aws_instance", + "resource_name": "example-instance-438", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example438}}]", + "search_line": 3944, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e8a877e201136b9809007e7606eaedb7d6c2d394ab0e3881dcbe263707bb8591", + "line": 911, + "resource_type": "aws_instance", + "resource_name": "example-instance-101", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example101}}]", + "search_line": 911, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0dc10a7105fbca96a1e9ff22fc234e7c75fd4fe5d33f52145a645d24fdc72335", + "line": 65, + "resource_type": "aws_instance", + "resource_name": "example-instance-7", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example7}}]", + "search_line": 65, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7da176b19fa4cc3392e0be255539e1c6ca3fc87e3571bb98d5b6c9721cafb173", + "line": 164, + "resource_type": "aws_instance", + "resource_name": "example-instance-18", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example18}}]", + "search_line": 164, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5af57a82df11a57901617796b93d72ade18a843cc1578faab2f920afc9cc0a24", + "line": 3998, + "resource_type": "aws_instance", + "resource_name": "example-instance-444", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example444}}]", + "search_line": 3998, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0bb8e5c21faeb283d7e835430c5b5fc0e0cda7003551a2319e8ec97fbb0982ed", + "line": 7535, + "resource_type": "aws_instance", + "resource_name": "example-instance-837", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example837}}]", + "search_line": 7535, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2b0fbbebf98e3079922362170be109b38af0c6aba712145bf84173d696ceb51c", + "line": 7931, + "resource_type": "aws_instance", + "resource_name": "example-instance-881", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example881}}]", + "search_line": 7931, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e30ca9601ece2ddaeda423677951671ca5d10cb56afaf6157737899e83c4a779", + "line": 6140, + "resource_type": "aws_instance", + "resource_name": "example-instance-682", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example682}}]", + "search_line": 6140, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "99c8c36f573c7ce71fbf56c185f2c3dc7263ee6348d38b63283086fdf28a4abc", + "line": 2018, + "resource_type": "aws_instance", + "resource_name": "example-instance-224", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example224}}]", + "search_line": 2018, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a859578459d6eef2346db0bcb6e91c89714d2816a62f78008ff761dfae0810ba", + "line": 6050, + "resource_type": "aws_instance", + "resource_name": "example-instance-672", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example672}}]", + "search_line": 6050, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4d90803c4a1fc6555cc334abdce99bf55dbd1f19f17e9538be2d423fc3729118", + "line": 7391, + "resource_type": "aws_instance", + "resource_name": "example-instance-821", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example821}}]", + "search_line": 7391, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fce2fc4b2b627276770aafeae05b6528e10c89a8b7c3692e622030dac26ce6fa", + "line": 7085, + "resource_type": "aws_instance", + "resource_name": "example-instance-787", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example787}}]", + "search_line": 7085, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d85a1a1d5215b6f5865b63401a231d9ef449d2a5538e8ed19d66d0a166164302", + "line": 8912, + "resource_type": "aws_instance", + "resource_name": "example-instance-990", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example990}}]", + "search_line": 8912, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a96adad46c3a397bce20bf6c8d4578b647a325db4b16da664922398a6c04dee3", + "line": 4763, + "resource_type": "aws_instance", + "resource_name": "example-instance-529", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example529}}]", + "search_line": 4763, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7097db293e0b482a36f41bf52edea5a1bd84c48b80ff1532dbdcdbda8334a10d", + "line": 5168, + "resource_type": "aws_instance", + "resource_name": "example-instance-574", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example574}}]", + "search_line": 5168, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "63775a99492da35851d703fe0602c5998a03c6badcafe4ff2d8ca2ea76c8877b", + "line": 7031, + "resource_type": "aws_instance", + "resource_name": "example-instance-781", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example781}}]", + "search_line": 7031, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1735af927c97abf192b6edbb1ed8821ea69264da20704e8a37298929629dd9a6", + "line": 1334, + "resource_type": "aws_instance", + "resource_name": "example-instance-148", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example148}}]", + "search_line": 1334, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c307ec57298284bade3c55b5da0d35848d35c14162592f256b0e6e7afda414f2", + "line": 2279, + "resource_type": "aws_instance", + "resource_name": "example-instance-253", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example253}}]", + "search_line": 2279, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7db22a195bfdf26cb1a71e8586e85a465668d6b75f819793534c15c5b9f2fe31", + "line": 6419, + "resource_type": "aws_instance", + "resource_name": "example-instance-713", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example713}}]", + "search_line": 6419, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "92d579450ca443f5f81dc335a090084fd64db91777e4346a26e094ba78a36727", + "line": 5015, + "resource_type": "aws_instance", + "resource_name": "example-instance-557", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example557}}]", + "search_line": 5015, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e1ef98ceb5ef3193eb3e05f4151df00ec4f87d8b3dc570d756d3f9b71859ebc0", + "line": 5744, + "resource_type": "aws_instance", + "resource_name": "example-instance-638", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example638}}]", + "search_line": 5744, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1b5936a8e55d5c0a91ea2867eaaa7b816223f3b3513b3f2f3a53cda57a88ba86", + "line": 5285, + "resource_type": "aws_instance", + "resource_name": "example-instance-587", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example587}}]", + "search_line": 5285, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6635983a4e991d6497e14fe1808c36110751138836e61f16a741c4445a2cfd08", + "line": 1622, + "resource_type": "aws_instance", + "resource_name": "example-instance-180", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example180}}]", + "search_line": 1622, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "063cd21ddf96ab2a0ca75a50a8568d2672507fdd6fa64e1b12cb99734c6b34f8", + "line": 4952, + "resource_type": "aws_instance", + "resource_name": "example-instance-550", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example550}}]", + "search_line": 4952, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2ac02f10bc2a05af40af6d7a70ac5e733abd280d267f3d81c11f989b1e8a5031", + "line": 7319, + "resource_type": "aws_instance", + "resource_name": "example-instance-813", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example813}}]", + "search_line": 7319, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8d6e98acf8d51506b4400b7c593029c3d57f4f02bfcf54af5ea11443d963b25b", + "line": 5402, + "resource_type": "aws_instance", + "resource_name": "example-instance-600", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example600}}]", + "search_line": 5402, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7ff3e0da23cf7f66c40886bca38abc23ed60bc8e294e0b6c95ca8e329eb45ccf", + "line": 2639, + "resource_type": "aws_instance", + "resource_name": "example-instance-293", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example293}}]", + "search_line": 2639, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "25a1c440ae1bcf8b79437c1a85df1744d1dc4add884fc51ef4063d024cb37fde", + "line": 380, + "resource_type": "aws_instance", + "resource_name": "example-instance-42", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example42}}]", + "search_line": 380, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cb4be795d7da8a530ccf3dc2cb468cccb80638e2c659f5363249e45edc70698e", + "line": 2171, + "resource_type": "aws_instance", + "resource_name": "example-instance-241", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example241}}]", + "search_line": 2171, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7090dbda7eed4a2913aee1583dae125a37ac8b0b6b3ddab50067b5f9b1cd2a03", + "line": 6257, + "resource_type": "aws_instance", + "resource_name": "example-instance-695", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example695}}]", + "search_line": 6257, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "88face52f2c5a62d8ac21961413f7e4090457e07d929e80d52ece76ae7bd7c0f", + "line": 1739, + "resource_type": "aws_instance", + "resource_name": "example-instance-193", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example193}}]", + "search_line": 1739, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ae2f8f2028170e9de733c93743b229c2dc9b20fd867d03f1d744f151d203162c", + "line": 3863, + "resource_type": "aws_instance", + "resource_name": "example-instance-429", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example429}}]", + "search_line": 3863, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "75407e14ac813f756607dcc408f6b3b42af40459cfd4b74434973fa9b558514b", + "line": 3881, + "resource_type": "aws_instance", + "resource_name": "example-instance-431", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example431}}]", + "search_line": 3881, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "66b82a54a42dfd84204a34975ed24a8f660f659810b19e2fc0cd5e06a9929722", + "line": 5087, + "resource_type": "aws_instance", + "resource_name": "example-instance-565", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example565}}]", + "search_line": 5087, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2101e2bf4f100ff407233647a51797f284074f612d6d512e09e03a36f99ec13c", + "line": 3494, + "resource_type": "aws_instance", + "resource_name": "example-instance-388", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example388}}]", + "search_line": 3494, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3049462702461f26fdd003e7bdacdd3e1a9213363ab6c166450a3f551e806a13", + "line": 3980, + "resource_type": "aws_instance", + "resource_name": "example-instance-442", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example442}}]", + "search_line": 3980, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2e64fe6b5a235a4acf1db8a90eccff663e34fd9d02bfd91815028e51f3d4d2f3", + "line": 4214, + "resource_type": "aws_instance", + "resource_name": "example-instance-468", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example468}}]", + "search_line": 4214, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d2c6fc59e51498e014362f65497f460ad25d86789d96874e12edaae15c15606c", + "line": 4538, + "resource_type": "aws_instance", + "resource_name": "example-instance-504", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example504}}]", + "search_line": 4538, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7219638677ec7d6b8ddb4b20715915f3eff9ece87b2cd2347c182bc6720654d3", + "line": 1901, + "resource_type": "aws_instance", + "resource_name": "example-instance-211", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example211}}]", + "search_line": 1901, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ae4cc378916de47ed623f859315e77f80fcc1b08bb8c968769069af08d5bd585", + "line": 3143, + "resource_type": "aws_instance", + "resource_name": "example-instance-349", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example349}}]", + "search_line": 3143, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c6d810e071a1bb5a02a582bb7ae35fdc9489c1ab866db4ec30ff60532d3316ec", + "line": 1361, + "resource_type": "aws_instance", + "resource_name": "example-instance-151", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example151}}]", + "search_line": 1361, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cad265d0324c4ed0c77894bc46922df4f0b8e417ff4ba8a3a0237053e27bc2e2", + "line": 2936, + "resource_type": "aws_instance", + "resource_name": "example-instance-326", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example326}}]", + "search_line": 2936, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5f55d8fee4b4990f3e8cc7dc4bc238b1cfb84a5f70eab870226987def05fb1a3", + "line": 8273, + "resource_type": "aws_instance", + "resource_name": "example-instance-919", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example919}}]", + "search_line": 8273, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2282fc66a6e4d8fed60a1375716f39c97a93773b7f1a87655250965f83551695", + "line": 5879, + "resource_type": "aws_instance", + "resource_name": "example-instance-653", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example653}}]", + "search_line": 5879, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "791ebda1eaec05e8197755e40792e09c64dbf1c80a3a703fa9d978cee77ec373", + "line": 5582, + "resource_type": "aws_instance", + "resource_name": "example-instance-620", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example620}}]", + "search_line": 5582, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c6c65d93af7f437ad4eb9fec823cdf0a414201d3d52d5a6e5155ec74b219e859", + "line": 6338, + "resource_type": "aws_instance", + "resource_name": "example-instance-704", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example704}}]", + "search_line": 6338, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "aef2db5c01bdc197e2d9428a1fcbb23f22f5a862cd4d56bac1ca0a73b83c1fac", + "line": 7913, + "resource_type": "aws_instance", + "resource_name": "example-instance-879", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example879}}]", + "search_line": 7913, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "52e3a3892ae560973af6cb438b9943cdcc9776a0936e73fdf8bde0fc38eb7524", + "line": 8876, + "resource_type": "aws_instance", + "resource_name": "example-instance-986", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example986}}]", + "search_line": 8876, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "18f466c9d35e3183a1ee859da6c346078cbf7c328ffd7e1583d2b56b8bf6b104", + "line": 4556, + "resource_type": "aws_instance", + "resource_name": "example-instance-506", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example506}}]", + "search_line": 4556, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "00805450b344cc700c533b01b5d0330b975a42e09029d698bde0af1831409e7e", + "line": 4943, + "resource_type": "aws_instance", + "resource_name": "example-instance-549", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example549}}]", + "search_line": 4943, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9a8decbaa99a01afc876530613492394a5496cf1992c8e3bcb65a2f86f0b4a19", + "line": 1415, + "resource_type": "aws_instance", + "resource_name": "example-instance-157", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example157}}]", + "search_line": 1415, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f8dbf32de611bb9d1d8b47bf54e948ad04c9c43306aeaeb8c3aa37ef81236f1f", + "line": 6302, + "resource_type": "aws_instance", + "resource_name": "example-instance-700", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example700}}]", + "search_line": 6302, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "599ad2fbb6da8f437bbb3c9cc4256916e5d6d4ae539de787e4cab2d4e48780ed", + "line": 1154, + "resource_type": "aws_instance", + "resource_name": "example-instance-128", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example128}}]", + "search_line": 1154, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bef1e66feeee2edaf790eabf235ddfa4e7bd9e61ca71c69c2020a23036fb8e5a", + "line": 1379, + "resource_type": "aws_instance", + "resource_name": "example-instance-153", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example153}}]", + "search_line": 1379, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5c4ac992cfc84c45861fd3d47625aa7c3234985439e37d4698dcd767b3a336d3", + "line": 1604, + "resource_type": "aws_instance", + "resource_name": "example-instance-178", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example178}}]", + "search_line": 1604, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "25b3cf0ff4c4d26e0b9dcd99553be059d7b92626e2e3d141727155916a0bf769", + "line": 128, + "resource_type": "aws_instance", + "resource_name": "example-instance-14", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example14}}]", + "search_line": 128, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b58af6d975a2d85a1582fc0a1ef7a7a4fdb9963ef4abea0f4e92ef4ff2460e63", + "line": 4925, + "resource_type": "aws_instance", + "resource_name": "example-instance-547", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example547}}]", + "search_line": 4925, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "00c18c2b46febfef2101dcc870899cffb465df8e7cccf2b3fc652656bb911aab", + "line": 6221, + "resource_type": "aws_instance", + "resource_name": "example-instance-691", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example691}}]", + "search_line": 6221, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0b9cba45482217a0118f2219fec22fd41a95ec9e7ecfff4b9072b01963f81e45", + "line": 3341, + "resource_type": "aws_instance", + "resource_name": "example-instance-371", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example371}}]", + "search_line": 3341, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e20dc7a2cfffef6b609b38a9475fa53afb2c3529212da6ee71545aba06e8d9fb", + "line": 5960, + "resource_type": "aws_instance", + "resource_name": "example-instance-662", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example662}}]", + "search_line": 5960, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "40d716b13993084528b7f4cc34fbc98ed62ad49db4c9999ce5487f8a3b80a4b2", + "line": 1586, + "resource_type": "aws_instance", + "resource_name": "example-instance-176", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example176}}]", + "search_line": 1586, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fed3699b5042ddeb953bc1905a27cedd71c3203f27f4abc534d2bc0bfb37d1fe", + "line": 6617, + "resource_type": "aws_instance", + "resource_name": "example-instance-735", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example735}}]", + "search_line": 6617, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ee73d65901c25ee29868111b3dd20917774dabdcb51aa94ca04201bfe403f87c", + "line": 8687, + "resource_type": "aws_instance", + "resource_name": "example-instance-965", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example965}}]", + "search_line": 8687, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d0efb8300a39de4adc87dee6a9330f104273ea44db6f121a7617f964e2269346", + "line": 6689, + "resource_type": "aws_instance", + "resource_name": "example-instance-743", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example743}}]", + "search_line": 6689, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2ad0438620ad253043cadf86365ee0c3be4a9f4c1819aa7564e43c6fc8deb340", + "line": 2063, + "resource_type": "aws_instance", + "resource_name": "example-instance-229", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example229}}]", + "search_line": 2063, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "23dc1c7b098a6bd959294bfc05e0ab88182120e233eab0674f3160030a3e10ae", + "line": 7706, + "resource_type": "aws_instance", + "resource_name": "example-instance-856", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example856}}]", + "search_line": 7706, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "32c1ad289070f9207eecafc7f24ca5cc5d07d60e1ba50550f5003e8b7096076f", + "line": 398, + "resource_type": "aws_instance", + "resource_name": "example-instance-44", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example44}}]", + "search_line": 398, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b09aeb201575a1d4c2147851599076ac9a54955c25afbe5173b46c2063080674", + "line": 6671, + "resource_type": "aws_instance", + "resource_name": "example-instance-741", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example741}}]", + "search_line": 6671, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d4e58772301c099000a0d177ad65418693925fe4b340f9b8209fb60330fbe71b", + "line": 8867, + "resource_type": "aws_instance", + "resource_name": "example-instance-985", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example985}}]", + "search_line": 8867, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c51ae25f2431c5e092991f10c97d7b88d57e3b8032c6b08bf722626d6b40a231", + "line": 1910, + "resource_type": "aws_instance", + "resource_name": "example-instance-212", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example212}}]", + "search_line": 1910, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c81d4eedc63e9230b7e71fb72ee7087ce451ce88dd8ab5569f933e2536ef1914", + "line": 7481, + "resource_type": "aws_instance", + "resource_name": "example-instance-831", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example831}}]", + "search_line": 7481, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bf2b9df583acb9452d62247193a6eff4475db9cbc4e381824b65c61d8d637224", + "line": 6770, + "resource_type": "aws_instance", + "resource_name": "example-instance-752", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example752}}]", + "search_line": 6770, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c47ec0797431536a481693b02ad74b89f91e83bbd2964d8ce25f05040d2e09eb", + "line": 938, + "resource_type": "aws_instance", + "resource_name": "example-instance-104", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example104}}]", + "search_line": 938, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "abed78f75a3ed180b4b249684479f8dc285faff866d115b3d8610fcc6c70142a", + "line": 4700, + "resource_type": "aws_instance", + "resource_name": "example-instance-522", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example522}}]", + "search_line": 4700, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "10ba2f0641666a034b12cc42096700aa0caebff07868a9d36ab4d076241d7482", + "line": 5483, + "resource_type": "aws_instance", + "resource_name": "example-instance-609", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example609}}]", + "search_line": 5483, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f0d41f66a1932e1413dc9a2a9291b51adcd2685dfd0fc7f48b215cd3a4e6fa2e", + "line": 8417, + "resource_type": "aws_instance", + "resource_name": "example-instance-935", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example935}}]", + "search_line": 8417, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1751e2995acb43acccc0d906277e89a9811770e2d72c41cf5feff65a8c75fe45", + "line": 1253, + "resource_type": "aws_instance", + "resource_name": "example-instance-139", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example139}}]", + "search_line": 1253, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c5cadaa369fee8edcabe5add29cefd34e8180e16b7d49b61f4fe6d222d2481ad", + "line": 8102, + "resource_type": "aws_instance", + "resource_name": "example-instance-900", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example900}}]", + "search_line": 8102, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3f510a27cb5cabc322e92195043b2f194a6f8cdb18035cec7ab63dce275b66be", + "line": 2954, + "resource_type": "aws_instance", + "resource_name": "example-instance-328", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example328}}]", + "search_line": 2954, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9d0b865f03d0a7765e25c5974fa6e5a82ba5f0a243f8817f5bc9df29143ccf73", + "line": 1082, + "resource_type": "aws_instance", + "resource_name": "example-instance-120", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example120}}]", + "search_line": 1082, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "81fd103a6fb55d94611dacf9289d4c9a15078c83f2c8e37129eb4b5b655e23d9", + "line": 5384, + "resource_type": "aws_instance", + "resource_name": "example-instance-598", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example598}}]", + "search_line": 5384, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d4d906a18245e75ec818577cb63f0898457763c4558bcbc6399c67b02edc6f8c", + "line": 785, + "resource_type": "aws_instance", + "resource_name": "example-instance-87", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example87}}]", + "search_line": 785, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "43214b0cf0b5ccf27255442d4fe08e6d779883a278ba50a2a6710e757133ba83", + "line": 1532, + "resource_type": "aws_instance", + "resource_name": "example-instance-170", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example170}}]", + "search_line": 1532, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3971a91a65846cf1ae432a5e3f180130ede4e92aa22496441c542687f0df0b22", + "line": 2144, + "resource_type": "aws_instance", + "resource_name": "example-instance-238", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example238}}]", + "search_line": 2144, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "796f76c72afb0546b2ed3ad6f648154dd6f06926d6d85ec4fcd81968f8669907", + "line": 1010, + "resource_type": "aws_instance", + "resource_name": "example-instance-112", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example112}}]", + "search_line": 1010, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "705dd33ee297aab9f1da91d0dfc7c30219eb20d98919802357c238322bef76c6", + "line": 4664, + "resource_type": "aws_instance", + "resource_name": "example-instance-518", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example518}}]", + "search_line": 4664, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "86583a5702a52022eb614c233a7eeff273d1c0f6f5883db13afef1602ff40e20", + "line": 7193, + "resource_type": "aws_instance", + "resource_name": "example-instance-799", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example799}}]", + "search_line": 7193, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5d9224432f100950ebaff4b17983dea389ce9590a4834ef547554f6a7fd5dc59", + "line": 1793, + "resource_type": "aws_instance", + "resource_name": "example-instance-199", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example199}}]", + "search_line": 1793, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ce12c0f37b1287f48cb5c84215a18a8770686a961e0605513294dd712a14fc97", + "line": 6905, + "resource_type": "aws_instance", + "resource_name": "example-instance-767", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example767}}]", + "search_line": 6905, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e30e975250b4c225779ebe928685052168ebc9b85ad54e97dce846cec09159cd", + "line": 1055, + "resource_type": "aws_instance", + "resource_name": "example-instance-117", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example117}}]", + "search_line": 1055, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a43d61018e6dac5551721ca7dd6e383ede3844f73a055e2402bf94bf2b4d5a85", + "line": 3692, + "resource_type": "aws_instance", + "resource_name": "example-instance-410", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example410}}]", + "search_line": 3692, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c60a2d0ce4a607f47a41f6dbcf018033963dc205cdfa2024029f33523f4f324a", + "line": 8444, + "resource_type": "aws_instance", + "resource_name": "example-instance-938", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example938}}]", + "search_line": 8444, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c17116567a2f1fc411e7cf62db8fb395470a00ad90a10286414cb9856b68d29b", + "line": 7067, + "resource_type": "aws_instance", + "resource_name": "example-instance-785", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example785}}]", + "search_line": 7067, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "eb226c03d26184612226c9300192f2a1a3f4fbff477af191e22ffb7cfab42074", + "line": 3539, + "resource_type": "aws_instance", + "resource_name": "example-instance-393", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example393}}]", + "search_line": 3539, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "377c5aada9dadbf4195ad69913fe603f0631a9fef587e85b3d5bcf9531be8432", + "line": 8831, + "resource_type": "aws_instance", + "resource_name": "example-instance-981", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example981}}]", + "search_line": 8831, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b2b14c016852528e1baeb4585457ac689ff2dcfa567af58982ee9d54a7826bd8", + "line": 4250, + "resource_type": "aws_instance", + "resource_name": "example-instance-472", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example472}}]", + "search_line": 4250, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "947af106bf67fcc200bed60c5063a361c9246ea2d9fb3604d665ec4a1cc735df", + "line": 8489, + "resource_type": "aws_instance", + "resource_name": "example-instance-943", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example943}}]", + "search_line": 8489, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9b60338706cdb78cec0deb55cb1868c3c025a3abd0d9c1074e9092988080bba9", + "line": 3161, + "resource_type": "aws_instance", + "resource_name": "example-instance-351", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example351}}]", + "search_line": 3161, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "70e3e915832d3bc26a6d041a46cd32b2ca987c71f2c95f36ade64cffeefd4a4d", + "line": 7094, + "resource_type": "aws_instance", + "resource_name": "example-instance-788", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example788}}]", + "search_line": 7094, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "40ab3f81f560b29f2f0c431f511729603aaefe7e28ff41bd35bedef2c5762e64", + "line": 5456, + "resource_type": "aws_instance", + "resource_name": "example-instance-606", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example606}}]", + "search_line": 5456, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "78549be772b225705a6a8cd05278ac718ce317f8cfb2d85c17d3591d73700f79", + "line": 506, + "resource_type": "aws_instance", + "resource_name": "example-instance-56", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example56}}]", + "search_line": 506, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b0c26c994c8ca18fe9f2cbc43e63dab373c78cb9ea5507581e9a5196dc3f2eed", + "line": 4997, + "resource_type": "aws_instance", + "resource_name": "example-instance-555", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example555}}]", + "search_line": 4997, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "52ceb1b8e75cd25617dfbc66d2fe0f60bfe6c17d37a06bf9a3051111a5f04d7e", + "line": 2513, + "resource_type": "aws_instance", + "resource_name": "example-instance-279", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example279}}]", + "search_line": 2513, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "63f7173f44e75143f0f64b16c54397accb12743e242b232e881bd133df279477", + "line": 3008, + "resource_type": "aws_instance", + "resource_name": "example-instance-334", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example334}}]", + "search_line": 3008, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a8d34c5721dbb7d9c4dbb969db28f75eb522ea4eb05b50cc4e6a1b3b84d62191", + "line": 3215, + "resource_type": "aws_instance", + "resource_name": "example-instance-357", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example357}}]", + "search_line": 3215, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8fea2d7d3bef32a2a123a56e3b8c4b1615fe421473e682eb248bac95ee8cad0f", + "line": 443, + "resource_type": "aws_instance", + "resource_name": "example-instance-49", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example49}}]", + "search_line": 443, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e2f069335809b22c1e705b068ea29e8b8b8f2917565ea4a906c616cfabacb898", + "line": 2099, + "resource_type": "aws_instance", + "resource_name": "example-instance-233", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example233}}]", + "search_line": 2099, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "71412d20b76d3b49bdeda5a826e764cf691cb07773b67a7d2eb8955082c59f4b", + "line": 3062, + "resource_type": "aws_instance", + "resource_name": "example-instance-340", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example340}}]", + "search_line": 3062, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "81a9244167254c1c30a8765bc8113d910950e9ca3c84fa2ca561092b4ddfcee1", + "line": 5681, + "resource_type": "aws_instance", + "resource_name": "example-instance-631", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example631}}]", + "search_line": 5681, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "36ef57b055eba6bbbaaa79b836175a174723f56aeb365bfa080dd172da99c784", + "line": 8768, + "resource_type": "aws_instance", + "resource_name": "example-instance-974", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example974}}]", + "search_line": 8768, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5b936f723e3bd9ff57ba569e6e957944dd60ff05dc3c7a1d1377d9a3496b6f3f", + "line": 5735, + "resource_type": "aws_instance", + "resource_name": "example-instance-637", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example637}}]", + "search_line": 5735, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1d7b58dcabc65f47d366c820004e9ce6e199b05675b03f036484a5881c63be15", + "line": 6941, + "resource_type": "aws_instance", + "resource_name": "example-instance-771", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example771}}]", + "search_line": 6941, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0e0bbfbbdae37e904d351c1e9ff56c0c1ea712cd4cd30b43f53962670e1fa44a", + "line": 254, + "resource_type": "aws_instance", + "resource_name": "example-instance-28", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example28}}]", + "search_line": 254, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a4d4734fa865f6c9187f236d9c58209d040d7cb6d1544edec2d93cba6764cfe7", + "line": 2000, + "resource_type": "aws_instance", + "resource_name": "example-instance-222", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example222}}]", + "search_line": 2000, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d08b29bae96eea8ab3bb4e000f0e632ce05b3a8e8b5e1ce4b77e87639e0f24b6", + "line": 6644, + "resource_type": "aws_instance", + "resource_name": "example-instance-738", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example738}}]", + "search_line": 6644, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "94e45b2126db29f646666e15013aa1f6a5fc6d33a78826e531fc337179ce6597", + "line": 4322, + "resource_type": "aws_instance", + "resource_name": "example-instance-480", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example480}}]", + "search_line": 4322, + "search_value": "", + "expected_value": "'ebs_optimized' should be set to true", + "actual_value": "'ebs_optimized' is undefined or null", + "remediation": "ebs_optimized = true", + "remediation_type": "addition" + } + ] + }, + { + "query_name": "Resource Not Using Tags", + "query_id": "e38a8e0a-b88b-4902-b3fe-b0fcb17d5c10", + "query_url": "https://registry.terraform.io/providers/hashicorp/aws/latest/docs/guides/resource-tagging", + "severity": "INFO", + "platform": "Terraform", + "cloud_provider": "AWS", + "category": "Best Practices", + "experimental": false, + "description": "AWS services resource tags are an essential part of managing components. As a best practice, the field 'tags' should have additional tags defined other than 'Name'", + "description_id": "09db2d52", + "files": [ + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f76cfaea4dfaf5a544e894afdee125db5f08e59129933c542f2f59e19be2bc5a", + "line": 3832, + "resource_type": "aws_instance", + "resource_name": "example-instance-425", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example425}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example425}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example425}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "118f5a693fc00be178b85e6434aa3f1859879eb5401534216719962c1131ca4f", + "line": 4219, + "resource_type": "aws_instance", + "resource_name": "example-instance-468", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example468}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example468}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example468}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "59e2d20852ed61b7cfbe397d48a54e4a01d17e83dc7575d2b7987ec0ab25bf85", + "line": 7837, + "resource_type": "aws_instance", + "resource_name": "example-instance-870", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example870}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example870}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example870}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c688b07f88d839dc29dfda746d5385c09a43419626bc37de0221dfef1322bc92", + "line": 5533, + "resource_type": "aws_instance", + "resource_name": "example-instance-614", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example614}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example614}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example614}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "97e4ba8340b26b49937e024cfdcacb368fb37ea03939746999cad8639fe9b130", + "line": 8242, + "resource_type": "aws_instance", + "resource_name": "example-instance-915", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example915}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example915}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example915}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e170f8fa2cde99669fa49c2e5f59e8a47f4540fa6c254ca7df6c142af0a20297", + "line": 5641, + "resource_type": "aws_instance", + "resource_name": "example-instance-626", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example626}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example626}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example626}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "60d1ddbe066f6783bdd094e754f337d9e9f81cef7bed35808b0bd12e93a850c6", + "line": 6370, + "resource_type": "aws_instance", + "resource_name": "example-instance-707", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example707}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example707}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example707}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b740fe3b7a32e6b5f9a0561d53d12a908da79c4701bed8861bf424a9094655f6", + "line": 3535, + "resource_type": "aws_instance", + "resource_name": "example-instance-392", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example392}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example392}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example392}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5ec47b23027c35c5eb72451310f8eff26e11e2f8a56afac7dce687af3e463863", + "line": 808, + "resource_type": "aws_instance", + "resource_name": "example-instance-89", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example89}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example89}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example89}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f8e6288e02a61271daf65f3190690dfd7fc01abdd30303a6ea68a5ae12f10b7f", + "line": 3895, + "resource_type": "aws_instance", + "resource_name": "example-instance-432", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example432}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example432}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example432}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f49c950680798c6b53be92fdffe485b582dad72f76d8beab03087077aae5a54f", + "line": 3949, + "resource_type": "aws_instance", + "resource_name": "example-instance-438", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example438}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example438}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example438}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "951d528b160833fd0c1638ad927c9916b104cb87e16635e77e47cd357f3ef773", + "line": 8395, + "resource_type": "aws_instance", + "resource_name": "example-instance-932", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example932}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example932}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example932}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "99af86d057b27aa169f6596d25015e8bdac2058430ac37c290afb8b142193187", + "line": 6856, + "resource_type": "aws_instance", + "resource_name": "example-instance-761", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example761}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example761}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example761}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "eb596257c921f06e9b62295b8b02e1cbc2f7d51610d9ee70c91e3de32e6027f1", + "line": 799, + "resource_type": "aws_instance", + "resource_name": "example-instance-88", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example88}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example88}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example88}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2ac7da7b380da4b3c18d6b767ffb66c0830da615147db31e8d2f4444ac12e2a0", + "line": 4453, + "resource_type": "aws_instance", + "resource_name": "example-instance-494", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example494}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example494}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example494}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ac4cea88be215709ec92f167002f83b94816d4c9cc9f9824d2aa7fd1bc21f297", + "line": 8530, + "resource_type": "aws_instance", + "resource_name": "example-instance-947", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example947}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example947}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example947}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ae4d4b20ad563a3467ba62a86025f2d34ff81b1b236468d9a7e861cd46db221e", + "line": 1501, + "resource_type": "aws_instance", + "resource_name": "example-instance-166", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example166}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example166}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example166}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f36c7aab511b05689645f8bc426ffadfd1fd9a71c346894ad1cc94e8ec3bc3de", + "line": 3067, + "resource_type": "aws_instance", + "resource_name": "example-instance-340", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example340}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example340}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example340}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "87e5f1e8ad941f7a3c2422c71b9ff0d958f0f3995c5523b3e01a14714164899f", + "line": 7432, + "resource_type": "aws_instance", + "resource_name": "example-instance-825", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example825}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example825}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example825}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0bc1467e2437366418b5ecc4625e772969e282c8862d6a9701ed753a94544220", + "line": 583, + "resource_type": "aws_instance", + "resource_name": "example-instance-64", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example64}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example64}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example64}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c9fb811297a3d63a40ed1197921a293b1c842864bbb36ddebba096cf65178cfd", + "line": 8746, + "resource_type": "aws_instance", + "resource_name": "example-instance-971", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example971}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example971}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example971}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "71c57cabd73235ef9e4c882481f8d2c667d524dc06aa16c2c8afd79baf626341", + "line": 565, + "resource_type": "aws_instance", + "resource_name": "example-instance-62", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example62}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example62}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example62}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "304e637ef01dcd844ef6ceea829ceda6440d5983fe3d2754e6fa72b10a87437b", + "line": 1231, + "resource_type": "aws_instance", + "resource_name": "example-instance-136", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example136}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example136}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example136}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5210c215f3b4bc2bd5138aceffd26878db6daaad7cc2e6251aacd82260e17ab2", + "line": 8953, + "resource_type": "aws_instance", + "resource_name": "example-instance-994", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example994}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example994}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example994}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5b896b241cf199820bb84fd4b1b52bb250311aa2b6ee9a2de70308ea0a304c30", + "line": 7792, + "resource_type": "aws_instance", + "resource_name": "example-instance-865", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example865}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example865}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example865}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6feac4e9069df17e06d4a3c58ebf86c4ea3c65e0df3510555f998e596c3c4e6b", + "line": 4912, + "resource_type": "aws_instance", + "resource_name": "example-instance-545", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example545}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example545}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example545}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "02beeef89fd4d30074b35a41895146f97acdd2508eea1ae398bcfbbfa48a2d5c", + "line": 1789, + "resource_type": "aws_instance", + "resource_name": "example-instance-198", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example198}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example198}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example198}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1effc9491b98325bf1ffe2403cf79a9769aef31f97c840f859a0a778968f710b", + "line": 6991, + "resource_type": "aws_instance", + "resource_name": "example-instance-776", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example776}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example776}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example776}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b265bb39ef815816f06e0c5f77914b02d32f384eab3bb09761e877490306242f", + "line": 979, + "resource_type": "aws_instance", + "resource_name": "example-instance-108", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example108}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example108}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example108}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e0e6b5aeace24fbebaceb6a0a3aba936e98dd1d0dd799096b85678ef981e3816", + "line": 1978, + "resource_type": "aws_instance", + "resource_name": "example-instance-219", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example219}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example219}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example219}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d4bf4e8f87aec7146ff982c3214d127e1712b4fb0e1e6fb9027f2e625f01ba9b", + "line": 2662, + "resource_type": "aws_instance", + "resource_name": "example-instance-295", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example295}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example295}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example295}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "97e78cea152418fce6fe5a2e15749d28666b795aa21434cc1ecbc2ee486552fa", + "line": 3175, + "resource_type": "aws_instance", + "resource_name": "example-instance-352", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example352}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example352}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example352}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "554828991fb9cac9ab09f59b5afe33e1f01dcc3cd5d97ef80a32ee04bef830e3", + "line": 1654, + "resource_type": "aws_instance", + "resource_name": "example-instance-183", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example183}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example183}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example183}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8ca69608056e0e5c9b833a8626bfee6d045bcc542ca601ed051f7998c0133f5a", + "line": 1726, + "resource_type": "aws_instance", + "resource_name": "example-instance-191", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example191}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example191}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example191}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "654b5f2585400073334d1513fcdbfcb04aeacb8828e284439714a24af1875ba4", + "line": 3022, + "resource_type": "aws_instance", + "resource_name": "example-instance-335", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example335}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example335}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example335}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2e51033cbfc3cd5c9e9c57ead864e0d37692cddb99443951b22e42b0edc8e629", + "line": 4768, + "resource_type": "aws_instance", + "resource_name": "example-instance-529", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example529}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example529}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example529}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b5004273d9fbff586f325f8166e3baff94f22aa505de15eb9d585a2e824b07ab", + "line": 5200, + "resource_type": "aws_instance", + "resource_name": "example-instance-577", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example577}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example577}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example577}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4d6b0cecdc3a23f4cd349f42e3096df1b278f91f72f72c8b8fbd0b5361666458", + "line": 1933, + "resource_type": "aws_instance", + "resource_name": "example-instance-214", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example214}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example214}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example214}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "73895a283da4167bef0d8a2b41e66cad767939085f618e3d872d1ea711c32aba", + "line": 8620, + "resource_type": "aws_instance", + "resource_name": "example-instance-957", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example957}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example957}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example957}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "67377a4f961493b9224721a7a425f55bc1b2d952f599b7cc7da16b2ecc6130ff", + "line": 4597, + "resource_type": "aws_instance", + "resource_name": "example-instance-510", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example510}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example510}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example510}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4b06ae9d76647262d3a318fcb5618ebf32ed0b6541f7f31dc91c23473eb492ae", + "line": 6442, + "resource_type": "aws_instance", + "resource_name": "example-instance-715", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example715}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example715}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example715}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "afa484a1a2197c88add946cedac7fed763d4a61b64882b901c9f2ced439f8492", + "line": 3211, + "resource_type": "aws_instance", + "resource_name": "example-instance-356", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example356}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example356}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example356}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7f490957d6c05c2aa29923684a34bd55d1f50ccdf21d6287ce41f2c0beafac0b", + "line": 1015, + "resource_type": "aws_instance", + "resource_name": "example-instance-112", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example112}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example112}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example112}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "62f82746271e9899732dedf165dd7d1f76f9be87ab10e1309de10f61ac6343e3", + "line": 5353, + "resource_type": "aws_instance", + "resource_name": "example-instance-594", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example594}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example594}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example594}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "18e9d9ae909fed5acb7d5de8b52a00e83c5b4f8b1ee1283c99b3f83785cba373", + "line": 8296, + "resource_type": "aws_instance", + "resource_name": "example-instance-921", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example921}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example921}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example921}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6a2bda314437cb6152f97bc8d07f036e6ecc7e16a3271cfb947ca5e3f97f71b8", + "line": 8017, + "resource_type": "aws_instance", + "resource_name": "example-instance-890", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example890}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example890}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example890}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1db6249bd71defb321c754086b76427e4adc8db5397df250bb30866331c26722", + "line": 169, + "resource_type": "aws_instance", + "resource_name": "example-instance-18", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example18}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example18}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example18}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f8e1668761af9017d661aed70a431ee2b08a9a5d6dae57c5c2d072215f32d5f9", + "line": 2356, + "resource_type": "aws_instance", + "resource_name": "example-instance-261", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example261}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example261}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example261}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cc3b46ecb9369eb50a6d80bb3d5efc7d6ad616b8ae29b759e73de07ad5b52bd4", + "line": 6046, + "resource_type": "aws_instance", + "resource_name": "example-instance-671", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example671}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example671}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example671}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7c1175af33ec68ae6fb52f288e86321aee11db97247b6c04f4fc53048e0c039d", + "line": 376, + "resource_type": "aws_instance", + "resource_name": "example-instance-41", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example41}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example41}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example41}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0e6007d20554053b09b2257c5315baa6494011ec5f47678582c31ec601ca34a9", + "line": 8683, + "resource_type": "aws_instance", + "resource_name": "example-instance-964", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example964}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example964}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example964}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6bd0069b095ba871ae66f5edf102545f716fcc8e33f6b6f03502fd2b04757305", + "line": 5308, + "resource_type": "aws_instance", + "resource_name": "example-instance-589", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example589}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example589}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example589}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "96d478c26480cf80061feb043271322b78b7f9eefb3445c20d3d00a75615279c", + "line": 7009, + "resource_type": "aws_instance", + "resource_name": "example-instance-778", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example778}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example778}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example778}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0f47d73719d013cb1e2e4761d6e0920a47a5d56f2b7d39f8d221979e396df9de", + "line": 5524, + "resource_type": "aws_instance", + "resource_name": "example-instance-613", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example613}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example613}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example613}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "205ba93f7b5bb5cdd95f63766a1b33ca5beae6c40a7d1d1363e0eae8f5816bf1", + "line": 6091, + "resource_type": "aws_instance", + "resource_name": "example-instance-676", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example676}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example676}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example676}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bb451b0993053bd6f049747df8c16d52998d629e0bc03da6cae99d2aa30a67ee", + "line": 268, + "resource_type": "aws_instance", + "resource_name": "example-instance-29", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example29}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example29}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example29}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "353084e2e6c64b76f65e4d4f1feb4bb7c574d4dc32eca7dd24a657901f8c69e7", + "line": 2734, + "resource_type": "aws_instance", + "resource_name": "example-instance-303", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example303}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example303}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example303}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fab2d080b82c120ce356e5fcb6ee664eaac2f86c3f8baf8576d29c28295ee6ed", + "line": 5713, + "resource_type": "aws_instance", + "resource_name": "example-instance-634", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example634}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example634}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example634}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "89c496cab4948b9827f9763865be7b56306c4bf08d0a7b2171aa5874327a94e0", + "line": 2032, + "resource_type": "aws_instance", + "resource_name": "example-instance-225", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example225}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example225}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example225}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d6dda423aec84af01f85ff5b3f9628948480500d912db15fc8771b6096446342", + "line": 5992, + "resource_type": "aws_instance", + "resource_name": "example-instance-665", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example665}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example665}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example665}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b4f286acb65c72542141339d9f3cd5a6ee37c0a61cfdfdb7c58228bfdcea3b6c", + "line": 8989, + "resource_type": "aws_instance", + "resource_name": "example-instance-998", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example998}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example998}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example998}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4b790b7be09921e065667b70ad8cbefb6a8f620783608645eca1aecb2db1a320", + "line": 115, + "resource_type": "aws_instance", + "resource_name": "example-instance-12", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example12}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example12}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example12}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bd37151eed8f963f207de11dd968dd84728eb8a5183671da5062720699c29fd2", + "line": 2023, + "resource_type": "aws_instance", + "resource_name": "example-instance-224", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example224}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example224}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example224}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ac698db45ec9c60fad32f76f9b29dc2bc4cf6c7b56b02508d16479a5ffc90fc8", + "line": 1051, + "resource_type": "aws_instance", + "resource_name": "example-instance-116", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example116}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example116}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example116}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "77269f0d697b7f71c6e3b047053e409defe666b11eec70eb2713ab007a34e6ef", + "line": 7594, + "resource_type": "aws_instance", + "resource_name": "example-instance-843", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example843}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example843}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example843}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4b29d2082393e68767743151bda24f20e9a2fcad9af2417e1f8b47538c177c19", + "line": 6064, + "resource_type": "aws_instance", + "resource_name": "example-instance-673", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example673}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example673}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example673}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d8c8b6171f28901167a5af97e0343300b812a1dfb68665c347d77ef9adaa1d36", + "line": 4372, + "resource_type": "aws_instance", + "resource_name": "example-instance-485", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example485}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example485}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example485}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a9f2cac6187968dad905946f2d1fd4e773a437eb8c9b0f55e59f1a6142eb2391", + "line": 6163, + "resource_type": "aws_instance", + "resource_name": "example-instance-684", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example684}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example684}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example684}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6d44abe3365c2402232a824fdb176bc9df61bc0d870894693f6b373d7c3b7563", + "line": 2392, + "resource_type": "aws_instance", + "resource_name": "example-instance-265", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example265}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example265}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example265}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dc71340449f56e3042f83ee969b5399992bb4bc75a244c559144da97243954a5", + "line": 6919, + "resource_type": "aws_instance", + "resource_name": "example-instance-768", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example768}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example768}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example768}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ed35a69e177acd567bfed8a3fcd1d92f2207de6ee42af5070e5768a99a0824e0", + "line": 1735, + "resource_type": "aws_instance", + "resource_name": "example-instance-192", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example192}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example192}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example192}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4859efbff5af3e3faea74cba7ec6380ad66f62b23a88bb7565204985d5b828f6", + "line": 2923, + "resource_type": "aws_instance", + "resource_name": "example-instance-324", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example324}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example324}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example324}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5ac55cd8a9ef2f85ac88fd0c07d87a29dd58c9edcdc0b74b63b6b04d9ab01aa2", + "line": 3427, + "resource_type": "aws_instance", + "resource_name": "example-instance-380", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example380}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example380}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example380}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7897d36708bb21156625af1857fbbb6317c6c19920c8ba1c49fe03a2473dabd4", + "line": 1636, + "resource_type": "aws_instance", + "resource_name": "example-instance-181", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example181}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example181}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example181}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d105f945d01dab94e16264d113b38e76c015412b72de4b09b0e8806ec96f05b1", + "line": 5560, + "resource_type": "aws_instance", + "resource_name": "example-instance-617", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example617}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example617}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example617}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9ded746761547b1308d4d5e8c1d3135b830478ae84cfb32564ee42a7c118f0e0", + "line": 7756, + "resource_type": "aws_instance", + "resource_name": "example-instance-861", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example861}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example861}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example861}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ccd58788a0e6761bdd48aef9794f07a57a7eda83f8f12ac44e81537254b9ca04", + "line": 3868, + "resource_type": "aws_instance", + "resource_name": "example-instance-429", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example429}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example429}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example429}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "26addbc674343eb0a0541574716debf81bdf030368cd3b62b2a0f46310bc4e78", + "line": 4003, + "resource_type": "aws_instance", + "resource_name": "example-instance-444", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example444}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example444}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example444}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f1cc5f3019b5896fc1ef2c609ec3a3c6ec026ca90d00621a1c6ccf379b415afd", + "line": 1753, + "resource_type": "aws_instance", + "resource_name": "example-instance-194", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example194}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example194}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example194}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a0b96ad10954bc43342269a7cf6fd3f80d79a5c94d73bc2cab28a06ec6eaf87e", + "line": 2878, + "resource_type": "aws_instance", + "resource_name": "example-instance-319", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example319}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example319}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example319}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a6b9caa7b718ab1af0bf82da1128d8b949d5e953dda5023ef678418bf33fad83", + "line": 1798, + "resource_type": "aws_instance", + "resource_name": "example-instance-199", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example199}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example199}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example199}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1e83887e30aeddd8c4478341a791997a8b4b03c41a332ab955c4afd62c0fd105", + "line": 1870, + "resource_type": "aws_instance", + "resource_name": "example-instance-207", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example207}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example207}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example207}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e6ddc7e1ab06bea13c3d416c8f618ee1057c279a793dfe866ac659a1356b76ee", + "line": 2347, + "resource_type": "aws_instance", + "resource_name": "example-instance-260", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example260}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example260}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example260}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8a995c70455236009dee5b50e0960340d801a379eafdd0ee0e30dc51af954d6e", + "line": 7261, + "resource_type": "aws_instance", + "resource_name": "example-instance-806", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example806}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example806}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example806}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "aac92292af35dd49aa89419e517d272eba5ea5a88472fe2b1d75989cc371ca6f", + "line": 7423, + "resource_type": "aws_instance", + "resource_name": "example-instance-824", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example824}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example824}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example824}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7122a6e890478b9239dc1fff9d0b5eb5fe155418bc9a37e64d652c196fd1aa75", + "line": 4021, + "resource_type": "aws_instance", + "resource_name": "example-instance-446", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example446}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example446}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example446}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ca1db426c0329c1c52cd821e1e8cde5e0757ea7341b591896777c65e9b3d82b6", + "line": 5443, + "resource_type": "aws_instance", + "resource_name": "example-instance-604", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example604}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example604}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example604}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bea9f0fcdcfb5dc9a92e0c61c32fa48efecb140acef9c62bdcb087a4f1f7aaf7", + "line": 1519, + "resource_type": "aws_instance", + "resource_name": "example-instance-168", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example168}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example168}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example168}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1d32347a0f2a8b1f23c80374e63c253789e6c59fa076c8b3773385364700198b", + "line": 1969, + "resource_type": "aws_instance", + "resource_name": "example-instance-218", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example218}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example218}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example218}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "27cdd0a25e2dacf9af34ac2429ac658f0a0dc20dbc0016e316961176f23efaa2", + "line": 817, + "resource_type": "aws_instance", + "resource_name": "example-instance-90", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example90}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example90}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example90}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6a7ed7b15bc66871e221a982b697f1ec7904cb420215d475b93ebd7ad77c2385", + "line": 3058, + "resource_type": "aws_instance", + "resource_name": "example-instance-339", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example339}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example339}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example339}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "afffd54b831c6c11c33f37918743da21ab6b9c023d2428549a9e5350269e6a37", + "line": 8800, + "resource_type": "aws_instance", + "resource_name": "example-instance-977", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example977}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example977}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example977}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "91c1e6ead0a832ac3661ad5374e15fa23cab9556210b6e8bc0aad363bf9b446c", + "line": 2761, + "resource_type": "aws_instance", + "resource_name": "example-instance-306", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example306}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example306}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example306}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d358f191fc179e5987f82d5834f16a2a166c9df708f2e7c90cca44dbc7ac89a0", + "line": 4084, + "resource_type": "aws_instance", + "resource_name": "example-instance-453", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example453}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example453}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example453}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b1d3026238e14c1cf1d5c812ce3e5a3b97fcd778e23831e7adceccacf2132051", + "line": 5551, + "resource_type": "aws_instance", + "resource_name": "example-instance-616", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example616}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example616}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example616}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "003e75fb8984e4c835f82106ea362f04f209546fe0261283e53361a790894090", + "line": 5902, + "resource_type": "aws_instance", + "resource_name": "example-instance-655", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example655}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example655}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example655}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e097774253925a31d613c55e8d3a046faaf67fd3f06e4044a86175b31752ea20", + "line": 8179, + "resource_type": "aws_instance", + "resource_name": "example-instance-908", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example908}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example908}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example908}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "93e6af531f6e84213435140e694ee35b99f3bd5472616e6d9907cc3e5bc2e934", + "line": 1879, + "resource_type": "aws_instance", + "resource_name": "example-instance-208", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example208}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example208}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example208}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0e205317d16d694d210751a8bdfc5c7278bb559611541fcc88d81802769f5777", + "line": 2536, + "resource_type": "aws_instance", + "resource_name": "example-instance-281", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example281}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example281}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example281}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "32dd7a2551c6154edca503eb79f798fe2c7dbbf7362f9e1677ac3c3e794cf870", + "line": 3679, + "resource_type": "aws_instance", + "resource_name": "example-instance-408", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example408}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example408}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example408}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "964cdb4ff4d41764fbbe93b0c41b23b5bbd4982a6beb90cb240361a6b625308d", + "line": 6415, + "resource_type": "aws_instance", + "resource_name": "example-instance-712", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example712}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example712}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example712}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "15307ef6fcf964d54489d2cda21973d227b9f956ac91aae2405e0667decfa7c0", + "line": 8197, + "resource_type": "aws_instance", + "resource_name": "example-instance-910", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example910}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example910}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example910}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ff4e4405f41c31b11e3a8b8c1dfc76e6efa4c654617d83cf6bc8f4855d0d8a8f", + "line": 2140, + "resource_type": "aws_instance", + "resource_name": "example-instance-237", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example237}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example237}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example237}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "82a3e4f795fbfdf827668a6476fcf49c5adc9c11e24656e7c0cdb986aa432163", + "line": 8872, + "resource_type": "aws_instance", + "resource_name": "example-instance-985", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example985}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example985}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example985}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4121b7fc7c42e9a4c8873cf7054d434507fde74d5e3e9d1f1f13cd1caa4d1fb2", + "line": 2077, + "resource_type": "aws_instance", + "resource_name": "example-instance-230", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example230}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example230}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example230}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1e1d363533f2471d8f0a8576f7f4f351ef9602ed92a7cd8c1783ce8bc10d9734", + "line": 1456, + "resource_type": "aws_instance", + "resource_name": "example-instance-161", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example161}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example161}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example161}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9499d47362b4ccc9fae7c94a314fa1fc8f36ccadf295bbcde9d3e0960b503f41", + "line": 727, + "resource_type": "aws_instance", + "resource_name": "example-instance-80", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example80}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example80}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example80}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "684e4da0cd7b3eea33ff8d3aaa477f5537a67d2a8c4bfce20ae73213ecbe1819", + "line": 5578, + "resource_type": "aws_instance", + "resource_name": "example-instance-619", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example619}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example619}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example619}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ea1295e012faf1c324318389f95fa7ee0047a4b2c6f4d2835a56101029e9d3f7", + "line": 2698, + "resource_type": "aws_instance", + "resource_name": "example-instance-299", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example299}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example299}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example299}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8685396f5e10f4fc8d2f33920fbd583e9ac7b6d072d6ddbf22607e0386b08017", + "line": 4237, + "resource_type": "aws_instance", + "resource_name": "example-instance-470", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example470}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example470}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example470}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "226d46ce9235fbc1e64b099e51d041883ea026e4e1740f12953937eb50054656", + "line": 673, + "resource_type": "aws_instance", + "resource_name": "example-instance-74", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example74}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example74}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example74}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8daa132ed1b116093a8f24572848e8603ddf61b1c8bb26aebafff82d4b2ca0ce", + "line": 5056, + "resource_type": "aws_instance", + "resource_name": "example-instance-561", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example561}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example561}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example561}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "40bc921519b6b0ad331fc55cd854fd8851fbe4285e144c0523c96405174b9e8d", + "line": 682, + "resource_type": "aws_instance", + "resource_name": "example-instance-75", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example75}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example75}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example75}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "24af48059abf6fc1031a2865cad0f1f139a156f494e79e26bdb1f4f39c8c3f31", + "line": 6766, + "resource_type": "aws_instance", + "resource_name": "example-instance-751", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example751}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example751}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example751}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6379150900d9830461d50d51965c358a4562c9d8dfd52a24f6e739ecf97a631d", + "line": 4399, + "resource_type": "aws_instance", + "resource_name": "example-instance-488", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example488}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example488}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example488}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dabdb4a3fcb03075d250efe90515b5a89f7dbef0b2cee5a49a4ff1eb752f1624", + "line": 7873, + "resource_type": "aws_instance", + "resource_name": "example-instance-874", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example874}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example874}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example874}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e48e304c3db8f4847ccf920197feef87547e11f35c0c1d19fb7b52bda660927e", + "line": 6757, + "resource_type": "aws_instance", + "resource_name": "example-instance-750", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example750}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example750}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example750}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4aec13a577e319c72ff270ae3b78c5764d5848d93f96ed195fc5fd96eb8b26c7", + "line": 205, + "resource_type": "aws_instance", + "resource_name": "example-instance-22", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example22}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example22}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example22}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f4ae1d971763e5981941fb278af694a11afa6c52277e8cf4ba32d53630d44ba3", + "line": 3688, + "resource_type": "aws_instance", + "resource_name": "example-instance-409", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example409}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example409}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example409}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7706172510181ce35107636c3a92dc1befd794b990d7f570f4866b863daad4a5", + "line": 5794, + "resource_type": "aws_instance", + "resource_name": "example-instance-643", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example643}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example643}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example643}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b5f2b9fe5ff96584476ddf08bc02c9643c69eb0a74be0ae292b38bc170a06530", + "line": 5083, + "resource_type": "aws_instance", + "resource_name": "example-instance-564", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example564}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example564}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example564}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b6f41bdf6af6c2c8437e61fdc8eb8168bcbcbe67757a4c7596a8809c789b461b", + "line": 6847, + "resource_type": "aws_instance", + "resource_name": "example-instance-760", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example760}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example760}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example760}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8c14df8d0d7e2c100cefc14a6205f9d17006f5dc896f26eb063a591c7d9d7d44", + "line": 4471, + "resource_type": "aws_instance", + "resource_name": "example-instance-496", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example496}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example496}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example496}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "46afba9c9c65fefb16ff167835764d926bf3362792408f93841f6dcae7bef4ac", + "line": 4822, + "resource_type": "aws_instance", + "resource_name": "example-instance-535", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example535}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example535}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example535}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "86c668e20c78a5c82f57b337b836d3fd9bd2a58507e6681b4883ad02baa8d969", + "line": 5938, + "resource_type": "aws_instance", + "resource_name": "example-instance-659", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example659}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example659}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example659}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8115f10f022b4cc2c7c71b45b05daf915721043304a0433cf5f00a9716a8b097", + "line": 1915, + "resource_type": "aws_instance", + "resource_name": "example-instance-212", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example212}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example212}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example212}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "232f0b59411b48336079b577cf42c65fd36ce12c370f9af08c2018b2f6d81e99", + "line": 2185, + "resource_type": "aws_instance", + "resource_name": "example-instance-242", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example242}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example242}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example242}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "65c81e97b69915040969936af7dabd86767c4d04692cb8a20db054ada0bc128e", + "line": 5956, + "resource_type": "aws_instance", + "resource_name": "example-instance-661", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example661}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example661}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example661}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a47fe3ca0fe477eb73c87f3e1d42a1347fd4a5dd343f5b6f0d4aa82999bd90a9", + "line": 6469, + "resource_type": "aws_instance", + "resource_name": "example-instance-718", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example718}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example718}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example718}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0671447e3581eaacd3ee850e9f8bf4eb4d5a872618f5056c1fbdc2e2bb6689b4", + "line": 5119, + "resource_type": "aws_instance", + "resource_name": "example-instance-568", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example568}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example568}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example568}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "74cb70f30a7601099248db6fa6f3f1416e9c450b1326902aeef46bd4f43b4cc3", + "line": 6217, + "resource_type": "aws_instance", + "resource_name": "example-instance-690", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example690}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example690}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example690}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9ec9d5da4d2d4779bc706b6fa670aad07d3b0d6da56ebb2951381661611fd496", + "line": 6865, + "resource_type": "aws_instance", + "resource_name": "example-instance-762", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example762}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example762}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example762}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5be42068487858df4914cda87a8893f49793da6310977e8fb0c4172f89863c08", + "line": 4894, + "resource_type": "aws_instance", + "resource_name": "example-instance-543", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example543}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example543}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example543}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "41d091be18144a88bdde9ffc78436ecae13011e49e1d3f2ca0ed2963087ad618", + "line": 997, + "resource_type": "aws_instance", + "resource_name": "example-instance-110", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example110}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example110}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example110}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e6063e8c18980e34975285bed5d653c623b8ae9d5ff222fcc39216be70debb70", + "line": 3094, + "resource_type": "aws_instance", + "resource_name": "example-instance-343", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example343}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example343}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example343}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "16faa369c2daa304c968816d95cbf904c5edb26cf99f4f4243e8f540ba7a2a3f", + "line": 3616, + "resource_type": "aws_instance", + "resource_name": "example-instance-401", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example401}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example401}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example401}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6618e202dd6eba3a84e9a4d1a5005b8886a8708ed502197f9c3f34b5dc54467d", + "line": 448, + "resource_type": "aws_instance", + "resource_name": "example-instance-49", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example49}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example49}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example49}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ac85bc68d874660ae2f84411bad408f41292c77eb6286726df17c8cbd8a3cf45", + "line": 2365, + "resource_type": "aws_instance", + "resource_name": "example-instance-262", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example262}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example262}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example262}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3f1ecba795aaf21197d66bc7eef09f7e1f4c0e8c1b42232a90a610e56e78ac6b", + "line": 7927, + "resource_type": "aws_instance", + "resource_name": "example-instance-880", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example880}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example880}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example880}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6353097f94a5f1f41b9a01268ac148e3b0f47af11ea58eff553cf1f5e22d4647", + "line": 286, + "resource_type": "aws_instance", + "resource_name": "example-instance-31", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example31}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example31}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example31}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4ddf6b43213800927b19c93e9f2acf8c9a05f32deefdc0fd63b1a8d30cbbaa1d", + "line": 5983, + "resource_type": "aws_instance", + "resource_name": "example-instance-664", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example664}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example664}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example664}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d88cc3037065ebc39965b690aa5a0538498b30aa89aac2bfce0d304454264906", + "line": 6154, + "resource_type": "aws_instance", + "resource_name": "example-instance-683", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example683}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example683}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example683}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b54c91cb0617269b0c2ee7666a612397ff9511c7bb2abf1f6cd465ee28334b17", + "line": 8602, + "resource_type": "aws_instance", + "resource_name": "example-instance-955", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example955}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example955}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example955}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1f20057d4bb6d33fc085642531c1f499f7995854740777784f293e0825d018a8", + "line": 8377, + "resource_type": "aws_instance", + "resource_name": "example-instance-930", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example930}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example930}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example930}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6030153767fb8fd824929ae099b3b07021b5e14ec7b904d8c740afc59ca1a143", + "line": 1366, + "resource_type": "aws_instance", + "resource_name": "example-instance-151", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example151}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example151}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example151}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b156a58d1db717cd059024a22f6a38ed86dbcbb89ab60c7546636509d305c230", + "line": 4012, + "resource_type": "aws_instance", + "resource_name": "example-instance-445", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example445}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example445}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example445}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e950f6d528fbfcc91adb1e504d3435005934ca0b0a36f598d18dc503321c5cad", + "line": 8908, + "resource_type": "aws_instance", + "resource_name": "example-instance-989", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example989}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example989}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example989}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a76791279a857bf9b9adbbfa274a2682e11abc85fe52bb8d371ae322df069166", + "line": 3634, + "resource_type": "aws_instance", + "resource_name": "example-instance-403", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example403}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example403}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example403}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "31fffd8c7b285557f3d99b67e7d49f9ae01b56f986dc6a3e56cd9c9c4e7ca290", + "line": 3517, + "resource_type": "aws_instance", + "resource_name": "example-instance-390", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example390}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example390}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example390}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cba48af8cd6514022f96f6a927358d4dc313797f66d1b9866a8ce33e6f23981f", + "line": 5542, + "resource_type": "aws_instance", + "resource_name": "example-instance-615", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example615}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example615}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example615}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4185a63a122011fd3fd8a0df4f220d23f55a471e8aa79b1fd2944120b511fe72", + "line": 7306, + "resource_type": "aws_instance", + "resource_name": "example-instance-811", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example811}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example811}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example811}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6d211a0573427bc57d801b8b1a219207ea47297ab07cafe9f71a8931e64b71db", + "line": 1096, + "resource_type": "aws_instance", + "resource_name": "example-instance-121", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example121}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example121}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example121}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9db8c21dbc7309c36d1575a6f5dccb5ebc42390a6075dc61b3d65dbb71b99408", + "line": 2707, + "resource_type": "aws_instance", + "resource_name": "example-instance-300", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example300}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example300}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example300}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bd4f3f28bf9cb5553ef460e8c64aa78effc923754e6d13ec4f9c78cf86b1ff19", + "line": 6730, + "resource_type": "aws_instance", + "resource_name": "example-instance-747", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example747}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example747}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example747}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "07572a301236aca7cc0248f32378e39b03e7ace6c50640e3522f2912d8970280", + "line": 6874, + "resource_type": "aws_instance", + "resource_name": "example-instance-763", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example763}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example763}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example763}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "49efbad799a825c1afdea417efa3b660695680bb2147ba2d2f07872cc2cf10b6", + "line": 6505, + "resource_type": "aws_instance", + "resource_name": "example-instance-722", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example722}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example722}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example722}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9ddb0e964d9ff2860ebcdc110d608578a3f46147e4dcca443b314be12e825796", + "line": 5614, + "resource_type": "aws_instance", + "resource_name": "example-instance-623", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example623}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example623}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example623}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bcd7bfc34f07e3a3b1691fcda1e0fb45a88154433a5cda993463715048e25c68", + "line": 6631, + "resource_type": "aws_instance", + "resource_name": "example-instance-736", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example736}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example736}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example736}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ca4ca3f14f0ac55391333cfa166b6f4fe1d5e633d8a4b2572046fcc73db802c8", + "line": 8287, + "resource_type": "aws_instance", + "resource_name": "example-instance-920", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example920}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example920}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example920}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "944603c6258ee4b22cbac4f38531c7adee590205c55f6cb680967181e4e47633", + "line": 3409, + "resource_type": "aws_instance", + "resource_name": "example-instance-378", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example378}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example378}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example378}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9611294c5c04dd94aa027e8fc3aa637914eb061d29349967d89b5a0d428683b3", + "line": 88, + "resource_type": "aws_instance", + "resource_name": "example-instance-9", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example9}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example9}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example9}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5cc441f27b312fb8da295160e05eb959077cab27dbaf8d94e2c0ab4cd84ae53e", + "line": 4921, + "resource_type": "aws_instance", + "resource_name": "example-instance-546", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example546}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example546}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example546}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5098bbedb64efd7c3761d60fa07313d5acd36e2023eab6110339c36466f93dfb", + "line": 5011, + "resource_type": "aws_instance", + "resource_name": "example-instance-556", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example556}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example556}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example556}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3a27725415fe6b84233eb49db1a481491acfca551abee02c47fc768d58c50bc7", + "line": 4435, + "resource_type": "aws_instance", + "resource_name": "example-instance-492", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example492}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example492}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example492}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ac490f9def1041094a3dab7357b4222e8baef554c1f6947affa33c384f812dbe", + "line": 1474, + "resource_type": "aws_instance", + "resource_name": "example-instance-163", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example163}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example163}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example163}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8e0ccd9572a3b5e016db2c25ed832450ac5cd34ba1b425325e4644a85711ef02", + "line": 4741, + "resource_type": "aws_instance", + "resource_name": "example-instance-526", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example526}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example526}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example526}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0a3a0aa2a25b1032c03bf5c9b31fd31eb8dae2d8721ebe1450c860788c0962b0", + "line": 6379, + "resource_type": "aws_instance", + "resource_name": "example-instance-708", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example708}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example708}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example708}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a9597512168090e757ebe4a0ad923cecff5680c72fcf2a0cb8757bae77be12f2", + "line": 826, + "resource_type": "aws_instance", + "resource_name": "example-instance-91", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example91}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example91}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example91}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f641edd0b8a1bb3e7f2749125d99dcbae224a1b2e234edf744c29aa26e702103", + "line": 1240, + "resource_type": "aws_instance", + "resource_name": "example-instance-137", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example137}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example137}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example137}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dc1e51820bc9055fae0838480ee7fe196c772f11e0bd0f0c6efae22b00e324bd", + "line": 5218, + "resource_type": "aws_instance", + "resource_name": "example-instance-579", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example579}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example579}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example579}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1b13f1eccf4e4cfa1ac10b09bfb9ddc498346a1b3a2e2e6c166b0e588f6d8516", + "line": 6289, + "resource_type": "aws_instance", + "resource_name": "example-instance-698", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example698}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example698}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example698}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bf03fb9eba30c05a4ed5c85c76e9047a6d42b2cb0c6565cc744438ab20100c87", + "line": 1465, + "resource_type": "aws_instance", + "resource_name": "example-instance-162", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example162}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example162}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example162}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b131bd61f46b67cc41710f549d29a5c319d2072f9be5f7ac6c824903ec197c7e", + "line": 3130, + "resource_type": "aws_instance", + "resource_name": "example-instance-347", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example347}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example347}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example347}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7a443901126800053f7865bdd3c6152c33e5bbe9f1b789f32a04b3b083a6f672", + "line": 8152, + "resource_type": "aws_instance", + "resource_name": "example-instance-905", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example905}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example905}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example905}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "efff3bebb31093bc7fd88534a529e8292d0b85cfc373fb2acb4cf62fd4293cab", + "line": 3040, + "resource_type": "aws_instance", + "resource_name": "example-instance-337", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example337}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example337}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example337}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9a986ce72fd1c6395c0004e829e529987d2add571d9b4b27fb56cc02785233e0", + "line": 5812, + "resource_type": "aws_instance", + "resource_name": "example-instance-645", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example645}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example645}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example645}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "19abe4d97965084b8934a5db1b1f31f036966bd1705cb659a13b7a4545de7c85", + "line": 3373, + "resource_type": "aws_instance", + "resource_name": "example-instance-374", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example374}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example374}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example374}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d2889ff6121f0690cd90f557b63b37c8f88ec4098f529111d735e048f24f16cb", + "line": 961, + "resource_type": "aws_instance", + "resource_name": "example-instance-106", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example106}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example106}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example106}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bede903768761fc6026e7c62216d616dd48dc3a814abd9f3e037e0d374e4137d", + "line": 6910, + "resource_type": "aws_instance", + "resource_name": "example-instance-767", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example767}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example767}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example767}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "055e633ac6ab3893ef85779bf2f8dad5f5ef80432498842fdebdbd07279c9409", + "line": 1897, + "resource_type": "aws_instance", + "resource_name": "example-instance-210", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example210}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example210}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example210}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "09c0c86d6eada917243f3398d181a809cc368c02423f29b3ad1b59f3dbb3a772", + "line": 5209, + "resource_type": "aws_instance", + "resource_name": "example-instance-578", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example578}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example578}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example578}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f1cbcacd38855421825612cf0f1d7a41dd983efd3fe0070ded46ad65830ed4c0", + "line": 556, + "resource_type": "aws_instance", + "resource_name": "example-instance-61", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example61}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example61}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example61}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a3ae6748c7682f40ed5a845cbcf188d89155bd635a90f54e92ceb5d5f868cf5b", + "line": 7675, + "resource_type": "aws_instance", + "resource_name": "example-instance-852", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example852}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example852}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example852}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b2154dd435b8afc45d0f17ababf209b3ab152a60eecfebacc081f8ee2b3e5bb3", + "line": 7477, + "resource_type": "aws_instance", + "resource_name": "example-instance-830", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example830}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example830}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example830}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3865f0f32ff0e69591722b82606a8c3738d9783c70014d4ac58edd995d851092", + "line": 2302, + "resource_type": "aws_instance", + "resource_name": "example-instance-255", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example255}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example255}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example255}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "13b6a16ba5f4c1be13254db53d273466488ead7e0ab387f3cb05ebd1bbf05110", + "line": 4363, + "resource_type": "aws_instance", + "resource_name": "example-instance-484", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example484}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example484}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example484}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "599e3bf69fd67d111f8075fc8e2b6119ec728174eb2c582df275679dcdf4580c", + "line": 8854, + "resource_type": "aws_instance", + "resource_name": "example-instance-983", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example983}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example983}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example983}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0482ff0975651d241885f2dc2cddceeabc91fbcdfffca9bf6a54922b55781982", + "line": 4075, + "resource_type": "aws_instance", + "resource_name": "example-instance-452", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example452}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example452}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example452}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "82e66b8b47b6198fc7272c95b48487a7396cdbcaa46af0d070c24168c24832f6", + "line": 1393, + "resource_type": "aws_instance", + "resource_name": "example-instance-154", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example154}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example154}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example154}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "81571f1f48cc2246e2349c8c90afddeb63a013ecb6eee9c4642f26a19111fd6f", + "line": 7513, + "resource_type": "aws_instance", + "resource_name": "example-instance-834", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example834}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example834}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example834}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ac65689dfd83556c3701b5d7e58e1565bced4b35855b95f22a0c920a6be0c5cc", + "line": 7225, + "resource_type": "aws_instance", + "resource_name": "example-instance-802", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example802}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example802}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example802}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f3088a0720292dd275a7c4c6202a7ed3d4658eadf67a2a60043417498c0fa95d", + "line": 8494, + "resource_type": "aws_instance", + "resource_name": "example-instance-943", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example943}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example943}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example943}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7b77246b04b322f7e7e3ff18c3f26f0f59138bb91ca6f3fd28aaf735fb03ab9a", + "line": 1213, + "resource_type": "aws_instance", + "resource_name": "example-instance-134", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example134}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example134}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example134}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b2306cb971a60ba57f53d6a8793c212e584f9460c2e4321ab114e1e605cc8f9d", + "line": 6127, + "resource_type": "aws_instance", + "resource_name": "example-instance-680", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example680}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example680}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example680}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9aa1c4fab64afee60b1870a1d8130c150e72e87def5a97140a897f88ebb3b510", + "line": 2788, + "resource_type": "aws_instance", + "resource_name": "example-instance-309", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example309}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example309}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example309}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "535333bbcc14151ac945c7d26396ac8e72dad42b223def3aaebe822cfad52fcb", + "line": 5866, + "resource_type": "aws_instance", + "resource_name": "example-instance-651", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example651}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example651}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example651}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ed3d0e505aab6426df915fce263351e57d98232240941880c08a46bc298db079", + "line": 4669, + "resource_type": "aws_instance", + "resource_name": "example-instance-518", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example518}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example518}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example518}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c3fd1f6fc395c2eec163c0b6037b88b929891caf97605f49c83fb3f0d2ebe376", + "line": 8143, + "resource_type": "aws_instance", + "resource_name": "example-instance-904", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example904}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example904}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example904}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0e4904e4e3f2a50338dfa8ec6c0efd79a094f19de469aa893aa3e3b4b55b3464", + "line": 1294, + "resource_type": "aws_instance", + "resource_name": "example-instance-143", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example143}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example143}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example143}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2d3eff84485b3d0fb1146b182d9ec2bea3fb5a31b32d65360209d51b4a4a10a3", + "line": 1834, + "resource_type": "aws_instance", + "resource_name": "example-instance-203", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example203}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example203}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example203}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "582ba5e8de644353b3ea0b8194823d253df132be28f14e60bf83730d2a9d5763", + "line": 6586, + "resource_type": "aws_instance", + "resource_name": "example-instance-731", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example731}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example731}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example731}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "60722ced949a15ba5592de8751fb043e5901ae6e96349ecba4935c2b567026d2", + "line": 6676, + "resource_type": "aws_instance", + "resource_name": "example-instance-741", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example741}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example741}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example741}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "16a9377c9c1c3c6c31e31b2468a945a6966f5b223d320402a7ef724ad4ee2143", + "line": 7990, + "resource_type": "aws_instance", + "resource_name": "example-instance-887", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example887}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example887}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example887}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a40d0678a0628a12a56fe06c2d75ff9fd4cea9d1f94ecd470e26340b81174863", + "line": 3274, + "resource_type": "aws_instance", + "resource_name": "example-instance-363", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example363}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example363}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example363}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0c1b039f9aee47e49fff99c9d55b53e54b9713181681659a1c888125d566445d", + "line": 178, + "resource_type": "aws_instance", + "resource_name": "example-instance-19", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example19}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example19}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example19}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c2421f9af0955ee1340db5d03fcfb8c42cf4e49898dae8266e9c6da9f485be67", + "line": 3580, + "resource_type": "aws_instance", + "resource_name": "example-instance-397", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example397}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example397}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example397}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7901fcdfd4dcc09c60792ac54aea15626e5e26642446f893004461831702353f", + "line": 844, + "resource_type": "aws_instance", + "resource_name": "example-instance-93", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example93}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example93}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example93}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "246214468cbdc5cc124eb30b4cb5b5e19e05e7b64b40ff283d62f1e885e60f9a", + "line": 8809, + "resource_type": "aws_instance", + "resource_name": "example-instance-978", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example978}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example978}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example978}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1ca1ae3bcc6d7034bedf91906692b35abbb8fb62f56661417ec9260ac399c9a1", + "line": 2725, + "resource_type": "aws_instance", + "resource_name": "example-instance-302", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example302}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example302}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example302}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d900758598329da87a4c1c2146f3b8484bea2f7bb7765e7ca02b32c9e56e2d50", + "line": 7216, + "resource_type": "aws_instance", + "resource_name": "example-instance-801", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example801}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example801}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example801}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8638c1d09aa212649dfcb49f94ad92a315bfee1b60663fe04e5aa4dc96bf2135", + "line": 8512, + "resource_type": "aws_instance", + "resource_name": "example-instance-945", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example945}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example945}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example945}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "51158b7be4b3863631e29e26cc9f498452ec1ebee7c8c7e94b49acbf9ec8b620", + "line": 1843, + "resource_type": "aws_instance", + "resource_name": "example-instance-204", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example204}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example204}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example204}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "144acc2ad9e99481c4cc989aad654bb89ba9992e90a20831753469e7f43f6063", + "line": 2554, + "resource_type": "aws_instance", + "resource_name": "example-instance-283", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example283}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example283}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example283}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9c16ad42b6d4c1f77a578cf4c9c474ced36627e4be67fc12a70f730a5b256dc6", + "line": 3364, + "resource_type": "aws_instance", + "resource_name": "example-instance-373", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example373}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example373}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example373}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4c5166d5838e272f905aa84af2b17f35cbf26ea6e21e5669895a382f9f0c6b88", + "line": 8881, + "resource_type": "aws_instance", + "resource_name": "example-instance-986", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example986}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example986}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example986}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2fb40abcd3419940f59d3e838018e0ead5338d40ff998115fc8d81a49cde0ae6", + "line": 5767, + "resource_type": "aws_instance", + "resource_name": "example-instance-640", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example640}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example640}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example640}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "671a1bede38aa3f74f30ad8e8e97fd7d33d97d670f41a87fda20972990e56060", + "line": 3724, + "resource_type": "aws_instance", + "resource_name": "example-instance-413", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example413}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example413}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example413}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0506cfb5d4a2c4f2dc8dbf847cd951f12252932701b4d9c405f658d830c8071a", + "line": 61, + "resource_type": "aws_instance", + "resource_name": "example-instance-6", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example6}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example6}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example6}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0fc4f572f86738e79ff84d91d2f990b74aad3bfda4fed1b8b034abe1984dff80", + "line": 385, + "resource_type": "aws_instance", + "resource_name": "example-instance-42", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example42}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example42}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example42}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6ae0d1061475b4ced24bc2362fd9a77f51ca1429dbacc7c081269f7a7557cd53", + "line": 340, + "resource_type": "aws_instance", + "resource_name": "example-instance-37", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example37}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example37}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example37}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1beac987b9583bf4f054d15ce7d1e6bfaf649e8bf0f5966cad393a730e1375e0", + "line": 5677, + "resource_type": "aws_instance", + "resource_name": "example-instance-630", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example630}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example630}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example630}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ef33f4d4637f9a9941bd28ab307b5c67594cbdbf8245820f1098bb75d214bea0", + "line": 2104, + "resource_type": "aws_instance", + "resource_name": "example-instance-233", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example233}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example233}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example233}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "634be316e34b0191d93e12357e142f9bf2ec99add40f42b7501f28a3de1c19bb", + "line": 3589, + "resource_type": "aws_instance", + "resource_name": "example-instance-398", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example398}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example398}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example398}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5a5462e37e507325be8c23057dfd63c1cdd58922816e2777e75d81be1f193c70", + "line": 8890, + "resource_type": "aws_instance", + "resource_name": "example-instance-987", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example987}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example987}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example987}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4ee4239bbfe43e57bbc5dd12ecbc201a03ae567b71d34a3a9593b5f0bf2e2854", + "line": 7279, + "resource_type": "aws_instance", + "resource_name": "example-instance-808", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example808}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example808}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example808}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b6dd5f86d19a8d8caf092a69a1ba4254017b88224bd689fe43111870d4d0a81e", + "line": 6838, + "resource_type": "aws_instance", + "resource_name": "example-instance-759", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example759}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example759}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example759}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cb525d35265110f20e74d22c159927ce931f1ecb827bbac90e6bf09988aed891", + "line": 8431, + "resource_type": "aws_instance", + "resource_name": "example-instance-936", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example936}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example936}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example936}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2ff1374e7cd38dbdd17ca41350bea3eb204ec92f611d783bf23a26d3655125d9", + "line": 5911, + "resource_type": "aws_instance", + "resource_name": "example-instance-656", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example656}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example656}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example656}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "66d66d4c89e7657b9d3867f79829d71ba54853a3ad0dc3da17cb299ce9460c23", + "line": 925, + "resource_type": "aws_instance", + "resource_name": "example-instance-102", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example102}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example102}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example102}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9fe852797a48ddfd81c1c12626f5d28fffd4babd90e128eafafa28c72aab08e8", + "line": 3013, + "resource_type": "aws_instance", + "resource_name": "example-instance-334", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example334}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example334}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example334}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ab2eaa6f2ebe462d318438425bf490baefcdad77e5e28e40317ecd744d0af281", + "line": 3472, + "resource_type": "aws_instance", + "resource_name": "example-instance-385", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example385}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example385}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example385}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8f764615ab68cb47f8ff124d4e86b4bb60a992f85ce50a61b950e4a2eca96c98", + "line": 4174, + "resource_type": "aws_instance", + "resource_name": "example-instance-463", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example463}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example463}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example463}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bb7c1a963c86a0b5dfea28dd35088eceb4faaefcef39a95a5f78a6ded3199011", + "line": 8557, + "resource_type": "aws_instance", + "resource_name": "example-instance-950", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example950}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example950}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example950}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "43d628b692d766c5687e9e5a2c003f95ac6c1ce15490eefd9bd5752cc10ceea5", + "line": 4390, + "resource_type": "aws_instance", + "resource_name": "example-instance-487", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example487}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example487}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example487}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "033f54a4799990bd2672feb3aec6ebd2b27e54dc7c3f759545dfa889fcc2c1a0", + "line": 2320, + "resource_type": "aws_instance", + "resource_name": "example-instance-257", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example257}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example257}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example257}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f38648f27db3a67c07c0c4702b66e8ba402add859411785b78c0b99a0bed1546", + "line": 4633, + "resource_type": "aws_instance", + "resource_name": "example-instance-514", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example514}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example514}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example514}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5a90fd90f6c1f939adee64a1958060378b2a8d87fe6896c05c8cf64502ed61ad", + "line": 853, + "resource_type": "aws_instance", + "resource_name": "example-instance-94", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example94}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example94}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example94}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9e6c80f4683d8e6ffc1740593901e1001261321d90799353939075c3ac3d1760", + "line": 3742, + "resource_type": "aws_instance", + "resource_name": "example-instance-415", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example415}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example415}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example415}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6a6576bfd187348e2bb7b0bf6ee5c7a595c08dc7e59958cdffdd99a0ac4ff31c", + "line": 2671, + "resource_type": "aws_instance", + "resource_name": "example-instance-296", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example296}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example296}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example296}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "45843179c1647bc27a26a82fea1879cc2497f5e76fa09639f1e8231771b928df", + "line": 8359, + "resource_type": "aws_instance", + "resource_name": "example-instance-928", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example928}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example928}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example928}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "76727af7ff559837352e8d977d287afbc79df6709ac579901e216ec073f44cb8", + "line": 2518, + "resource_type": "aws_instance", + "resource_name": "example-instance-279", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example279}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example279}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example279}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7d9758eff372b8735e42268576beb688bdd36d1f303ef17b0c18b755b4640c03", + "line": 4957, + "resource_type": "aws_instance", + "resource_name": "example-instance-550", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example550}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example550}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example550}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ed8f273b804422aff909435d583d6c94d6769eaade44fc49e76ff1cb91c16a08", + "line": 4606, + "resource_type": "aws_instance", + "resource_name": "example-instance-511", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example511}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example511}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example511}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bddea9149b84f28ffc5cfe0f8970ba03d207dad92351cbcc637bf2f46dbea01e", + "line": 1222, + "resource_type": "aws_instance", + "resource_name": "example-instance-135", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example135}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example135}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example135}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "17d5bd5c15aadad36a788a4ab1d013df24321320302354e7eafd87a19e863c95", + "line": 3220, + "resource_type": "aws_instance", + "resource_name": "example-instance-357", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example357}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example357}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example357}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b23c84948743621f76bde402d0c8c3bcc4434de98a89b9f5981ba619d5fbacab", + "line": 97, + "resource_type": "aws_instance", + "resource_name": "example-instance-10", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example10}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example10}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example10}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8f50cd55ca93201727e3634c4b96812d596f765a77152091dfdeb4aecde0e85b", + "line": 8233, + "resource_type": "aws_instance", + "resource_name": "example-instance-914", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example914}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example914}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example914}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7aeb8b40db3c7a8b8b30a4cfd8a9c995ba3e68a0eb8576be59f9f523c89605ef", + "line": 2230, + "resource_type": "aws_instance", + "resource_name": "example-instance-247", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example247}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example247}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example247}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ef48c646d0ed8208c66999b8fab0fefa6d22862293259ba9147453ed8043baa8", + "line": 2293, + "resource_type": "aws_instance", + "resource_name": "example-instance-254", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example254}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example254}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example254}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0defa5833cf5b42b4d9fc4959da2dfa5b37a98ecd46b1c4931db0a387840c43a", + "line": 2824, + "resource_type": "aws_instance", + "resource_name": "example-instance-313", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example313}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example313}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example313}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1f4359a182dbda516bc5b8cfce95e88a0a526ff025ac9dca7c693f94f2aa959a", + "line": 4759, + "resource_type": "aws_instance", + "resource_name": "example-instance-528", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example528}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example528}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example528}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5aa1e24a08cdca5f8ff66e76eddc37dd3e524cc4a8b3bf6e75b8039682d89d10", + "line": 3112, + "resource_type": "aws_instance", + "resource_name": "example-instance-345", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example345}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example345}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example345}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "28738905d1b25f0805feef10e2a5de6c793e88591d962d97657a35733bea3152", + "line": 4984, + "resource_type": "aws_instance", + "resource_name": "example-instance-553", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example553}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example553}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example553}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1db8bac4dcf4ad7b717a488e823c2a7487f7f26cd0128af442341eeb068e2f5f", + "line": 7198, + "resource_type": "aws_instance", + "resource_name": "example-instance-799", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example799}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example799}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example799}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "049788a47aa1380024b771b184b4a72d478d48ec32144e4d60dc836210138da8", + "line": 7324, + "resource_type": "aws_instance", + "resource_name": "example-instance-813", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example813}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example813}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example813}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cfd95195607c493ce4e1a981e33fa1fc8c7752f865a89a086546b784a03ed439", + "line": 3661, + "resource_type": "aws_instance", + "resource_name": "example-instance-406", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example406}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example406}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example406}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "60e72f4a519bb0364c1d87f9374e1377071e42f223f2cbdddb6e0d3acf924279", + "line": 7180, + "resource_type": "aws_instance", + "resource_name": "example-instance-797", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example797}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example797}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example797}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4f8f68da0dfbd23dec0819a740b2c74dc30cfdf498b71626ad99028d6f7900f1", + "line": 5398, + "resource_type": "aws_instance", + "resource_name": "example-instance-599", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example599}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example599}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example599}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7afe220e211a82b3ef7901b9aeeba3f55523199076fd5d2006e89ebe746930b7", + "line": 1078, + "resource_type": "aws_instance", + "resource_name": "example-instance-119", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example119}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example119}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example119}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a70b9d7d1575c747c90da2f70a197688eb1529be6d14ca340ba12056b6d9bfcd", + "line": 5290, + "resource_type": "aws_instance", + "resource_name": "example-instance-587", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example587}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example587}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example587}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f5fc917bf566df35a06c838698677de5ed0314780ee964ad98937eb890efd210", + "line": 6055, + "resource_type": "aws_instance", + "resource_name": "example-instance-672", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example672}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example672}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example672}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "57b734975b96ba3eff81e6e8fb4a09950762eb8208030d0f86242737731c5c33", + "line": 1582, + "resource_type": "aws_instance", + "resource_name": "example-instance-175", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example175}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example175}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example175}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "40847e9b8b0b709f5da1e101e0da3d093c2ce47fd9ebd42d35cd5d8681c85513", + "line": 6973, + "resource_type": "aws_instance", + "resource_name": "example-instance-774", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example774}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example774}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example774}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1b871f8fddae58632c9603869afb67f6779cb89093502bb817530335dd582449", + "line": 5479, + "resource_type": "aws_instance", + "resource_name": "example-instance-608", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example608}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example608}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example608}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "73d97e9039c036ca68e570d19a43fa76b10d61d1e0b390a19e1df4d400f3a509", + "line": 9007, + "resource_type": "aws_instance", + "resource_name": "example-instance-1000", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example1000}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example1000}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example1000}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a630855b5075a2815ff2394023635aea3e21ebb440ff65094b8723e5302a6c23", + "line": 610, + "resource_type": "aws_instance", + "resource_name": "example-instance-67", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example67}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example67}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example67}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "943c54f63eee7453513e7a70a8e2b1a337a6416bf8f7c99c9fcff45914ab438b", + "line": 6397, + "resource_type": "aws_instance", + "resource_name": "example-instance-710", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example710}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example710}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example710}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "71c609f54a9fa10e8057928f849b295fcb2feedd0f27c8307bcd8c2d21db54d1", + "line": 7117, + "resource_type": "aws_instance", + "resource_name": "example-instance-790", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example790}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example790}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example790}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "eb4686938108537f6d9bf4246119487b5a3291d60ae28912bb4e7467c33c5aaf", + "line": 4849, + "resource_type": "aws_instance", + "resource_name": "example-instance-538", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example538}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example538}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example538}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4cf1d84b43bb93a5581b781cfeb1c7bd41851c1a539a1048d3e221b0d3b86987", + "line": 8845, + "resource_type": "aws_instance", + "resource_name": "example-instance-982", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example982}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example982}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example982}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3c76406bd9415313875eca2e6e38945f7dabe6dc9689c3f84a57c0f71eca8c7e", + "line": 304, + "resource_type": "aws_instance", + "resource_name": "example-instance-33", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example33}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example33}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example33}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f9632ab6b1860bea335b4d1203c9f8ba6fafcf60d5a533299424668f9a0c821e", + "line": 394, + "resource_type": "aws_instance", + "resource_name": "example-instance-43", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example43}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example43}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example43}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "adf26e52cda689ce652e317f085cd834fc139d89a2d01e0671122b2ad4f20bff", + "line": 6739, + "resource_type": "aws_instance", + "resource_name": "example-instance-748", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example748}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example748}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example748}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "93b20308bfd011564e10e944c54a79c8c5dd69cd669d46d1fa0d10cd1dbe51e4", + "line": 6883, + "resource_type": "aws_instance", + "resource_name": "example-instance-764", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example764}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example764}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example764}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "75c5f64c7438ca683f65a2b67f7b181659db1c6c28c022648e76ee0e4b2c5eb4", + "line": 7531, + "resource_type": "aws_instance", + "resource_name": "example-instance-836", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example836}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example836}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example836}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f0a89ef136f048556582686e55d0248abc88495e787e4d0c7cc9eadd28b0b808", + "line": 1924, + "resource_type": "aws_instance", + "resource_name": "example-instance-213", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example213}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example213}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example213}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "86e04196bef51a305be89fbd22a25b22625a07b0c8a94869911fcd9dd400914e", + "line": 349, + "resource_type": "aws_instance", + "resource_name": "example-instance-38", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example38}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example38}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example38}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a98d8d00f20c1fa96347ad481ef57d93eafd3f56cda005cf8ce880e37936b19f", + "line": 4615, + "resource_type": "aws_instance", + "resource_name": "example-instance-512", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example512}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example512}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example512}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "12cc733c76876d26e7532764e1e41a9a84134537066a6a81fd43d006d152f6e4", + "line": 6019, + "resource_type": "aws_instance", + "resource_name": "example-instance-668", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example668}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example668}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example668}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a9bfc7c12145e11703a4cd62ccd8dad2f1b263f35a5636f3ab14f6f9d99af1b2", + "line": 5164, + "resource_type": "aws_instance", + "resource_name": "example-instance-573", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example573}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example573}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example573}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d7d9a46ec376710619429d3899b7b7efad2ca6290a78a6b794fd7a14df0f4bb6", + "line": 7657, + "resource_type": "aws_instance", + "resource_name": "example-instance-850", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example850}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example850}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example850}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e742a6d5533e8d94ec856c4c6aec00481244cff6b693355c59d2ac208d2bba71", + "line": 5128, + "resource_type": "aws_instance", + "resource_name": "example-instance-569", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example569}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example569}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example569}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "51c3997c76960a8daffd19389234af6fe78930173521a366aeacacf1e9d3bb1f", + "line": 3400, + "resource_type": "aws_instance", + "resource_name": "example-instance-377", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example377}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example377}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example377}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fe906ec0b907d1f6761df3c70a54ab15f51c3fea7945b6702637888c87280174", + "line": 2473, + "resource_type": "aws_instance", + "resource_name": "example-instance-274", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example274}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example274}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example274}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "efd9fed5bc1ce4120e1afeead3f16848941597f7c6918a21354611bb2b46786b", + "line": 7828, + "resource_type": "aws_instance", + "resource_name": "example-instance-869", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example869}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example869}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example869}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7dd7c621183810813312d7f6c95b71481fe35ee2026f71ad1f0909393672bbdf", + "line": 322, + "resource_type": "aws_instance", + "resource_name": "example-instance-35", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example35}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example35}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example35}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "48fb42716f6a37c625ba0723052bb9b071f779bda70eb8a1238fa2b5fd22e468", + "line": 7693, + "resource_type": "aws_instance", + "resource_name": "example-instance-854", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example854}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example854}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example854}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0ebfe140db4fc96201da071a90b2ce1950ae987f053fdaf018c57ebf4d38d560", + "line": 3193, + "resource_type": "aws_instance", + "resource_name": "example-instance-354", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example354}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example354}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example354}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f363f973550bb07c7c0b4c8add0805720d36804351fd175e97ca5ffed72d8cdc", + "line": 3814, + "resource_type": "aws_instance", + "resource_name": "example-instance-423", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example423}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example423}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example423}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ec13544ee43c820f52464dbf322e903989ce993bd730f9f3b7d1806d5f03ada9", + "line": 8584, + "resource_type": "aws_instance", + "resource_name": "example-instance-953", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example953}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example953}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example953}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "be74b3fdd8b9412fd9ee9352f632d24c270f6a2cf4471d674ebce34f4bb8eceb", + "line": 7288, + "resource_type": "aws_instance", + "resource_name": "example-instance-809", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example809}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example809}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example809}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0c5133467f3aba6f7c16792b4c54142cbaf45859a9244d628e19b7ce3a5202ab", + "line": 1402, + "resource_type": "aws_instance", + "resource_name": "example-instance-155", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example155}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example155}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example155}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7b58ca654246bc812c9a73f9b71b282b0a2aac1b47d48116de999e23b4f42948", + "line": 5875, + "resource_type": "aws_instance", + "resource_name": "example-instance-652", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example652}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example652}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example652}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ef336938e499297ccd8c38a981f8046c5539c7e2163eb76734f57b6239a240aa", + "line": 5893, + "resource_type": "aws_instance", + "resource_name": "example-instance-654", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example654}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example654}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example654}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "78e6dce7276fe16da3624e2f6e9f1d9cb05472505ee58f3d3f556a850ed6d10c", + "line": 2779, + "resource_type": "aws_instance", + "resource_name": "example-instance-308", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example308}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example308}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example308}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6a8485f995da197fdff62a4ca980b29539dbb3cd6cd4d3323f51f20c7dd40d71", + "line": 8980, + "resource_type": "aws_instance", + "resource_name": "example-instance-997", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example997}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example997}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example997}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4214860270c71345535fa222b0ad77474806e1886a604e2edc5dfe89cf54d89e", + "line": 3436, + "resource_type": "aws_instance", + "resource_name": "example-instance-381", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example381}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example381}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example381}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "44fed25fb4d7db524d42d2f20af5b9f7733918b31407e6627ad70a0d15026818", + "line": 7486, + "resource_type": "aws_instance", + "resource_name": "example-instance-831", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example831}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example831}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example831}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "835106368c84497bf66c0cb87f496b28d5d116d695caab346a2d75d1253c253c", + "line": 2968, + "resource_type": "aws_instance", + "resource_name": "example-instance-329", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example329}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example329}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example329}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "77873d8f7beb60eae0e130c41d23421cf81c3fed3332d3d1337c0e3e32ca0b84", + "line": 2599, + "resource_type": "aws_instance", + "resource_name": "example-instance-288", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example288}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example288}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example288}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1bda5c854174d448a4f91216553a90befcb7fb1e3dd91f403520898c80dda9d8", + "line": 4723, + "resource_type": "aws_instance", + "resource_name": "example-instance-524", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example524}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example524}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example524}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "03088e3d157b13d4fc207edf5fb870d314f8243b3a93aee48250ec0e630eb707", + "line": 8215, + "resource_type": "aws_instance", + "resource_name": "example-instance-912", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example912}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example912}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example912}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "318aeaf9b3bf4099311b3d64b4a00abacd15c7b8524f68029aa01a1258e4b3a7", + "line": 6433, + "resource_type": "aws_instance", + "resource_name": "example-instance-714", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example714}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example714}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example714}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c2004ee4be4eb3b3625a489605dda734974a6093bb7a6a4abec82f689cbf7bef", + "line": 5506, + "resource_type": "aws_instance", + "resource_name": "example-instance-611", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example611}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example611}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example611}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "20f7f843756690d9af13a1bd5e057e5ceb64e62253356664049da68205a2af52", + "line": 2545, + "resource_type": "aws_instance", + "resource_name": "example-instance-282", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example282}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example282}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example282}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "698feb1e0052d6e4574967c63a0082540fb9c1514bcf1ddaaea77c2d348b62d9", + "line": 1123, + "resource_type": "aws_instance", + "resource_name": "example-instance-124", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example124}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example124}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example124}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b68014461a0ce793677aa5a15f396e93a29ea618d2e2f52e32c46a7856fa71c1", + "line": 2806, + "resource_type": "aws_instance", + "resource_name": "example-instance-311", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example311}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example311}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example311}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "95f5f3987a9ca3852eec89423b7015315537bc55d2e5aabde4fc6602e0c65b6d", + "line": 1033, + "resource_type": "aws_instance", + "resource_name": "example-instance-114", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example114}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example114}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example114}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1a51d347f4f980e380a831f840c24463a4edae3a1fc4a5d48c0c6e1c7cf6c7ea", + "line": 6892, + "resource_type": "aws_instance", + "resource_name": "example-instance-765", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example765}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example765}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example765}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ebfa971f31bd3c0c09af430d6bfca676575792d05b9d97ccf463fbffb73b05c5", + "line": 7162, + "resource_type": "aws_instance", + "resource_name": "example-instance-795", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example795}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example795}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example795}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5e056b8c907a605fbfe6f914aff89cebfa557d750a72376b3b0e2b15ac6d3a07", + "line": 106, + "resource_type": "aws_instance", + "resource_name": "example-instance-11", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example11}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example11}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example11}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8d9ebfbd0b06efbf228fa5df63227da15190b11cda7c33fc7c495ea12bf0fb4a", + "line": 1384, + "resource_type": "aws_instance", + "resource_name": "example-instance-153", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example153}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example153}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example153}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dd7a71f329960787eaa7bee9d08ac4fd96bb4ab0e5102aeee7565d96fd0e9c67", + "line": 4786, + "resource_type": "aws_instance", + "resource_name": "example-instance-531", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example531}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example531}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example531}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "11429249c81aa2da99cea27e8e402d67e21995b22e919fbee9bd5e9e74796110", + "line": 5065, + "resource_type": "aws_instance", + "resource_name": "example-instance-562", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example562}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example562}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example562}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8542e6a3330e3d587dd93ffe591a8477c4cb0b9bf482f05997e24e6099cd6994", + "line": 4552, + "resource_type": "aws_instance", + "resource_name": "example-instance-505", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example505}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example505}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example505}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ce97c25a7f0e5d9b6c90e0fcc0ee311eac74f494fdb4ac400722beccb944f415", + "line": 5965, + "resource_type": "aws_instance", + "resource_name": "example-instance-662", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example662}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example662}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example662}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ac555ce51c6f8f48f416db0984545cf7991c9ee3b5f5d88a282f0416e4305832", + "line": 8449, + "resource_type": "aws_instance", + "resource_name": "example-instance-938", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example938}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example938}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example938}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3e34ff68073f5d77ed77ba1ceca068e5dd19a73b3de901f236c712ded3c4c36c", + "line": 5974, + "resource_type": "aws_instance", + "resource_name": "example-instance-663", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example663}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example663}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example663}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0b6cfa8599056aca9054b457921fb93230d1409758116ebaf2a98e2a2150452f", + "line": 8548, + "resource_type": "aws_instance", + "resource_name": "example-instance-949", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example949}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example949}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example949}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8cf7ee6e9446810f0dd756a4bf1b411ee4876a1c02ed85012e1d3aeeb63b6646", + "line": 8125, + "resource_type": "aws_instance", + "resource_name": "example-instance-902", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example902}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example902}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example902}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3cf105b29fcf8b835e3a7fcc4fd7aee5a9c1e68ee3f4b4cbb93a0f5fbde6bf0b", + "line": 3463, + "resource_type": "aws_instance", + "resource_name": "example-instance-384", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example384}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example384}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example384}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cd8dc9c6d1a9a8a86acf7db7fe5cdbd1ef0cc41d139d45c8d654f2c2ad16fa5f", + "line": 5497, + "resource_type": "aws_instance", + "resource_name": "example-instance-610", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example610}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example610}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example610}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "04a64fdc821859e03be95cf6c9ad837abf504b817378f3500d845429f88b9e4d", + "line": 5920, + "resource_type": "aws_instance", + "resource_name": "example-instance-657", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example657}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example657}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example657}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "60d26de3f4afd09ba4caee1cd47907b7d0e7e0c3259024393ae975fc0c011b95", + "line": 718, + "resource_type": "aws_instance", + "resource_name": "example-instance-79", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example79}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example79}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example79}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6b1d0cd41c262a56126cea65dd7977487b7b5f122c773dbfb51867f7f3cec9e4", + "line": 151, + "resource_type": "aws_instance", + "resource_name": "example-instance-16", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example16}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example16}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example16}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d462549ac2638f5cb2d8bd788ad4335966f1280d62f4884f5bc71eb74354d2a1", + "line": 7846, + "resource_type": "aws_instance", + "resource_name": "example-instance-871", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example871}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example871}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example871}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f5fbbb6725dd99e937454287bc6a809fcbf5c59a42ff0e7a2822127f1820f7f8", + "line": 3310, + "resource_type": "aws_instance", + "resource_name": "example-instance-367", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example367}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example367}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example367}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "33df89d4cc4d7bd0c0f7a39e474c14a5b3756485e3784cd4c620e7d8dff0eb02", + "line": 7576, + "resource_type": "aws_instance", + "resource_name": "example-instance-841", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example841}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example841}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example841}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3b92e7778826ee19dfcc5bd08ab4a0bfb4f282e4e4bf1d10a938663508294dba", + "line": 8773, + "resource_type": "aws_instance", + "resource_name": "example-instance-974", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example974}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example974}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example974}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "db0bc5f2ddd515840f3a6ac83c6f5a6d8257d19e9ad54138416019b01ed36143", + "line": 2122, + "resource_type": "aws_instance", + "resource_name": "example-instance-235", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example235}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example235}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example235}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6ea55a5ce53b49ae703b16e84190904df5398a53707f70df7988d5f5f25bb3af", + "line": 2149, + "resource_type": "aws_instance", + "resource_name": "example-instance-238", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example238}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example238}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example238}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5c93ccdd482d14ee08d885fa07030f7938f69d2b660e80e271984fce19abf8f2", + "line": 3382, + "resource_type": "aws_instance", + "resource_name": "example-instance-375", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example375}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example375}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example375}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0d2952e9a1b6d3053ba17b1317eb257621bceadebfe27a645814e0a7c53a6317", + "line": 2716, + "resource_type": "aws_instance", + "resource_name": "example-instance-301", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example301}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example301}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example301}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "656adffe91566e10d095d4f52f20110bb88681f47777f794546e7fe170a29b9e", + "line": 1276, + "resource_type": "aws_instance", + "resource_name": "example-instance-141", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example141}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example141}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example141}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "958a271fc105f34f55323d44ac437a55e197419375723c7ae111bae7b70d8986", + "line": 691, + "resource_type": "aws_instance", + "resource_name": "example-instance-76", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example76}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example76}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example76}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5287f57f5475ea16b665713b4284c2122dbe7ebdd8f99dd1d4b24dde11e6b5ec", + "line": 7855, + "resource_type": "aws_instance", + "resource_name": "example-instance-872", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example872}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example872}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example872}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "383147809ffe960799314f8a8d3bbac6eb64291cd74e19753ca804ac60881f26", + "line": 736, + "resource_type": "aws_instance", + "resource_name": "example-instance-81", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example81}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example81}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example81}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3b200a8047ab17ab94dd6d0b4b6563102ddbfaf6c1e2961e2ac3e8c02218e720", + "line": 3733, + "resource_type": "aws_instance", + "resource_name": "example-instance-414", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example414}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example414}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example414}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c6a78f79164066fc97f82044b82f284621619b291a11c838250c5bf6359e75f0", + "line": 223, + "resource_type": "aws_instance", + "resource_name": "example-instance-24", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example24}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example24}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example24}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fb1876336883184e42c096f456a5cd8b1e2ee24fa3ce0e55b058b00440409591", + "line": 403, + "resource_type": "aws_instance", + "resource_name": "example-instance-44", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example44}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example44}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example44}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e8ff528892958935ec41061d6cb150c14cc512d0bb6823ac5646437f63a894d1", + "line": 1906, + "resource_type": "aws_instance", + "resource_name": "example-instance-211", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example211}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example211}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example211}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f033606e34e2f54c01af7d41cff33a9d7e850607e664953be30986892ee1429f", + "line": 8404, + "resource_type": "aws_instance", + "resource_name": "example-instance-933", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example933}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example933}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example933}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "84239c60cf9288a5da847c8332d37a54a5c65b1ef0b2bd814b134c78834c805c", + "line": 3796, + "resource_type": "aws_instance", + "resource_name": "example-instance-421", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example421}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example421}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example421}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d3a29bb674b8b1a7aa9202b29bb95fd4e10ac9a6aac3835015c1e7a52168302a", + "line": 7333, + "resource_type": "aws_instance", + "resource_name": "example-instance-814", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example814}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example814}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example814}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cc519e9462cc63503caf3acdec97639cd90176f8ef15a52a639348d9e2e2bcc2", + "line": 5947, + "resource_type": "aws_instance", + "resource_name": "example-instance-660", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example660}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example660}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example660}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f87a2b4d413ddf788b3af726612070048385f766f0746afad0a91a9d9d9c6829", + "line": 7081, + "resource_type": "aws_instance", + "resource_name": "example-instance-786", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example786}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example786}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example786}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3ee1f4a416897b095d48993e3de915a19ccd2b5c91ed18334ad66892d5373520", + "line": 2896, + "resource_type": "aws_instance", + "resource_name": "example-instance-321", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example321}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example321}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example321}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9336ddc3ad90aa6b93b6385437f5fac33c8ef3f447ebb053d1fa97c8b74c8dfc", + "line": 4489, + "resource_type": "aws_instance", + "resource_name": "example-instance-498", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example498}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example498}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example498}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5693869e2e6c564fb3d62a7bb10679be26ba487b8e7f125f3309c8b4395efd34", + "line": 5848, + "resource_type": "aws_instance", + "resource_name": "example-instance-649", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example649}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example649}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example649}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8f5e326679c162d9584fc5c4d0fb8ac68de383a3aeb6e0a7132d258b2489efd7", + "line": 7468, + "resource_type": "aws_instance", + "resource_name": "example-instance-829", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example829}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example829}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example829}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "583c68825cbc513536652b58bf9326aaeb8d40ca259c184f806bef7798307c2f", + "line": 6496, + "resource_type": "aws_instance", + "resource_name": "example-instance-721", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example721}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example721}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example721}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a052d254f31eff7fabc389aa07897d173aa5273e1ac27d6801e01de6c0de2b57", + "line": 1663, + "resource_type": "aws_instance", + "resource_name": "example-instance-184", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example184}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example184}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example184}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fd3c3942641af0f37fedb358c161ba925ca3ca62f25d9c48c94fce5e76b7ef10", + "line": 2410, + "resource_type": "aws_instance", + "resource_name": "example-instance-267", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example267}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example267}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example267}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5eca3cc8d0ebd429312a09f5b242b135aca51ec8e2b39dad3f6632dbac793706", + "line": 8134, + "resource_type": "aws_instance", + "resource_name": "example-instance-903", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example903}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example903}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example903}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "85741d3172da9d97013b2f3b5310d7065fa08a4189947a479b8e6d3a20d914e3", + "line": 2194, + "resource_type": "aws_instance", + "resource_name": "example-instance-243", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example243}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example243}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example243}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ed310a7a3a02196e44e51cf16513c5da6ffad797a3d5f653b008a23daa26d129", + "line": 7909, + "resource_type": "aws_instance", + "resource_name": "example-instance-878", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example878}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example878}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example878}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "feed0cc490db9a51d69c4d0bea7f8d3d6e4468b650e6658b57f3fd89626884c9", + "line": 4480, + "resource_type": "aws_instance", + "resource_name": "example-instance-497", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example497}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example497}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example497}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7a85ba4be5bb17dca0dc40f6f08aad37e5fb0f5aa12b37e5cfcd6d1e4cc7b1e0", + "line": 6136, + "resource_type": "aws_instance", + "resource_name": "example-instance-681", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example681}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example681}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example681}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "770472d33e3421625942a997c6192a3fd3ab193f0eb64cecda0767420e2d18b3", + "line": 871, + "resource_type": "aws_instance", + "resource_name": "example-instance-96", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example96}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example96}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example96}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e4f673b07a14af804dfd572a48396473719a67a115756294f2c989028c000741", + "line": 7864, + "resource_type": "aws_instance", + "resource_name": "example-instance-873", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example873}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example873}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example873}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9e25cbe26511cd3616f011de9db9963c837416129a820a928d4f066d23402ab0", + "line": 952, + "resource_type": "aws_instance", + "resource_name": "example-instance-105", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example105}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example105}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example105}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "726132fb470f9fade4cbcdc3ca4ca03e8b4b0536f5ef9d310b5cf7d473306f5c", + "line": 7018, + "resource_type": "aws_instance", + "resource_name": "example-instance-779", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example779}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example779}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example779}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "725b6ef42a2bf445fa0d78621fffd752be9517eb0fdafd4bc709775c912b6238", + "line": 4291, + "resource_type": "aws_instance", + "resource_name": "example-instance-476", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example476}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example476}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example476}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0d4f731ca5ee960ca93920f5d711a551dcd61ce9d63eeebaaa2f1fb87aab13db", + "line": 7207, + "resource_type": "aws_instance", + "resource_name": "example-instance-800", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example800}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example800}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example800}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2c6efac92d74f626efca2834450d73f6777d4face1b83e821d161cced844982a", + "line": 7315, + "resource_type": "aws_instance", + "resource_name": "example-instance-812", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example812}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example812}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example812}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "80953eee2e06dbc219eaf3ed24e684e6ffe0e9ffc19860fad7e15076d18b35b7", + "line": 7297, + "resource_type": "aws_instance", + "resource_name": "example-instance-810", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example810}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example810}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example810}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "089c0d94347e5314afbd09b5d11f4bd6a6878a86c262b78f568bc24603f9776f", + "line": 2005, + "resource_type": "aws_instance", + "resource_name": "example-instance-222", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example222}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example222}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example222}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "93db33be111ebfe3d1cd21a0af8774d4f0362c1d6a7c99a6e15e8053bf3e4ee4", + "line": 5317, + "resource_type": "aws_instance", + "resource_name": "example-instance-590", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example590}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example590}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example590}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ce824124137cb7c2d6525c6ced0fb26e1280fbff72be46fdee4b1b7b537c3743", + "line": 1321, + "resource_type": "aws_instance", + "resource_name": "example-instance-146", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example146}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example146}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example146}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3d36dcc9ef89caa00d39fa0a79e6aff41fc8a55468aec46c298ce61f5e9ae0fa", + "line": 8305, + "resource_type": "aws_instance", + "resource_name": "example-instance-922", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example922}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example922}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example922}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "170dc5763b1b9be97be9fe41df35b854c735ef428e708ebf322afd64afe438ca", + "line": 3121, + "resource_type": "aws_instance", + "resource_name": "example-instance-346", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example346}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example346}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example346}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9f64c1a75269d18d767a1a0b69c92eec2e491795c5ca0b97a1e434a9845b46aa", + "line": 3445, + "resource_type": "aws_instance", + "resource_name": "example-instance-382", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example382}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example382}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example382}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7c283aa6f2970097b2551dd6ba983cba7f2537e5c00299822c3caa7b0731a810", + "line": 6568, + "resource_type": "aws_instance", + "resource_name": "example-instance-729", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example729}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example729}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example729}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "83c37d982a6e4e1192f247c61aa4a8e573b4fdc658d7fbf56d679d5527c6008a", + "line": 7234, + "resource_type": "aws_instance", + "resource_name": "example-instance-803", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example803}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example803}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example803}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a58adc3d1ed0f1e4d9556f6a055f33ebcf6333f1f7a0e3471730c64d72db1cb7", + "line": 4687, + "resource_type": "aws_instance", + "resource_name": "example-instance-520", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example520}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example520}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example520}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8a7d1f68723c926bfdff7945bbaaa8a79af772a0c4ed65b6aa9657a39abbe5f5", + "line": 7270, + "resource_type": "aws_instance", + "resource_name": "example-instance-807", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example807}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example807}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example807}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e082741493af696a4083f69cd46f79f8aaa1770ea82688bb01b703e34317bfab", + "line": 1042, + "resource_type": "aws_instance", + "resource_name": "example-instance-115", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example115}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example115}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example115}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "135a138cdd1d728adc00c693376d1721fb2b109f2e2030e858f5b71ae0965ed3", + "line": 2212, + "resource_type": "aws_instance", + "resource_name": "example-instance-245", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example245}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example245}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example245}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b251b20751c738566a647f18aa82f46dd6dff4fbb6a2d9b2aea5f625be2b6ddf", + "line": 3706, + "resource_type": "aws_instance", + "resource_name": "example-instance-411", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example411}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example411}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example411}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "445d8b50fead32b8ec4882833da56af595574673a971f181cebd0053886a922d", + "line": 6550, + "resource_type": "aws_instance", + "resource_name": "example-instance-727", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example727}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example727}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example727}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d0ad0328a9d878972843f3912d3547f620aae0feff05b50c2656be88d690df8a", + "line": 7522, + "resource_type": "aws_instance", + "resource_name": "example-instance-835", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example835}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example835}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example835}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "357818bf8de1e83b725bde66395ed1b298445195081e84490269dcaddd8dfc4a", + "line": 8170, + "resource_type": "aws_instance", + "resource_name": "example-instance-907", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example907}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example907}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example907}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b6023e5f8b5af0e0210381c315990ef55fcbe75962b7b063ee1885bc024437ba", + "line": 8476, + "resource_type": "aws_instance", + "resource_name": "example-instance-941", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example941}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example941}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example941}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8de88520fb485f66ca8b0ae033aa7fd14cca2734ed337ffa285a0361a1341b10", + "line": 3940, + "resource_type": "aws_instance", + "resource_name": "example-instance-437", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example437}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example437}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example437}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ae043698296a314c06100aae3e392c962021c546effc065a5bb673dcbd0105f1", + "line": 7810, + "resource_type": "aws_instance", + "resource_name": "example-instance-867", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example867}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example867}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example867}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "60c9b98538443128123fd80f2f12118a9f5c2ec840e1175ae869753aa9048996", + "line": 8161, + "resource_type": "aws_instance", + "resource_name": "example-instance-906", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example906}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example906}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example906}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4babbcb98e599888cdde4d99118a02d3de6828a5ea15241c2abbf6b28be12e78", + "line": 4498, + "resource_type": "aws_instance", + "resource_name": "example-instance-499", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example499}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example499}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example499}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e57fb0eb0c29c76c351fa6bdf2cb96557c7128a2957c4bc553ba198dc3f09e23", + "line": 2275, + "resource_type": "aws_instance", + "resource_name": "example-instance-252", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example252}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example252}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example252}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8f1b078cde1b4e6b9306c002b81910b50806584812cb53a356ec668136b05211", + "line": 655, + "resource_type": "aws_instance", + "resource_name": "example-instance-72", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example72}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example72}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example72}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5140551781ce1bb727fbb6f958674c287e7a54aadbcb2f296ff465ec393f362b", + "line": 5785, + "resource_type": "aws_instance", + "resource_name": "example-instance-642", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example642}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example642}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example642}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6ce69c1241475ee5a328f8d4dab7b39adf561b6852ccc2f52d8e4e2c8655e413", + "line": 7000, + "resource_type": "aws_instance", + "resource_name": "example-instance-777", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example777}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example777}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example777}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f9c7a3d83483bbbbcb5532925cc4c941c41c50826b7b4f47f5ca3de14228a550", + "line": 2167, + "resource_type": "aws_instance", + "resource_name": "example-instance-240", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example240}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example240}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example240}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6af6cf1faec2c494558eb8ed54799bba9553f6b7b0e1d3910166c13139123f76", + "line": 3985, + "resource_type": "aws_instance", + "resource_name": "example-instance-442", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example442}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example442}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example442}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4d60937126e89ba043ddd339c508689b0ada6e7c44984c3bc21c045ca124b968", + "line": 412, + "resource_type": "aws_instance", + "resource_name": "example-instance-45", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example45}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example45}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example45}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "81ac899c103dbeea30823c075903b239167152f9b41d8ec618f6b420338a7bab", + "line": 7783, + "resource_type": "aws_instance", + "resource_name": "example-instance-864", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example864}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example864}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example864}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "944325e35600e8eed146b43226c3f11bf0ada90a658b10660121cee85c624c74", + "line": 3481, + "resource_type": "aws_instance", + "resource_name": "example-instance-386", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example386}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example386}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example386}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "eb0bb34dac1d94828664380f5459b06a9d67ee3670f7c5bb91c7b65c48ecd801", + "line": 1816, + "resource_type": "aws_instance", + "resource_name": "example-instance-201", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example201}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example201}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example201}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2ea5c8891bdb00f401108f38d0b09169b47be855c03ad3a7c5c9a9239c179e81", + "line": 4381, + "resource_type": "aws_instance", + "resource_name": "example-instance-486", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example486}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example486}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example486}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e479bd46c3469b0cc3f227ea6f9ac2162e04fd0b6e4e9d26216f51ecc294d79c", + "line": 6100, + "resource_type": "aws_instance", + "resource_name": "example-instance-677", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example677}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example677}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example677}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "75383a3bc8a45f1d0a4e46156cb67029f8ae4dc025452ec983e6b0439c06b5d9", + "line": 6343, + "resource_type": "aws_instance", + "resource_name": "example-instance-704", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example704}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example704}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example704}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a322db5de2243ec290a5cec835030ec0bfcb0b223c1b470dfabd29b87b29ce23", + "line": 2068, + "resource_type": "aws_instance", + "resource_name": "example-instance-229", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example229}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example229}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example229}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d679d6db9c9928ea932cf6ca6ca21af655feddf2e9f6cf93e1845c51f112bdf3", + "line": 3076, + "resource_type": "aws_instance", + "resource_name": "example-instance-341", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example341}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example341}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example341}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b55b249acb585203e76932f3193d55063cbf1266e31cd88b67fa03d5aadf5c87", + "line": 2419, + "resource_type": "aws_instance", + "resource_name": "example-instance-268", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example268}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example268}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example268}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f973bf2517bcccdc504f8a7259d6e542e94b592b9c22828a35901f5f20943369", + "line": 3841, + "resource_type": "aws_instance", + "resource_name": "example-instance-426", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example426}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example426}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example426}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8be3329aeddaf814983e9615b22c017ae6b302fd2e87f57aac88d1c3f5b2aae2", + "line": 4147, + "resource_type": "aws_instance", + "resource_name": "example-instance-460", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example460}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example460}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example460}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6100e184820260ccc5bd85f9fcc0853596a67f9a4442822cd480ec9e826d596d", + "line": 7819, + "resource_type": "aws_instance", + "resource_name": "example-instance-868", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example868}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example868}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example868}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8905fca17a82c14a5e54111853fed31d5f91b34544a7ef55c690ce0663eaea6f", + "line": 8935, + "resource_type": "aws_instance", + "resource_name": "example-instance-992", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example992}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example992}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example992}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8edd48cd1d1515e3cd6db5e357583fba53a01e1d7c41f02c2271ddb6757b6bb4", + "line": 4804, + "resource_type": "aws_instance", + "resource_name": "example-instance-533", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example533}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example533}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example533}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "18000b2f2733186f08bffd9a1f4e232672fbf628c0280e55baf070a094232a3f", + "line": 8566, + "resource_type": "aws_instance", + "resource_name": "example-instance-951", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example951}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example951}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example951}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3dc1a9a63d31fdefc5079381bf9b87228fd55c02528a32b826c4ad986ec50c86", + "line": 4714, + "resource_type": "aws_instance", + "resource_name": "example-instance-523", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example523}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example523}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example523}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "411d7ce1d63f7388aa99112df24fd9dc0ee5f73604fae59c198733b5ffe605a8", + "line": 3967, + "resource_type": "aws_instance", + "resource_name": "example-instance-440", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example440}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example440}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example440}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a371b342acafc3999c45ea766000f82ce04d77d2b787dd3b74cf0515b1791b8a", + "line": 7405, + "resource_type": "aws_instance", + "resource_name": "example-instance-822", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example822}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example822}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example822}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "796e3d86f8f60f866acf7ec5ac91171d27cd8620b63f78540f2584f5b25ae3c8", + "line": 3553, + "resource_type": "aws_instance", + "resource_name": "example-instance-394", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example394}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example394}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example394}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "15ce67433c4dd8d2b2da96a334994e3e374b28497f9df44b4786bd0a31f1e000", + "line": 4867, + "resource_type": "aws_instance", + "resource_name": "example-instance-540", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example540}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example540}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example540}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d760ab7b5fd41bba109a45a1b70c83b24ad37349b92acfe92c2e5c19a5cb2148", + "line": 7639, + "resource_type": "aws_instance", + "resource_name": "example-instance-848", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example848}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example848}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example848}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9356bd2494f7cc2b1e1d1e4ce904ecdc49e21b5809c4d3b35e80c3c97dd4307f", + "line": 241, + "resource_type": "aws_instance", + "resource_name": "example-instance-26", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example26}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example26}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example26}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0329964751ad4aa6b10efb9eaf7d3fb3e8464b4a9b38b29ab8136619f11fd4d0", + "line": 3202, + "resource_type": "aws_instance", + "resource_name": "example-instance-355", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example355}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example355}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example355}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "77763f617f78778ea2eb7e548da85a6be07448f7cfc69446489415b45df61136", + "line": 6685, + "resource_type": "aws_instance", + "resource_name": "example-instance-742", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example742}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example742}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example742}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5f4e1d3ee47b6591a8ba7d12730a40c12195dce77690906123d01c929522d9cb", + "line": 8089, + "resource_type": "aws_instance", + "resource_name": "example-instance-898", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example898}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example898}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example898}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "68d3fe59f0601076de6760f38064c8bd76973559504c601f11ca09e2c76f5909", + "line": 277, + "resource_type": "aws_instance", + "resource_name": "example-instance-30", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example30}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example30}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example30}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c8758f863284229b8b5db22f1a14546331a868c3eef917d9d0fc5b20f3484c9f", + "line": 988, + "resource_type": "aws_instance", + "resource_name": "example-instance-109", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example109}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example109}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example109}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4c4ead4d86cff0bed5f8f7432443a4b3a93947fc5ce682082c1065a9c9ac8cc7", + "line": 3625, + "resource_type": "aws_instance", + "resource_name": "example-instance-402", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example402}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example402}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example402}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5d06777e700926952d308086bfb0e39ce4b469b9a52db3b0640b8e1c6144af91", + "line": 8521, + "resource_type": "aws_instance", + "resource_name": "example-instance-946", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example946}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example946}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example946}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "376631af3a38786a0e01f72c0658c232a0cd8b6a135830445311b5fb4628652c", + "line": 4750, + "resource_type": "aws_instance", + "resource_name": "example-instance-527", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example527}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example527}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example527}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5fa2ef5fd53923ce1e2f1ddb7893a76e4e83d2b70dccd8c506acb6a9d4b30a89", + "line": 6937, + "resource_type": "aws_instance", + "resource_name": "example-instance-770", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example770}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example770}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example770}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b26bdb235db5d0cb30d3e2aa146b9323ad3cd7a1df2ec65b8e50b7fe4a4458b3", + "line": 5857, + "resource_type": "aws_instance", + "resource_name": "example-instance-650", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example650}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example650}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example650}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "08c4bf3e0aa942033894f51699f436415466b6ef0e92875c9e118e6e544567f2", + "line": 8350, + "resource_type": "aws_instance", + "resource_name": "example-instance-927", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example927}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example927}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example927}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ba179ff8bc8e74c3bbb41076831c1d8516f8819c7dc92e2f89d4e9753172df2f", + "line": 3886, + "resource_type": "aws_instance", + "resource_name": "example-instance-431", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example431}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example431}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example431}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f38b07ba8d28d99ed7317f9e2ecca1cca1208c11893e1b0acfa3ff23cf61b222", + "line": 1060, + "resource_type": "aws_instance", + "resource_name": "example-instance-117", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example117}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example117}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example117}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6ec345d850180a2e33ce5cff86c0532387e5de899d91c3570e219f7d42334634", + "line": 8062, + "resource_type": "aws_instance", + "resource_name": "example-instance-895", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example895}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example895}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example895}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8570a4f3a5ad031fcc22535a45f0e27ea0460f7c9d30f76f1d4048c848f6904c", + "line": 889, + "resource_type": "aws_instance", + "resource_name": "example-instance-98", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example98}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example98}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example98}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a39a8c319384ebe9c2375dd5c99c17e094a623f228390fbcdca9f56fda74650b", + "line": 1987, + "resource_type": "aws_instance", + "resource_name": "example-instance-220", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example220}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example220}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example220}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "565e9d8d8fdb92506564df8737436c4703f2eabd0a7dc8773bc2d03b5d5cd838", + "line": 3544, + "resource_type": "aws_instance", + "resource_name": "example-instance-393", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example393}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example393}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example393}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "15986bd058dcf028036af60f5745f5180bbea24e66562bb41b3ddbd9324b839e", + "line": 25, + "resource_type": "aws_instance", + "resource_name": "example-instance-2", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example2}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example2}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example2}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f47aecebd1772fa2784931938cb743f8dce7d36a024e3a7721edb9fe681b1703", + "line": 5236, + "resource_type": "aws_instance", + "resource_name": "example-instance-581", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example581}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example581}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example581}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6e38b9d04dd008812bea0d24834e485283ebd9f430f0c9d0826dc5705be3c483", + "line": 1195, + "resource_type": "aws_instance", + "resource_name": "example-instance-132", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example132}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example132}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example132}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "810d4f05e2872ac877a85e6843e09607985b91cf869f389f799fcad763043e78", + "line": 3283, + "resource_type": "aws_instance", + "resource_name": "example-instance-364", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example364}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example364}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example364}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bc9a3e3b34408f1d113595430a649e343bc4b86f541e4ae4c77947ae395b6a0c", + "line": 8656, + "resource_type": "aws_instance", + "resource_name": "example-instance-961", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example961}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example961}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example961}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8316d85ba81a70a504da0405dd36b88d830ca9daa8d278850a9e0ce185d2cbd4", + "line": 1375, + "resource_type": "aws_instance", + "resource_name": "example-instance-152", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example152}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example152}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example152}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c0a4bd08c4d9f0ebf529e2f9823c2dfd40081212a0dee7bef2ec8d86acd485d3", + "line": 1699, + "resource_type": "aws_instance", + "resource_name": "example-instance-188", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example188}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example188}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example188}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d767d03ef995eb00e806f1d6b114e127bfa2047a3f9333ec183597d6cb761d12", + "line": 2329, + "resource_type": "aws_instance", + "resource_name": "example-instance-258", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example258}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example258}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example258}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "832f1a1d3d6aa38e93ebdf16de72a9c335eb9d258c8e49e16661011f4c0489f1", + "line": 8647, + "resource_type": "aws_instance", + "resource_name": "example-instance-960", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example960}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example960}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example960}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ec3d159ad1d8a4deaee235c65636c8bf8dea80c33c22487dc310b6f7d1ff8966", + "line": 709, + "resource_type": "aws_instance", + "resource_name": "example-instance-78", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example78}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example78}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example78}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "074bab3418480188b203c8c34bc37861e8efc39284e50beabec6bb0aab54c36b", + "line": 8971, + "resource_type": "aws_instance", + "resource_name": "example-instance-996", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example996}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example996}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example996}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "56e05dc4c46379425438a411cdbd59cbe6dd5ab501ffd8d70c23c2eed5beaaaf", + "line": 4318, + "resource_type": "aws_instance", + "resource_name": "example-instance-479", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example479}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example479}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example479}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0bf763be831d30c23a829494a78f50d579f526a86f84f17dbe5d554e9be55e97", + "line": 6577, + "resource_type": "aws_instance", + "resource_name": "example-instance-730", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example730}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example730}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example730}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "735bd8de3e721c199f867d8a9a2823552ffe48f440590cfb4c5f892f347064b1", + "line": 3508, + "resource_type": "aws_instance", + "resource_name": "example-instance-389", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example389}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example389}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example389}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ffba8450cf9be0b21f20e1e7783823034393b12d4c190405953d9c0e89442d27", + "line": 2644, + "resource_type": "aws_instance", + "resource_name": "example-instance-293", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example293}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example293}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example293}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "35c6726f36faf2f33f33479eab46b6ffeb0167a1d7b1333b6a1b147956ea58de", + "line": 3139, + "resource_type": "aws_instance", + "resource_name": "example-instance-348", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example348}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example348}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example348}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9ef5f0d9281162bb08da1a4264105c134568eb868102b734ce227c8e7e367df1", + "line": 259, + "resource_type": "aws_instance", + "resource_name": "example-instance-28", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example28}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example28}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example28}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5458c80d67dbd20b45ab2dfe2aa3b82d73e8d9ac973a7b3185e17fe85426eb09", + "line": 4192, + "resource_type": "aws_instance", + "resource_name": "example-instance-465", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example465}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example465}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example465}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e5ce8b9648fbe1e8b94105ca9a65f96fc203efebefac7c27cb05bb6e3970d20b", + "line": 124, + "resource_type": "aws_instance", + "resource_name": "example-instance-13", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example13}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example13}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example13}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "41c00f27f478ddce847d35d6f7b5f05732b84622469afd17eb1c9c0a82c99c2b", + "line": 6190, + "resource_type": "aws_instance", + "resource_name": "example-instance-687", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example687}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example687}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example687}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2a41a1a049c383959ecba110c066447268b63b91128a407af901ca5c0770312c", + "line": 2572, + "resource_type": "aws_instance", + "resource_name": "example-instance-285", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example285}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example285}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example285}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "19a359afe80a461396dab4b4dfe750672c9ba7daeba080fcff611d66d313108e", + "line": 2176, + "resource_type": "aws_instance", + "resource_name": "example-instance-241", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example241}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example241}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example241}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ed3a20724673c3f715e64a70e1734455e95e8a7b99abfef0e1cc4b15b612d4b6", + "line": 5245, + "resource_type": "aws_instance", + "resource_name": "example-instance-582", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example582}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example582}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example582}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b5b1232a93971a1b671caa9ec1ef2fa53e924ec042d9cfc4590b6935e3cfe71f", + "line": 4102, + "resource_type": "aws_instance", + "resource_name": "example-instance-455", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example455}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example455}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example455}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e32ca84e56d4237b9b7b7fc4a0130d724ce989ff8980e2fe7be0b3a9297d0450", + "line": 6388, + "resource_type": "aws_instance", + "resource_name": "example-instance-709", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example709}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example709}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example709}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a6fc542eb276996ec37a8038ea3a712239641816aea8233826253783571fc5e1", + "line": 6514, + "resource_type": "aws_instance", + "resource_name": "example-instance-723", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example723}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example723}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example723}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b527ea3ebbb51be24bf22da4f5a813ae07622fa3b48b12ceb0c2f3e34c62ec0a", + "line": 7099, + "resource_type": "aws_instance", + "resource_name": "example-instance-788", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example788}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example788}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example788}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d451d8504c86e6b3f96a63b72547f503fc75a0c8bf31edfb494ff0c9ce52f1c1", + "line": 4354, + "resource_type": "aws_instance", + "resource_name": "example-instance-483", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example483}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example483}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example483}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "831123c2b2743113126d51989b57032e4ebce160e052c3d484bf3c19aab4f9d9", + "line": 4777, + "resource_type": "aws_instance", + "resource_name": "example-instance-530", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example530}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example530}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example530}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "335e8d2751c3e84d7915c214a57b17a84893579129dd3798cf6c122ef81587bc", + "line": 133, + "resource_type": "aws_instance", + "resource_name": "example-instance-14", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example14}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example14}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example14}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e5eaaeaaf96d1356a7e9041e83fe7fa27d3466168a7c801b1c79652aa5590917", + "line": 6901, + "resource_type": "aws_instance", + "resource_name": "example-instance-766", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example766}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example766}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example766}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d8001092562fca8d7b83a7b867571641e42e2691792b4a9a83f6b61d03b99b5b", + "line": 1132, + "resource_type": "aws_instance", + "resource_name": "example-instance-125", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example125}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example125}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example125}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a0dd314e7a3516ae7d11db9d32c1d623cfadbde31a0285e86e86f53c333daa17", + "line": 8080, + "resource_type": "aws_instance", + "resource_name": "example-instance-897", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example897}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example897}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example897}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4c3050ea6a50480de7d5712f514ba840300d474505d8dae4e437337a24160193", + "line": 1546, + "resource_type": "aws_instance", + "resource_name": "example-instance-171", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example171}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example171}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example171}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e3a6bafe508ba85d37f422dbc7bb31e22e5d3ec5de527339637460e57bc4672c", + "line": 2617, + "resource_type": "aws_instance", + "resource_name": "example-instance-290", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example290}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example290}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example290}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "65846980343f978be61fdc37dad66506a93d82b35089137b01fccafccb996ecf", + "line": 8926, + "resource_type": "aws_instance", + "resource_name": "example-instance-991", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example991}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example991}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example991}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4b29387b2f33fb6c57a798ed5fb4583fbeb46adc03711c3cda58505fb083186a", + "line": 7189, + "resource_type": "aws_instance", + "resource_name": "example-instance-798", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example798}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example798}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example798}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c91305e6aaa37a048a67d0998417463ac172fcdc0ae534f6db621fcd1bec6371", + "line": 6253, + "resource_type": "aws_instance", + "resource_name": "example-instance-694", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example694}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example694}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example694}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "75f14be8cfd4efd28e4cdba5e77cfd56ce6d3cd6a00c7c678d0627979aba0cdc", + "line": 3391, + "resource_type": "aws_instance", + "resource_name": "example-instance-376", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example376}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example376}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example376}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b92a3513fe075b03bc6bbbb665da46c4eea3e9bbe9ba5386ac448b19d62f8f6c", + "line": 4534, + "resource_type": "aws_instance", + "resource_name": "example-instance-503", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example503}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example503}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example503}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "77a7a16071a3621fd340f279c24b350573dc36d243749bd6a663213a0c86af69", + "line": 1951, + "resource_type": "aws_instance", + "resource_name": "example-instance-216", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example216}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example216}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example216}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bf6d2aa4879c77c51a454ab2be0b152df82c66913c1019c237b2df52f2644637", + "line": 8791, + "resource_type": "aws_instance", + "resource_name": "example-instance-976", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example976}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example976}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example976}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e385914ca279263cff579536e03e70e98aa1cf1d5ca5d585a83f599fe342d419", + "line": 2860, + "resource_type": "aws_instance", + "resource_name": "example-instance-317", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example317}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example317}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example317}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c4841e8d0aa391345ee22445d18033666d49313946170da7e25c9e45b056ab34", + "line": 8728, + "resource_type": "aws_instance", + "resource_name": "example-instance-969", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example969}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example969}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example969}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e0b26bbe91905cfdaa6c66781de463b84081b6f942caa877679605ffa38c456a", + "line": 7351, + "resource_type": "aws_instance", + "resource_name": "example-instance-816", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example816}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example816}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example816}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "735c9f2e6ed570234477815f3f685f4aeee211081777fff391888db9c4a892af", + "line": 943, + "resource_type": "aws_instance", + "resource_name": "example-instance-104", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example104}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example104}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example104}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3cf10c153e7e4206cb73e8b7e0a20e73afb59a4ff76e8f58c6feb3d850d0bc1d", + "line": 2311, + "resource_type": "aws_instance", + "resource_name": "example-instance-256", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example256}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example256}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example256}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "806784c2ba627dc6400e28c7191ea99faa23d24da46f196b1a6162e929441b2d", + "line": 4876, + "resource_type": "aws_instance", + "resource_name": "example-instance-541", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example541}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example541}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example541}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3a01921f9be79768fd0269cbdaf4ba3d09a9ba75e1481973e41213fa066cf702", + "line": 493, + "resource_type": "aws_instance", + "resource_name": "example-instance-54", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example54}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example54}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example54}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9325a611c98b409c781b3fdeac32f2d01271d7a401a70060199c725dad75ae0b", + "line": 2914, + "resource_type": "aws_instance", + "resource_name": "example-instance-323", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example323}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example323}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example323}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "013d5efd3233bd4e58954764a1d9ff9e828bf397d585d56fbdb0ff608a9575ff", + "line": 5173, + "resource_type": "aws_instance", + "resource_name": "example-instance-574", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example574}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example574}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example574}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "00b5b63a102f498275c846410c1ccc969a0d857533280a3bba14c1f97bf8a028", + "line": 5335, + "resource_type": "aws_instance", + "resource_name": "example-instance-592", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example592}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example592}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example592}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "46d23a1902298a685be0f0850eb3f3d3bb3c05463897a714e3ba79d0b1109203", + "line": 358, + "resource_type": "aws_instance", + "resource_name": "example-instance-39", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example39}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example39}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example39}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1f3d3c3007af969514a73285867f993cfd52a226dc8b603d2708205deb9425fe", + "line": 7153, + "resource_type": "aws_instance", + "resource_name": "example-instance-794", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example794}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example794}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example794}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d9042c1971c021f9dee7e591f9109163667d87f938a0786110b04f02e379ee1b", + "line": 3319, + "resource_type": "aws_instance", + "resource_name": "example-instance-368", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example368}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example368}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example368}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9a17c68d1c966d0c2c04978e457e0cbb185bbb5e85062e8281529763f5019b9d", + "line": 6640, + "resource_type": "aws_instance", + "resource_name": "example-instance-737", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example737}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example737}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example737}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d0ffa6c37a34b3b59a01511ed71f7d8c7d46ea9494f9e1e5435d1562441faaf8", + "line": 1348, + "resource_type": "aws_instance", + "resource_name": "example-instance-149", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example149}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example149}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example149}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c723536aef492d6c468e63345a6fd5c6a7fe8a8af371bfb65e8dc82a8f0caf6f", + "line": 2221, + "resource_type": "aws_instance", + "resource_name": "example-instance-246", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example246}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example246}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example246}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5c708692485488d4f2d6eaea1d04ddf36da400f5d2ea720285e075a164c06b36", + "line": 16, + "resource_type": "aws_instance", + "resource_name": "example-instance-1", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example1}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example1}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example1}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dafd599844a202a792e0b3b4bcd2732c290f09168fd0d53a8d14bcc8dafa56ea", + "line": 2455, + "resource_type": "aws_instance", + "resource_name": "example-instance-272", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example272}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example272}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example272}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "92e53a96b66eb2f38826b48dcb47a038ddff16b0b5da26314a562802898801ed", + "line": 6784, + "resource_type": "aws_instance", + "resource_name": "example-instance-753", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example753}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example753}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example753}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8c807d37c28501de47dfd45014e6d31505bef5fa87fd71ec023d1ab2403d6c19", + "line": 3652, + "resource_type": "aws_instance", + "resource_name": "example-instance-405", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example405}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example405}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example405}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d673953d95a706ae9974324da651cee34552bcaa78a721bbcd525acb59b1c78d", + "line": 7126, + "resource_type": "aws_instance", + "resource_name": "example-instance-791", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example791}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example791}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example791}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5fc2fbee59e140a140c15b4fc21d829393f209c4d75cdcf7a6802c64053361be", + "line": 8485, + "resource_type": "aws_instance", + "resource_name": "example-instance-942", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example942}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example942}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example942}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "353acdd261f2566c9b5825a38ab66917d7e8437f1d25a3c0b495e2ead0f72e22", + "line": 2014, + "resource_type": "aws_instance", + "resource_name": "example-instance-223", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example223}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example223}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example223}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5c013bfb5c37378ce7b194e6f3c2eaac0564f57d4b7d0aec191b1f3045d82212", + "line": 7738, + "resource_type": "aws_instance", + "resource_name": "example-instance-859", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example859}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example859}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example859}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "21b60accc3e6c5c906f9aa6912782723b256ac00b07b55c5d60f43fedb31fbed", + "line": 1600, + "resource_type": "aws_instance", + "resource_name": "example-instance-177", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example177}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example177}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example177}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b312d2da366b7ca6beb85da018b939991002cc8574355e01f5da99020957083a", + "line": 5416, + "resource_type": "aws_instance", + "resource_name": "example-instance-601", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example601}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example601}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example601}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9adef69c27acd8e01007b63b46dbd6e546bade752a0fe8d9b14f5a1319956cb8", + "line": 2050, + "resource_type": "aws_instance", + "resource_name": "example-instance-227", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example227}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example227}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example227}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "67cdf72f5a95ed5f935dcacbb8756df7a70c581889c3c95f8e6665f23c72f592", + "line": 8386, + "resource_type": "aws_instance", + "resource_name": "example-instance-931", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example931}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example931}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example931}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1b47a7bf3528f04d3348978582d606a37ad89ac1dd4c2cee0a47ed93f4b9b637", + "line": 3697, + "resource_type": "aws_instance", + "resource_name": "example-instance-410", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example410}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example410}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example410}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "43744e6eaff8564840b71cda4bc42afe16b0be15d4bee253381bf9287ef53540", + "line": 3859, + "resource_type": "aws_instance", + "resource_name": "example-instance-428", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example428}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example428}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example428}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1c4203d406d4c3ba827c51e912c17e88291b77067f9c341284eff1e653bff9e7", + "line": 4426, + "resource_type": "aws_instance", + "resource_name": "example-instance-491", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example491}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example491}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example491}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "66a245c63f9223e50240ab6d11d548478e04298d498a1c9b4da0c3246ccf6181", + "line": 4444, + "resource_type": "aws_instance", + "resource_name": "example-instance-493", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example493}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example493}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example493}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "97e0e01bd9f287dda6528547b84d845972490512f70cf144b695cbb81e9ebba3", + "line": 1537, + "resource_type": "aws_instance", + "resource_name": "example-instance-170", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example170}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example170}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example170}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "32293700a6a8e1c888c4ededfe3f6943631efe42e066a22afcc4c321e4782e93", + "line": 1555, + "resource_type": "aws_instance", + "resource_name": "example-instance-172", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example172}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example172}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example172}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b9c6b13709f80e6ff7f69a158bdaa73c30f5d8b504ad1527482f18045ad8ed4d", + "line": 2941, + "resource_type": "aws_instance", + "resource_name": "example-instance-326", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example326}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example326}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example326}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "58cbbf49a3e539fd717eef7e6017ab716c1707bd3a101be6a8176736b6a0f03e", + "line": 2950, + "resource_type": "aws_instance", + "resource_name": "example-instance-327", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example327}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example327}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example327}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "10863acb5ad0483749826b724be85e388f3ed4715a3b7708b5dc79b5980e772f", + "line": 4129, + "resource_type": "aws_instance", + "resource_name": "example-instance-458", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example458}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example458}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example458}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0907e02aefc586371a4d791508e47c1fe0dc05721e0121058b9e24c3313b130f", + "line": 2248, + "resource_type": "aws_instance", + "resource_name": "example-instance-249", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example249}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example249}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example249}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cfe8d819f2c090ea9d8b10bba7dd6ac34e76a794df3954919104af0ce5335ffb", + "line": 2752, + "resource_type": "aws_instance", + "resource_name": "example-instance-305", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example305}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example305}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example305}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "32dda033675c79f34205e4282f2c41de277934eddfd7e1a8a28c3741033905bf", + "line": 4165, + "resource_type": "aws_instance", + "resource_name": "example-instance-462", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example462}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example462}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example462}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e68102a477c02d55994b6e2d34eb3f8e1c1f7f5c76771e5ca83bd6ee4ff081b0", + "line": 5380, + "resource_type": "aws_instance", + "resource_name": "example-instance-597", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example597}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example597}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example597}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0cdf695ec0abd277a881fe4b26cd386d518be526fb96a0339b672d347235ec62", + "line": 6037, + "resource_type": "aws_instance", + "resource_name": "example-instance-670", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example670}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example670}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example670}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "161bb7e56d8a359639a8c82f3490fdf9f1b333497f040e058c3456c34d3e65d6", + "line": 1528, + "resource_type": "aws_instance", + "resource_name": "example-instance-169", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example169}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example169}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example169}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9a0f0b4c5ec7b70ff795cea488575df71ab2140c09cba45cd36d5f4d149cd1be", + "line": 4111, + "resource_type": "aws_instance", + "resource_name": "example-instance-456", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example456}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example456}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example456}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6792280db1da730f944a88baeda6694f89d6f388c662d727f551d39d1aef0056", + "line": 7972, + "resource_type": "aws_instance", + "resource_name": "example-instance-885", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example885}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example885}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example885}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "94c8cbf4b191894a1db97777396e86bd86ed436fc537ed13df3ad8792f2afb8a", + "line": 5047, + "resource_type": "aws_instance", + "resource_name": "example-instance-560", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example560}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example560}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example560}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7cb2f4320016e4b5f29fe8db646be3be1fc002483f4a45ee2b7f718cd2de196f", + "line": 7702, + "resource_type": "aws_instance", + "resource_name": "example-instance-855", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example855}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example855}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example855}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "64b76b47aa41c6573b5ff4519e25b42e07a1246cf57fe19700ed70b4e68db2d1", + "line": 3913, + "resource_type": "aws_instance", + "resource_name": "example-instance-434", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example434}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example434}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example434}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bde20646f3dc4c23e939e652e913d8bc59d501ad5254a7a9fc289a475691493b", + "line": 3247, + "resource_type": "aws_instance", + "resource_name": "example-instance-360", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example360}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example360}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example360}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "007b179abbe0ac18984a4b800afbafaadd5055fde6a74f4d2561187ece974333", + "line": 7171, + "resource_type": "aws_instance", + "resource_name": "example-instance-796", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example796}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example796}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example796}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d5f1ccf43599c7a74a8c920e02851640c6f26c8fef7ad49d9378334cbc78f80e", + "line": 4201, + "resource_type": "aws_instance", + "resource_name": "example-instance-466", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example466}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example466}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example466}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "eb214e21d14a896471e8fe1d128536e45003222922503f5d0ad83ab12338c279", + "line": 250, + "resource_type": "aws_instance", + "resource_name": "example-instance-27", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example27}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example27}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example27}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d6bbfba04b08ccc0f9cc84f0318d7f04a2defff9128828e25e855cc357c090c0", + "line": 6712, + "resource_type": "aws_instance", + "resource_name": "example-instance-745", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example745}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example745}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example745}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "93d4f271f023bde7d6a61cecb3e1d1dc5d38159ff6aae3f0c4d9870456b3c210", + "line": 7918, + "resource_type": "aws_instance", + "resource_name": "example-instance-879", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example879}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example879}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example879}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7457268fc2a8eff6998fbc4c9ff0732feb9aa4e68d9e632d7ff0410e6c359062", + "line": 187, + "resource_type": "aws_instance", + "resource_name": "example-instance-20", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example20}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example20}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example20}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6afb7f4c9b61e27ffbef1e43e8dcb73deebf5464901c064303a106b67a7540a6", + "line": 7684, + "resource_type": "aws_instance", + "resource_name": "example-instance-853", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example853}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example853}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example853}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "da2688484acd78012a2330399cd20079267786e11cf70f5701b2accf68021ad4", + "line": 214, + "resource_type": "aws_instance", + "resource_name": "example-instance-23", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example23}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example23}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example23}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "17cc08bb212b98b60845c6172321d47e69e4570c27ebd813721351d731293ff4", + "line": 4939, + "resource_type": "aws_instance", + "resource_name": "example-instance-548", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example548}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example548}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example548}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "db692a32296228cae190e58e7a494e5a7944663cba424e500c08305fdd36fc0c", + "line": 5110, + "resource_type": "aws_instance", + "resource_name": "example-instance-567", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example567}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example567}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example567}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "62ba624f4d28cccb6ffb70b51ff7b073a1c7c51953429e355c53b9513445c0f6", + "line": 5821, + "resource_type": "aws_instance", + "resource_name": "example-instance-646", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example646}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example646}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example646}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "925a61b4b8e9d882c763d0a0d9e8838ce6aadf65583946f97a01c8e8fe72687c", + "line": 3148, + "resource_type": "aws_instance", + "resource_name": "example-instance-349", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example349}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example349}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example349}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f7723578aa8a1b61e3a93972ffb0fe61a56667b512b42fac0c35899e7f6b1ff8", + "line": 6280, + "resource_type": "aws_instance", + "resource_name": "example-instance-697", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example697}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example697}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example697}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8a3abc149c2e7789c658de82d839385f790e7dec82b02568d6c6f09528ebc892", + "line": 295, + "resource_type": "aws_instance", + "resource_name": "example-instance-32", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example32}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example32}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example32}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b3ec68a13e0a6d5e7aa2cedc5c39a93a80196a9c63d914c62e131fede7235194", + "line": 4651, + "resource_type": "aws_instance", + "resource_name": "example-instance-516", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example516}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example516}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example516}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8211b12653fedd5b4bd4c03a5e1da1efb9407e9b49583285a668b3d13f163733", + "line": 4516, + "resource_type": "aws_instance", + "resource_name": "example-instance-501", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example501}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example501}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example501}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5cbf165e7529fc0faaea6b82de6ad0d71d009a59bc821a13884c1c9678f5f5b6", + "line": 1357, + "resource_type": "aws_instance", + "resource_name": "example-instance-150", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example150}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example150}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example150}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b0bb87a338fc81aef069f9ab0771f2bd8d382ac4709907e0fa5cdca2c62edbd8", + "line": 4273, + "resource_type": "aws_instance", + "resource_name": "example-instance-474", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example474}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example474}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example474}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "247496b11e1c2be2fd993feace1ed9c80b232065b5d0f96cfeed4590167f42f1", + "line": 6964, + "resource_type": "aws_instance", + "resource_name": "example-instance-773", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example773}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example773}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example773}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "42df26904e09324c0746758f5e6b9f47d6183228ef027dcccaa8901fd309ef5a", + "line": 5929, + "resource_type": "aws_instance", + "resource_name": "example-instance-658", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example658}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example658}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example658}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5fb24c8f22cb333f9ca1ffd67a2c3d41b74f00a8966846470b1310637510ab5e", + "line": 520, + "resource_type": "aws_instance", + "resource_name": "example-instance-57", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example57}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example57}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example57}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "03fb1fe5091596ce0a1515693a6b7c0a9d7ef246b4f5ee1cc88450c9649613cb", + "line": 6316, + "resource_type": "aws_instance", + "resource_name": "example-instance-701", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example701}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example701}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example701}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "006b2d608980d1783d2fafacab04c2f35f930ac3a40579c7652ac8cfbe612f61", + "line": 2608, + "resource_type": "aws_instance", + "resource_name": "example-instance-289", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example289}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example289}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example289}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f0cafa4113b6697ac603131a59ff4fef752d057f17c5f7dc962051bab2d96b9e", + "line": 2905, + "resource_type": "aws_instance", + "resource_name": "example-instance-322", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example322}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example322}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example322}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f09a6db2409452632b8ca64bfc082bcbb031faf5a9ab03c44a78488d5e4a9017", + "line": 8332, + "resource_type": "aws_instance", + "resource_name": "example-instance-925", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example925}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example925}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example925}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2dbe8d599069e144f14de25a23125f09c183210eef4b14ade57790aafebe1baa", + "line": 3922, + "resource_type": "aws_instance", + "resource_name": "example-instance-435", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example435}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example435}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example435}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e1ae04cd661aa9c342a12bfd734817f2d2440c637f95b14d7944f531167167e9", + "line": 5029, + "resource_type": "aws_instance", + "resource_name": "example-instance-558", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example558}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example558}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example558}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bc4cc1dcc84e174b25f46d1c843fef252777b69bead6ab43b1aa73b599acfd30", + "line": 8944, + "resource_type": "aws_instance", + "resource_name": "example-instance-993", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example993}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example993}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example993}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "343e3d0175ad432d2b5458c945ba9f8477b60adbd2000bb6f395511d3ea997c6", + "line": 4903, + "resource_type": "aws_instance", + "resource_name": "example-instance-544", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example544}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example544}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example544}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cd63502e9f7ceb28a27ddd04f4c31fc05e2e9749f798c586133f743d281266ad", + "line": 6532, + "resource_type": "aws_instance", + "resource_name": "example-instance-725", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example725}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example725}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example725}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7fb1cd4aa45520b6133846716a09491be56f9e5c273ff1ba53ca76d06d2efb3c", + "line": 7441, + "resource_type": "aws_instance", + "resource_name": "example-instance-826", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example826}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example826}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example826}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7be4d132ede8172633bd33ba405cdc204bc2804e2fdc046b1e356a83b0670984", + "line": 3157, + "resource_type": "aws_instance", + "resource_name": "example-instance-350", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example350}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example350}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example350}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "948e950331fa765cc7e8a5dc3b24d9878586e082175977eafbc32ba3c43898ac", + "line": 1681, + "resource_type": "aws_instance", + "resource_name": "example-instance-186", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example186}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example186}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example186}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2ea076d32c4c82600f62fd1dac5aba0721bdde6308abf6ef0a59f8d1ef4a9b1c", + "line": 8053, + "resource_type": "aws_instance", + "resource_name": "example-instance-894", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example894}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example894}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example894}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "24bc42e8652faa595bb3c68a959862b6b3f73c7b9fb6bea72503990114cf1791", + "line": 1177, + "resource_type": "aws_instance", + "resource_name": "example-instance-130", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example130}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example130}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example130}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1d77553d018d07adc57127a6a1253aaa812afaf4e172469811bd9ee0f9bcb84f", + "line": 1609, + "resource_type": "aws_instance", + "resource_name": "example-instance-178", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example178}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example178}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example178}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "656ed8febdf56f79ce20ce71398cda54c69715d057d68ec023a56792a86b4a7a", + "line": 1780, + "resource_type": "aws_instance", + "resource_name": "example-instance-197", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example197}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example197}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example197}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8a3ee7f3da41bd863c10ea90b7d35d33b0289917e6974365560b94ef6b632dea", + "line": 5758, + "resource_type": "aws_instance", + "resource_name": "example-instance-639", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example639}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example639}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example639}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e51e52317f2977ce136a79851c0c93b99328c29949a39ec41a810b2f10350804", + "line": 3904, + "resource_type": "aws_instance", + "resource_name": "example-instance-433", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example433}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example433}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example433}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e157d676f210e8bd41151a27d5962f9b61fa7e594e3409aa698dbc447567df0b", + "line": 6199, + "resource_type": "aws_instance", + "resource_name": "example-instance-688", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example688}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example688}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example688}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "07f1a89eabf1d447a90e9d4e1a80dbc86e6bd7edab100e413f394766a7aaeb13", + "line": 664, + "resource_type": "aws_instance", + "resource_name": "example-instance-73", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example73}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example73}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example73}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3eb14dd38fe5feb4e8f6bfc8227cc4cdf08d1ca2d356f7913c7f43d46145d4b7", + "line": 2437, + "resource_type": "aws_instance", + "resource_name": "example-instance-270", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example270}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example270}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example270}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "907ddf89cbc4cecc78dea1029361e1071038f4b917833a1ca04b39871a5df8ee", + "line": 1861, + "resource_type": "aws_instance", + "resource_name": "example-instance-206", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example206}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example206}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example206}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "282f538e78747e6df5d12f92edf99524b99aeb5aee440e74c81661846b7393ee", + "line": 5272, + "resource_type": "aws_instance", + "resource_name": "example-instance-585", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example585}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example585}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example585}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fc615c64fdb85bd82c72881d91d1c455829402806bfd96b38eefe4852facbda1", + "line": 8260, + "resource_type": "aws_instance", + "resource_name": "example-instance-917", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example917}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example917}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example917}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c7a09a1dafcf6fb3601a1562e45ef1bc5827926a3e77953e4d25d5c54cbf2e25", + "line": 6181, + "resource_type": "aws_instance", + "resource_name": "example-instance-686", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example686}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example686}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example686}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8183b2df259f4f585f97abd9787ce01bf39a4e663e3f035b527660403b072180", + "line": 4930, + "resource_type": "aws_instance", + "resource_name": "example-instance-547", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example547}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example547}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example547}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e656653b8ea1c02cdb7aa09e0e74279e59cbf085523e4b2fb24120d329342afc", + "line": 7495, + "resource_type": "aws_instance", + "resource_name": "example-instance-832", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example832}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example832}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example832}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "aca9c04808c47e4e4ca4613d4f9f96c2f185edf22ffc6eee5d1d2a10103ad046", + "line": 1024, + "resource_type": "aws_instance", + "resource_name": "example-instance-113", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example113}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example113}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example113}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4bdd2d89e5d92a27e344a0cd154f7b1ab4030486471296d59f19a5d65bf2b6e3", + "line": 2374, + "resource_type": "aws_instance", + "resource_name": "example-instance-263", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example263}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example263}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example263}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4ff03ebd3eafb529618ab0024f65d9c44d613988085d27bd78d58f5459f2ce7b", + "line": 3346, + "resource_type": "aws_instance", + "resource_name": "example-instance-371", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example371}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example371}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example371}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2536165d14a15fd24db2230da7e29c1d8772115cca1f587bb170949d369572ec", + "line": 8629, + "resource_type": "aws_instance", + "resource_name": "example-instance-958", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example958}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example958}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example958}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6927c2f6a5cbf41412fbdf2ed3c37b125741dd1aad22b13430cffb5a1129475e", + "line": 3607, + "resource_type": "aws_instance", + "resource_name": "example-instance-400", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example400}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example400}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example400}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a136fa7d4408595b86a6399f3bf77d1222ba6b2c3a65502b96aae35cc9909e2d", + "line": 7459, + "resource_type": "aws_instance", + "resource_name": "example-instance-828", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example828}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example828}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example828}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b2157a036f2de25c2f7e88f24d69162aadd80076fd770701bcdc3d79d1f208a7", + "line": 1807, + "resource_type": "aws_instance", + "resource_name": "example-instance-200", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example200}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example200}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example200}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f8e40ebe00f52a7b492fd90da94ca2e3519ec2789d55ea9e0847320a97a8f6ea", + "line": 1708, + "resource_type": "aws_instance", + "resource_name": "example-instance-189", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example189}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example189}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example189}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7ac2c2461ac701328d0e04a963f8c94a4817a15f4041f8a5cec2c17f416bef02", + "line": 6829, + "resource_type": "aws_instance", + "resource_name": "example-instance-758", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example758}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example758}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example758}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0623b35c5dadd0b6607094d7890e2580d49d610bc7413407523cfa1f37b881bb", + "line": 7603, + "resource_type": "aws_instance", + "resource_name": "example-instance-844", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example844}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example844}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example844}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4e19d597686486d439e2bd6e07a89ea0faab99fefbfc1719d2109e61f43614e9", + "line": 5137, + "resource_type": "aws_instance", + "resource_name": "example-instance-570", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example570}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example570}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example570}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5534ce15c682516796c0d1d9866c10695706d164c849a47e2424247605b4ebea", + "line": 8044, + "resource_type": "aws_instance", + "resource_name": "example-instance-893", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example893}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example893}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example893}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "70dfa6e744a564f7864df01fea5d45063f6bfc4b7e3a9a87387410cbf802f370", + "line": 2095, + "resource_type": "aws_instance", + "resource_name": "example-instance-232", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example232}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example232}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example232}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2c0bad7f9f1b481c1fe2745472d5387ac45d1b9a153bca594e516109e27f3719", + "line": 4093, + "resource_type": "aws_instance", + "resource_name": "example-instance-454", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example454}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example454}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example454}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7ed26f037dcdd1d0edd18310c56293f3ee93fef60975e5ee053fbf826fb02b73", + "line": 3049, + "resource_type": "aws_instance", + "resource_name": "example-instance-338", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example338}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example338}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example338}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9c4c0ae3ea8539af12feeb3a8a6bb6705c4f5c17e4ad0cd1436fe55831c9a4ea", + "line": 7387, + "resource_type": "aws_instance", + "resource_name": "example-instance-820", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example820}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example820}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example820}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3c961c3e195373bb968323f83fb889489d9cc2b5b5b9a00d909b8dcca26c354d", + "line": 8368, + "resource_type": "aws_instance", + "resource_name": "example-instance-929", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example929}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example929}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example929}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1ff1fe098751d9ed70364d567313e7de4b936b9b8fc51b3244501ef930d317bc", + "line": 2626, + "resource_type": "aws_instance", + "resource_name": "example-instance-291", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example291}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example291}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example291}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0c0c74f70814680546c837e4a673dbcec46c60c92988d3efba032f51111263cb", + "line": 3823, + "resource_type": "aws_instance", + "resource_name": "example-instance-424", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example424}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example424}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example424}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "15d13acacee5b5787b3814e5e00f974bff4ac5a7c19f0ff3fb8b51a1722590da", + "line": 8503, + "resource_type": "aws_instance", + "resource_name": "example-instance-944", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example944}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example944}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example944}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0bf5188da27150350cbdc47cd1b3a6176422c6ab7c441d38c8d9297c6cb83a51", + "line": 5326, + "resource_type": "aws_instance", + "resource_name": "example-instance-591", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example591}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example591}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example591}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4ae7926b8f9603b09500c030a32cc93f9af02d305fc97084f7783d4c8962e4a7", + "line": 8917, + "resource_type": "aws_instance", + "resource_name": "example-instance-990", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example990}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example990}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example990}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "668d2645fe8217ea6884f227ff688cd33d725dd036aa7c568c0b688baf07c583", + "line": 1087, + "resource_type": "aws_instance", + "resource_name": "example-instance-120", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example120}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example120}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example120}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "606b36a00d61ff0340a3973684be2e288130b23f5501d959d1ead0906212c858", + "line": 3418, + "resource_type": "aws_instance", + "resource_name": "example-instance-379", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example379}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example379}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example379}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b5cbc07170e71025da51ff131dae2004cf3303a67e4c08c0f5eafa2fddee3fa9", + "line": 4543, + "resource_type": "aws_instance", + "resource_name": "example-instance-504", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example504}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example504}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example504}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d8ce8bcfeeb9a1cfa9454c76231b637232e2df3b79486805c0ed6eca63477b5a", + "line": 6478, + "resource_type": "aws_instance", + "resource_name": "example-instance-719", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example719}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example719}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example719}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8b7e4fb678cb71222021e69480af9b352fcd09cb12fa9f9df72280bddff63884", + "line": 4336, + "resource_type": "aws_instance", + "resource_name": "example-instance-481", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example481}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example481}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example481}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cbd6a6da588cb752b6fcc1d50ccfb00c4e3a3bba183510fc8244e6a97a0b29f4", + "line": 5884, + "resource_type": "aws_instance", + "resource_name": "example-instance-653", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example653}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example653}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example653}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d7700eb33d4d5ed96d9bf70970ca014f74586ca6e9a965be95be782d1a046d71", + "line": 6559, + "resource_type": "aws_instance", + "resource_name": "example-instance-728", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example728}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example728}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example728}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "26733424c20c64139fa1855654c94d27102f19c366f045ef314119d10ab61759", + "line": 232, + "resource_type": "aws_instance", + "resource_name": "example-instance-25", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example25}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example25}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example25}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7955b95ac32caf93ebd7f56253d5563d1163c31dd4bab4f4347a609334075048", + "line": 8206, + "resource_type": "aws_instance", + "resource_name": "example-instance-911", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example911}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example911}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example911}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "45a1336d88caa7a397096cc10bbf50428a47412ea3f89bf47c7867e1c1c66af3", + "line": 8467, + "resource_type": "aws_instance", + "resource_name": "example-instance-940", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example940}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example940}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example940}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c7cd3ca054d85450868be5e7ead270b95f3e115202671acd8ddbe9f288fbd79d", + "line": 5623, + "resource_type": "aws_instance", + "resource_name": "example-instance-624", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example624}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example624}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example624}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f6f86f0c65a218c2fca71bbaeb75b0112546dbed42ec24a5316b997241c955bd", + "line": 8593, + "resource_type": "aws_instance", + "resource_name": "example-instance-954", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example954}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example954}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example954}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6f5741605354d42b0163817f25aafdc025b20915629643684ced5996d2c25255", + "line": 1591, + "resource_type": "aws_instance", + "resource_name": "example-instance-176", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example176}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example176}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example176}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "76b89f1d96ed573c2d30a44518f0461664af2fd0aaf68a6f1787fd1269747377", + "line": 3778, + "resource_type": "aws_instance", + "resource_name": "example-instance-419", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example419}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example419}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example419}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "495d989b07a5af235b432ec76d0fb5acb9f2f9446f1e1c48f306e65da107ffc5", + "line": 4156, + "resource_type": "aws_instance", + "resource_name": "example-instance-461", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example461}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example461}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example461}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "335d13c9cbc086096fa3435a2c5d1d822bb0cc2a3ffe6bfc409f4fc1acb3368d", + "line": 574, + "resource_type": "aws_instance", + "resource_name": "example-instance-63", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example63}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example63}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example63}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5e5cdccf5dfe16e4efb71d31409245a45c7069ba9da9478bd6cd09f9331cc94b", + "line": 2563, + "resource_type": "aws_instance", + "resource_name": "example-instance-284", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example284}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example284}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example284}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "89fce7a01e180ff34b39747ace40102e1cbb54c36f6032035402831c98ec1d2d", + "line": 2581, + "resource_type": "aws_instance", + "resource_name": "example-instance-286", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example286}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example286}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example286}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "58e947ab7151a4af442cd3e1e55b80a8be16060523310c6a779db5fd34a28ea0", + "line": 3931, + "resource_type": "aws_instance", + "resource_name": "example-instance-436", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example436}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example436}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example436}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1ae6cebf0a0be6e25d4ada707ee368a8f56caa47e2d0038ab0c37b7abd162c29", + "line": 5587, + "resource_type": "aws_instance", + "resource_name": "example-instance-620", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example620}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example620}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example620}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "53eb21e4f2e997cae7dd9ca1150b22e40769d6bd31b3387b1e34db7b91921a1d", + "line": 6523, + "resource_type": "aws_instance", + "resource_name": "example-instance-724", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example724}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example724}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example724}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bab4126ad0f9cfc38ebd37ace324f6dfe395cc2f80f2c33ec91e7565b8ddd409", + "line": 8008, + "resource_type": "aws_instance", + "resource_name": "example-instance-889", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example889}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example889}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example889}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b79f51e7632098487fc0f5a4f30700bc0b56660465bebe425bfbd680691743e6", + "line": 7648, + "resource_type": "aws_instance", + "resource_name": "example-instance-849", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example849}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example849}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example849}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e2b3cce9f095e18c9ddf4462cdb7a8d4aaf10f21d06965dc6408db440b1e0ec9", + "line": 1267, + "resource_type": "aws_instance", + "resource_name": "example-instance-140", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example140}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example140}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example140}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a28fffd71721558a9b0b6a0ff48270aa211705f9108f02f11c2220369436e484", + "line": 6460, + "resource_type": "aws_instance", + "resource_name": "example-instance-717", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example717}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example717}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example717}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "19a0143e6acc28be345431242c6a6cd8be85275bae422bb6d3bd719dd12ae3fe", + "line": 7378, + "resource_type": "aws_instance", + "resource_name": "example-instance-819", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example819}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example819}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example819}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "322b75b47fefbefcbc202f6dfa89ff54d36f0b53c9af4fe6a170a395dd4059fe", + "line": 1411, + "resource_type": "aws_instance", + "resource_name": "example-instance-156", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example156}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example156}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example156}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2cf3d55e06f340dbc6ef18ebb033e0ad60e51d5718eb52abda2641c8814e0688", + "line": 331, + "resource_type": "aws_instance", + "resource_name": "example-instance-36", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example36}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example36}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example36}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e46767c53510a9d1c8a5df1a6eff699655d1538415482f8cde6d021615913cfa", + "line": 6613, + "resource_type": "aws_instance", + "resource_name": "example-instance-734", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example734}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example734}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example734}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b7e4cbc0fb318664db88e9d0db243f597938c95b6f1330960ff63de807e8e138", + "line": 430, + "resource_type": "aws_instance", + "resource_name": "example-instance-47", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example47}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example47}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example47}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "91f0e1539721cfa12ed18a9c92f50f06c53b2e0d2eca09f019ff54e400715976", + "line": 5227, + "resource_type": "aws_instance", + "resource_name": "example-instance-580", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example580}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example580}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example580}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9b19e8975143e9a880f806524825d00f0ea643697c9dcc1933552e74c4e64c05", + "line": 628, + "resource_type": "aws_instance", + "resource_name": "example-instance-69", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example69}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example69}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example69}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f8653cef00da087e6c60fc05c2bcd6ebd2547d50150dcaf16cf9d820f3e38a22", + "line": 1483, + "resource_type": "aws_instance", + "resource_name": "example-instance-164", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example164}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example164}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example164}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "88a35c0c95267a5bb0847a1e4960f329b588564dd099c05a85d31ae5818ca15d", + "line": 7342, + "resource_type": "aws_instance", + "resource_name": "example-instance-815", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example815}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example815}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example815}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bc748f08efd880f21906daf992762437154149566610df20e27cd90dc45f8ae4", + "line": 2464, + "resource_type": "aws_instance", + "resource_name": "example-instance-273", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example273}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example273}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example273}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8c496dabb32ff951e5d4577afb1ea863331a306ae053ec900567796dd74c72ab", + "line": 5470, + "resource_type": "aws_instance", + "resource_name": "example-instance-607", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example607}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example607}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example607}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8757b6ee6c93b5b51dc6c5f676bdbf5815fc3ae8b230716439bb67dd4e0ba63c", + "line": 601, + "resource_type": "aws_instance", + "resource_name": "example-instance-66", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example66}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example66}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example66}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "378cbd084eff459f89db96f4c5f13402c282298083a43af3f73b78eeb0f7f0d3", + "line": 6802, + "resource_type": "aws_instance", + "resource_name": "example-instance-755", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example755}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example755}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example755}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "70eb113610031a428266034d28e8753626276cc5e182f11c78ba4b7e92d4016c", + "line": 7900, + "resource_type": "aws_instance", + "resource_name": "example-instance-877", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example877}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example877}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example877}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7ed4bc28d49f913ac894f3717e33fb16c4108839ac9477161a69172bb02cae83", + "line": 2338, + "resource_type": "aws_instance", + "resource_name": "example-instance-259", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example259}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example259}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example259}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "be840f25a653cf5b83fa2c347c526df477689f1f04e0cf29641df38e4bd216aa", + "line": 4570, + "resource_type": "aws_instance", + "resource_name": "example-instance-507", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example507}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example507}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example507}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8f8a5a2906bba375dddec11ce981cdd76ffdcdab2d816c8191dfccacee3b3036", + "line": 196, + "resource_type": "aws_instance", + "resource_name": "example-instance-21", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example21}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example21}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example21}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "944bab45bdc110459e5ab85435c63d4791096adef3f6fa46a69f2d4340e531a9", + "line": 2500, + "resource_type": "aws_instance", + "resource_name": "example-instance-277", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example277}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example277}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example277}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a4fc9ab5552ae690f3eefe50bed14ae8804bb8547e0f7f0fb2893ec66091e50a", + "line": 3976, + "resource_type": "aws_instance", + "resource_name": "example-instance-441", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example441}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example441}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example441}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0d9d3eaaaab4d88c7c7c8cf8df8cf9b222302c69825633816f096ab96daff8bb", + "line": 4264, + "resource_type": "aws_instance", + "resource_name": "example-instance-473", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example473}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example473}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example473}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c9e8d4f9a83e239a0a1dee7c7864177432c731b2167cd47d3021ab9d246cd9cb", + "line": 8278, + "resource_type": "aws_instance", + "resource_name": "example-instance-919", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example919}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example919}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example919}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "13bfa475fce7831568e9c91f0b445efd3a886e428a7baa9fd669d33cc750df23", + "line": 5254, + "resource_type": "aws_instance", + "resource_name": "example-instance-583", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example583}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example583}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example583}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "88cc8ea26325dbaf08f49b15bb319eeff9ee6f23b96ad2807b5faea71a902100", + "line": 7612, + "resource_type": "aws_instance", + "resource_name": "example-instance-845", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example845}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example845}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example845}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1a00e34c58777b7d1690a60f6d365f7318fcbd44b63b1c5d2b6e2c13e8cfc784", + "line": 4255, + "resource_type": "aws_instance", + "resource_name": "example-instance-472", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example472}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example472}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example472}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "338c6ece540c0b4aedd0e9a387bcbac81efa1f0fd3ad164ab7940226fc9e2b9a", + "line": 2257, + "resource_type": "aws_instance", + "resource_name": "example-instance-250", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example250}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example250}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example250}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d8139b074a47b24ac50e15bd2aa57c56c257d238afc21b9afa5863be1d331335", + "line": 2428, + "resource_type": "aws_instance", + "resource_name": "example-instance-269", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example269}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example269}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example269}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "829669ec7837165abfd16917281a35f662bf3235e23035b27753819afaf9dbfe", + "line": 8998, + "resource_type": "aws_instance", + "resource_name": "example-instance-999", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example999}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example999}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example999}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "849f3cc7ec675ca3d4f22fe5d881cebfd55d9fb05db543c35d31b78fe9789482", + "line": 5605, + "resource_type": "aws_instance", + "resource_name": "example-instance-622", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example622}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example622}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example622}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b17d3717e4c9e9203e9c7452dd79af0afb8b92f21be6be321ade95737b32a87d", + "line": 700, + "resource_type": "aws_instance", + "resource_name": "example-instance-77", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example77}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example77}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example77}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "269338082745e88accd9c6acd0869fe6c5d0a1458cf464f4f4a9dd2de668f3c6", + "line": 3499, + "resource_type": "aws_instance", + "resource_name": "example-instance-388", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example388}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example388}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example388}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "18278860dfc1222c8d0d0ae6c7d5bb5997192d4ee1f29e446d8065e7b2a90f52", + "line": 6172, + "resource_type": "aws_instance", + "resource_name": "example-instance-685", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example685}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example685}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example685}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "587d4cd3aeecb09f6e8f2e0fc424e68f9835a0f14783accfacb072ffcb9079eb", + "line": 8818, + "resource_type": "aws_instance", + "resource_name": "example-instance-979", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example979}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example979}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example979}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7a235780a8d1a59765f03f6188729e2fde5ceae4772feae6f6ba6795501f9bf0", + "line": 3769, + "resource_type": "aws_instance", + "resource_name": "example-instance-418", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example418}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example418}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example418}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "789eaf4321dc659b2210c4265f309858b400c6c5fefd4ef10161ed28a617906c", + "line": 763, + "resource_type": "aws_instance", + "resource_name": "example-instance-84", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example84}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example84}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example84}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ad5a7e170473d7b61fb9bf8938e9ac665e6f4d17ecb59706105a0ba72f696d24", + "line": 916, + "resource_type": "aws_instance", + "resource_name": "example-instance-101", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example101}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example101}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example101}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8c5f6d29cb20b721a741032321f6fe753d46da5cbeed9b83373859badabdcb46", + "line": 619, + "resource_type": "aws_instance", + "resource_name": "example-instance-68", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example68}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example68}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example68}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "84b256d92c04d18c5c6daa15475820acd6314b083fa0d6c48c8bc20494344390", + "line": 2527, + "resource_type": "aws_instance", + "resource_name": "example-instance-280", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example280}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example280}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example280}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "035110c4173ee30f491d5bbbea9b09ffda451d71e80087b0cdf63c30b12c52f4", + "line": 2203, + "resource_type": "aws_instance", + "resource_name": "example-instance-244", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example244}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example244}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example244}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "13794f7539a8d447baf2f682cced571f7113bfe216dc1a4e166862f2063f6744", + "line": 2797, + "resource_type": "aws_instance", + "resource_name": "example-instance-310", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example310}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example310}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example310}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d5f8627764e8d23e178578b5e5a1498bb95e4105dd1eb7efc90b82e4d2e39c7f", + "line": 1303, + "resource_type": "aws_instance", + "resource_name": "example-instance-144", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example144}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example144}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example144}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "00dd293e1075eaca9cabf116eaf3da3c25289d3770ae0c214a719905129dd183", + "line": 6235, + "resource_type": "aws_instance", + "resource_name": "example-instance-692", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example692}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example692}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example692}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2a7af0889c34537e405a2a9423385e618353f34da44506d74a5d9b2f5ad37e05", + "line": 8665, + "resource_type": "aws_instance", + "resource_name": "example-instance-962", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example962}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example962}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example962}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c8f393ea79c66b7f066a733c6dc106beb3c218bbed4412faf34a8c0b6b4906f3", + "line": 8962, + "resource_type": "aws_instance", + "resource_name": "example-instance-995", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example995}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example995}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example995}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "21492af0f7816ea5564e886b460ff71fa2f58baf25e562f4f5d6ce7c467f7b62", + "line": 4831, + "resource_type": "aws_instance", + "resource_name": "example-instance-536", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example536}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example536}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example536}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7198f81e084283e8fc43f3bc257c528b6248e579c9e2849cccc81e8dc72df866", + "line": 7801, + "resource_type": "aws_instance", + "resource_name": "example-instance-866", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example866}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example866}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example866}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d20f3f9baba21c2127fdebc0ebbaaf7490ff17060b3859e0e0b315b9ea32e40f", + "line": 745, + "resource_type": "aws_instance", + "resource_name": "example-instance-82", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example82}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example82}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example82}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c62a2d761686c5d4d0ce97a36c251a86785973fbcc5127b6921ba6b5538c0e60", + "line": 7945, + "resource_type": "aws_instance", + "resource_name": "example-instance-882", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example882}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example882}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example882}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d7c250a5a1c135e819aa306bfd84baec39694fad1fa670021e9af64a393f0f72", + "line": 1006, + "resource_type": "aws_instance", + "resource_name": "example-instance-111", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example111}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example111}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example111}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8e44d712a061b72a52a8da3c1aef1a21d03ddcff95278d2f277b1f0fa7fd74f9", + "line": 6694, + "resource_type": "aws_instance", + "resource_name": "example-instance-743", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example743}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example743}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example743}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e6b37638968968792648ec3ec5041fb5ad25fa832d605b4aad7385c3476afd60", + "line": 421, + "resource_type": "aws_instance", + "resource_name": "example-instance-46", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example46}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example46}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example46}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3f4d8f94150eeffd358f2a2355a1bc03183ff1b22d60ef902057a617ad8252eb", + "line": 6118, + "resource_type": "aws_instance", + "resource_name": "example-instance-679", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example679}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example679}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example679}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "26994d25cc57cf1ebb895b4328a2a6f68c2f030400c55576ad3ec6d73021d066", + "line": 1114, + "resource_type": "aws_instance", + "resource_name": "example-instance-123", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example123}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example123}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example123}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8e1cac2f6ba911261ed0eddd41e4cb0be91325c71851104d61a4930d12b87079", + "line": 2680, + "resource_type": "aws_instance", + "resource_name": "example-instance-297", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example297}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example297}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example297}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "acd0c0f32e9ec38c1d1196662e11ba727b07a6d1a70eaf2a1feefd1c2460b4fb", + "line": 3166, + "resource_type": "aws_instance", + "resource_name": "example-instance-351", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example351}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example351}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example351}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fccecd3771cb9dbfdee1c8729a5bb7a476ccf2d68378e62ea64b3f53e90648f9", + "line": 3562, + "resource_type": "aws_instance", + "resource_name": "example-instance-395", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example395}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example395}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example395}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9ea10f55dd64ab23fd8615cc79fed452a4420a9feb5c08255f2d741bc28d5037", + "line": 313, + "resource_type": "aws_instance", + "resource_name": "example-instance-34", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example34}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example34}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example34}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "409bdbe6e7634ca86883f30b2252fb2c65f3e15316c225c7e0fd6bb37c259ecf", + "line": 6946, + "resource_type": "aws_instance", + "resource_name": "example-instance-771", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example771}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example771}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example771}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2218703c19012b68589dbb3a1287a18f85c3e63fbc8d9e5801cbd0e303b22ca3", + "line": 6793, + "resource_type": "aws_instance", + "resource_name": "example-instance-754", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example754}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example754}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example754}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0bd9e2e41cd36de944e169f5f527a95528999ce0095865f6ce6237c79c648e43", + "line": 8737, + "resource_type": "aws_instance", + "resource_name": "example-instance-970", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example970}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example970}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example970}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2f0fe6eee09aff1c54fc6808cef228e2a5a7986feac523b3e8a4514cc44983f1", + "line": 2689, + "resource_type": "aws_instance", + "resource_name": "example-instance-298", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example298}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example298}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example298}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f6385e9679bb7338e4e3c5b9274443f4278ba9e52ba45cbe39a8eeebef640dcd", + "line": 8755, + "resource_type": "aws_instance", + "resource_name": "example-instance-972", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example972}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example972}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example972}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "890aec5188e42da00aba6121ff9cd09c8067b76a8da7606036c113d2959a85b2", + "line": 8764, + "resource_type": "aws_instance", + "resource_name": "example-instance-973", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example973}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example973}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example973}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d06d23c1a01742746d85ac192b991237d6c0c19589b65201592333fc1ea0a259", + "line": 5281, + "resource_type": "aws_instance", + "resource_name": "example-instance-586", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example586}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example586}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example586}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f5bde4c829d521f429a9ac5369d0fc779b31f7815b198f2d4d24f3ae67e71d50", + "line": 4246, + "resource_type": "aws_instance", + "resource_name": "example-instance-471", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example471}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example471}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example471}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0daeb351eacad9248d1f7d9ccd85a78059f46fa473771c8d2bb212018ded2254", + "line": 6424, + "resource_type": "aws_instance", + "resource_name": "example-instance-713", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example713}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example713}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example713}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d4014a0d915abfeb46a7b4af3d6154061c3005357163ccb5e98dee7df836cd2f", + "line": 7567, + "resource_type": "aws_instance", + "resource_name": "example-instance-840", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example840}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example840}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example840}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6a0bbf502202685515d75ed02bcfbd763455925f8ae29dd4356342931391cfca", + "line": 2401, + "resource_type": "aws_instance", + "resource_name": "example-instance-266", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example266}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example266}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example266}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "51536d98f39a118ec3f85de0f7b007f5abecc1f3a60966900d3259cf944c9332", + "line": 6604, + "resource_type": "aws_instance", + "resource_name": "example-instance-733", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example733}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example733}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example733}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d7eb5c522d7defd80f3035bfeef82ade3a7f22d4aac11182045234687cd74a8d", + "line": 1285, + "resource_type": "aws_instance", + "resource_name": "example-instance-142", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example142}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example142}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example142}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ad368a28a5846978c9fc253da17091f906a91148f124610df9bfde7f26df8f0f", + "line": 4588, + "resource_type": "aws_instance", + "resource_name": "example-instance-509", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example509}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example509}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example509}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9a64f25be1ab93344e7842b1fdf90ff469bc43da9540f092e3b0fee31b6e139d", + "line": 502, + "resource_type": "aws_instance", + "resource_name": "example-instance-55", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example55}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example55}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example55}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e98651f8eac0ad5ec891fd5c447bbe06f01f88e1c29e2ee1e8bcf3fde33f9160", + "line": 1690, + "resource_type": "aws_instance", + "resource_name": "example-instance-187", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example187}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example187}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example187}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8df20136b4dcceccc1af54ab1f502c9fcbef50071af64dccd89668c938624e7f", + "line": 8782, + "resource_type": "aws_instance", + "resource_name": "example-instance-975", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example975}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example975}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example975}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a9eeb5269f102a9879d0065f96a1126e7b2f6511b54a4946701132d3b93af2c8", + "line": 8188, + "resource_type": "aws_instance", + "resource_name": "example-instance-909", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example909}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example909}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example909}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3dd764bcd23b25a34a490562d17f3e1ff45c363a6448010b7dfdd2f9e7a27d0d", + "line": 1159, + "resource_type": "aws_instance", + "resource_name": "example-instance-128", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example128}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example128}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example128}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "54bd8f8b203f2c91a25f6cdfc0d7ed1ae4e337ba5cd2d011537f867566077d2a", + "line": 7063, + "resource_type": "aws_instance", + "resource_name": "example-instance-784", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example784}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example784}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example784}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "56b5ab1b340530189cc864809a5f7ba37ef157e4a0405dc7f1c9238640d1a477", + "line": 1771, + "resource_type": "aws_instance", + "resource_name": "example-instance-196", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example196}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example196}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example196}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ee93366328d6a205f6b7d05edc8409919f0d9baf57f73cc9b5beba86c6f60852", + "line": 7720, + "resource_type": "aws_instance", + "resource_name": "example-instance-857", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example857}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example857}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example857}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3bd388a2269b86c7e8b8dbf326e0bc7fbb0037669ee566a9db399bca2f8309ca", + "line": 2842, + "resource_type": "aws_instance", + "resource_name": "example-instance-315", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example315}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example315}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example315}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c3b69a5b841fc0f87f30ccb17be8ff6ddcc03157382eb5e0be72d5243e491a2d", + "line": 2887, + "resource_type": "aws_instance", + "resource_name": "example-instance-320", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example320}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example320}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example320}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "02807f2bea81f1999ea6f0eef28b8762e6e9962bb4859671691e26bf7bac52b8", + "line": 8836, + "resource_type": "aws_instance", + "resource_name": "example-instance-981", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example981}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example981}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example981}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "37c4c9adba379c4a14de3f833d5814cfe2ede18009e20fde91004b2256fb9150", + "line": 5425, + "resource_type": "aws_instance", + "resource_name": "example-instance-602", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example602}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example602}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example602}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "639365ecf3576ef9824ea44c6daec043d92874d70c035abaeb47888270e165bd", + "line": 4030, + "resource_type": "aws_instance", + "resource_name": "example-instance-447", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example447}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example447}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example447}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a61b83d99b436ebc132d6e7b34d081b3a0a36a8ff07146f69ab5c7ebbd703160", + "line": 8719, + "resource_type": "aws_instance", + "resource_name": "example-instance-968", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example968}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example968}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example968}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2a1c6d9ab3ad7b860fb21f3b36fe3bd90cffe3b55a0d2b06cd97c365def1065e", + "line": 3850, + "resource_type": "aws_instance", + "resource_name": "example-instance-427", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example427}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example427}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example427}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "484e7a33a4cf7c326f420dd3b4412b6a25396b2281b3a5e9e5a290d36da69bfd", + "line": 2635, + "resource_type": "aws_instance", + "resource_name": "example-instance-292", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example292}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example292}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example292}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "73b36bafb0aca5d108b804f3001f1462daf020ef014a149f46d18b0ce089384e", + "line": 772, + "resource_type": "aws_instance", + "resource_name": "example-instance-85", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example85}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example85}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example85}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6a8e80412b2e8c32d9f6b9105eda62685feafd870acc7ed0c0fe1761b2fb446e", + "line": 5704, + "resource_type": "aws_instance", + "resource_name": "example-instance-633", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example633}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example633}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example633}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f0c15dfc13b2c1e7a9c6188e046bd09f1d9b7d610b1ebee93bd57b86e4297308", + "line": 6028, + "resource_type": "aws_instance", + "resource_name": "example-instance-669", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example669}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example669}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example669}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3ea93b411fa2c1d1973466387f9b60502ca6a477d4750005eaeb705077f5f68d", + "line": 7396, + "resource_type": "aws_instance", + "resource_name": "example-instance-821", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example821}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example821}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example821}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7312577a9e0a825493a05ebe29633df67300afa3265abbdcf389d457e8baccb0", + "line": 2977, + "resource_type": "aws_instance", + "resource_name": "example-instance-330", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example330}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example330}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example330}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c2b48be9293e4a02c4420ca6378290331680ee9493ba58b65dbc1f2e4f60809d", + "line": 160, + "resource_type": "aws_instance", + "resource_name": "example-instance-17", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example17}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example17}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example17}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9f3d7383b9f5a8534de17e9dff393283b7314e6d03cf38c648932238d2748e2b", + "line": 2239, + "resource_type": "aws_instance", + "resource_name": "example-instance-248", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example248}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example248}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example248}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9c2873174c984a45ccd3734975924025bc16971792116c370628dbcdf6838adb", + "line": 3787, + "resource_type": "aws_instance", + "resource_name": "example-instance-420", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example420}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example420}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example420}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c037f8f8d570c3cfb7d012ae2d3be8c59feba1e55fc3cf97f1d2cc93660130b3", + "line": 484, + "resource_type": "aws_instance", + "resource_name": "example-instance-53", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example53}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example53}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example53}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3cd1017754d8d8c2ea75dc6c4d7cae81def8e90af4472cd161150209f817f73b", + "line": 6334, + "resource_type": "aws_instance", + "resource_name": "example-instance-703", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example703}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example703}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example703}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cbfb058255ec885e989746e8886982b3c8965630a438bf7a86bd40bd469f02e6", + "line": 5191, + "resource_type": "aws_instance", + "resource_name": "example-instance-576", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example576}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example576}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example576}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d654b5aac386e8c7bb787d96f0b108a1ed493becc8b2d29a5c715fd267d1afc7", + "line": 2284, + "resource_type": "aws_instance", + "resource_name": "example-instance-253", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example253}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example253}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example253}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "650c0fac003161d165773fef90c1efd2cebcb62d44f7b41b740f595fcb73a1b9", + "line": 5803, + "resource_type": "aws_instance", + "resource_name": "example-instance-644", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example644}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example644}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example644}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f1254bd51ad222dd731cf402339247fec76a9ee1dc63ee1b8330a32e73243843", + "line": 4678, + "resource_type": "aws_instance", + "resource_name": "example-instance-519", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example519}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example519}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example519}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "736745492a183322a6247daa4c2e69446aba27564d01a602d59bc9b70548fb58", + "line": 5299, + "resource_type": "aws_instance", + "resource_name": "example-instance-588", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example588}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example588}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example588}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ffe2d7abc161171f85a532fb051a6f3bd56e671a2dba871d3e9e53f529c21862", + "line": 8116, + "resource_type": "aws_instance", + "resource_name": "example-instance-901", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example901}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example901}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example901}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5661ee1f0b2675857101a7ab5ae94eebf6fa91f3847c3ad0a8efff3489b6d1e4", + "line": 637, + "resource_type": "aws_instance", + "resource_name": "example-instance-70", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example70}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example70}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example70}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d4bae9f5637aea0fb3ecd449520d410cca2c75048d3bbbb75ab654f22d724e9c", + "line": 466, + "resource_type": "aws_instance", + "resource_name": "example-instance-51", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example51}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example51}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example51}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "23f6f85ed668f2b15c7b714cafd9e4c18116d7b811f8789444ed823c675d7145", + "line": 1186, + "resource_type": "aws_instance", + "resource_name": "example-instance-131", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example131}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example131}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example131}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e98ffd8597bc7406099061176f19608380fa3ca19b1ec84cf02fe8929c523314", + "line": 8071, + "resource_type": "aws_instance", + "resource_name": "example-instance-896", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example896}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example896}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example896}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "23c532f466e0f40d32fff514fba4eedd37c0d0bfa906a4e6755191634d6666c8", + "line": 8440, + "resource_type": "aws_instance", + "resource_name": "example-instance-937", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example937}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example937}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example937}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d6a1d5852790b87559ee0cbc56ba7f2f67216e05968b1de8392199d7ee4d6430", + "line": 7981, + "resource_type": "aws_instance", + "resource_name": "example-instance-886", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example886}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example886}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example886}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a98e842f05df2241707b19d91080331d221c3fbbb09e4fc6d56d11eb1ba8caed", + "line": 5389, + "resource_type": "aws_instance", + "resource_name": "example-instance-598", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example598}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example598}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example598}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dc1181032c215588b6efc859c61b78fd3e53458864ecd433276e594c35ec56d5", + "line": 3571, + "resource_type": "aws_instance", + "resource_name": "example-instance-396", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example396}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example396}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example396}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "17195f9d8e9724ac8741f18a73c9c0d83a1cf116cb7e9a6082a46e9c3dad1d4d", + "line": 7585, + "resource_type": "aws_instance", + "resource_name": "example-instance-842", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example842}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example842}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example842}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3ebc9011931aab4e160d33dfd0472ed7fa92e909847715e782cf805a4bf44760", + "line": 7891, + "resource_type": "aws_instance", + "resource_name": "example-instance-876", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example876}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example876}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example876}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4d3f0366b76f278c663971af9363582aa9050f223c6e017a127a6ee88652326b", + "line": 1573, + "resource_type": "aws_instance", + "resource_name": "example-instance-174", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example174}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example174}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example174}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f90ab898a330f6d3aea3ef493f95119e4a2a0d1d6f10b41af2f1f7e4ac6de829", + "line": 5371, + "resource_type": "aws_instance", + "resource_name": "example-instance-596", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example596}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example596}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example596}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "be83dc8ab558426a858789e61aa05813deeba6cfd88a1e0f0787c0a3ad8ccf70", + "line": 6226, + "resource_type": "aws_instance", + "resource_name": "example-instance-691", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example691}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example691}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example691}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "29e941abf755a80760271162d5b0644fc4211eec960ee50131726865d0ae41b7", + "line": 8611, + "resource_type": "aws_instance", + "resource_name": "example-instance-956", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example956}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example956}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example956}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8fade041130fc30f1375b26ec9b889be9a400626fea3d2f7360f4370d281f7ce", + "line": 538, + "resource_type": "aws_instance", + "resource_name": "example-instance-59", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example59}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example59}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example59}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5651445edc9c3a3cd91643af97fbfefcdab7946dbbb88288472a7dbe873036f8", + "line": 1150, + "resource_type": "aws_instance", + "resource_name": "example-instance-127", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example127}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example127}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example127}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "48b40c40349a71f9560a3800844842358719e155010616324d6602a4985d6acb", + "line": 3958, + "resource_type": "aws_instance", + "resource_name": "example-instance-439", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example439}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example439}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example439}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d098caaf87e294d3f2082e505dde4537d052f3290d24c5d61e135c1e9ae9f044", + "line": 5038, + "resource_type": "aws_instance", + "resource_name": "example-instance-559", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example559}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example559}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example559}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "523ee7251b6c2244f3445ae5235e8b94b78b47c3311eb9b8123ad7c0438f2ec4", + "line": 2815, + "resource_type": "aws_instance", + "resource_name": "example-instance-312", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example312}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example312}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example312}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9cc8f6a7b5427e315fb1fa915acd55b48c6aaab53c95f5a63d8cd362807d1368", + "line": 1627, + "resource_type": "aws_instance", + "resource_name": "example-instance-180", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example180}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example180}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example180}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "73515d231fec914aaddca953fe7da56291d479b60d5bc7c25746d43435cd3c9f", + "line": 2833, + "resource_type": "aws_instance", + "resource_name": "example-instance-314", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example314}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example314}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example314}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "30b769d6e0ec008efc2698ffce94aa5a892ec46d19a7e7901b23d2b524110ddf", + "line": 3355, + "resource_type": "aws_instance", + "resource_name": "example-instance-372", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example372}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example372}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example372}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f2259f503f3c427006202ad9232c2a94e6ff7f6ab8326074fa84071ace6b6749", + "line": 1339, + "resource_type": "aws_instance", + "resource_name": "example-instance-148", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example148}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example148}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example148}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "025134dc1c9c1c766f69f99f6f37888a83a4cf63d9be805ab37776972be70a2d", + "line": 8458, + "resource_type": "aws_instance", + "resource_name": "example-instance-939", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example939}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example939}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example939}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2e0757c46d90d3a8093eeca67f0c1156e09aee378e4d515672304879290bddf0", + "line": 7027, + "resource_type": "aws_instance", + "resource_name": "example-instance-780", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example780}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example780}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example780}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5b51efceaaa8d8971ec7de11f5d715153f32051f2d2572097ebfc05a05ef257e", + "line": 7549, + "resource_type": "aws_instance", + "resource_name": "example-instance-838", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example838}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example838}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example838}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "17fddcd409ceedc6bf6fa69fdb88348c684eca82bc108bcfa4a24a33649092dd", + "line": 2653, + "resource_type": "aws_instance", + "resource_name": "example-instance-294", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example294}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example294}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example294}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c7a90480e3e2a00736c0cc61a8cb129627372bc334ef043c0fe83d1e2ca9ad44", + "line": 7045, + "resource_type": "aws_instance", + "resource_name": "example-instance-782", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example782}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example782}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example782}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e4f51221018623c30a6d3a2ec5891965ea72068032cdc8737b37bc7656967772", + "line": 2113, + "resource_type": "aws_instance", + "resource_name": "example-instance-234", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example234}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example234}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example234}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "013e0e55c494dee6b77641e63d938cbbef542e52d061ae4cdf1c4d9f133e2515", + "line": 1420, + "resource_type": "aws_instance", + "resource_name": "example-instance-157", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example157}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example157}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example157}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ac66f1dff64306400546791c9583012aa0a79fa5b5589fd87e0653bee661aa16", + "line": 142, + "resource_type": "aws_instance", + "resource_name": "example-instance-15", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example15}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example15}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example15}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3230865b8a5ef26036f627332e2f9f8814524eeb8da42f2d3d552eb7ca04d01c", + "line": 7243, + "resource_type": "aws_instance", + "resource_name": "example-instance-804", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example804}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example804}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example804}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "96d2c92a4fef6e707e8d7082a41e0db2834231a415ba480cf7dcf772bbf98d39", + "line": 2986, + "resource_type": "aws_instance", + "resource_name": "example-instance-331", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example331}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example331}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example331}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7eef456980dca281ca212d62c294585b60f7696bb85c7d78bf187f2044cb2bb3", + "line": 3670, + "resource_type": "aws_instance", + "resource_name": "example-instance-407", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example407}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example407}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example407}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0acef2f8131101c860a6f21c9a630b0d6126fac8c5950b465e525a184762de32", + "line": 3751, + "resource_type": "aws_instance", + "resource_name": "example-instance-416", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example416}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example416}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example416}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6514a2e841dd9c7a552657bd690f2b04bceb70e6bb823d5a4dd5a9a0293a4584", + "line": 4705, + "resource_type": "aws_instance", + "resource_name": "example-instance-522", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example522}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example522}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example522}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a21ec40a7df9e057720f660396f6526d71e76d585f57c79ee595113712b37961", + "line": 6307, + "resource_type": "aws_instance", + "resource_name": "example-instance-700", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example700}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example700}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example700}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3d290e862bba09399fb3bbdee17f18bc5a1e1f1f7710ed2056fd6049d7d6d57a", + "line": 7774, + "resource_type": "aws_instance", + "resource_name": "example-instance-863", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example863}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example863}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example863}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6d74e215f02f22034d3e4f253a6e5bfcf5bf0b57efb0be750410433ba97f8b1b", + "line": 3598, + "resource_type": "aws_instance", + "resource_name": "example-instance-399", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example399}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example399}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example399}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4d5163690f0832031050fd7b0b6b338e14454449ffcca9aa86955d75a2dcde9b", + "line": 4039, + "resource_type": "aws_instance", + "resource_name": "example-instance-448", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example448}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example448}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example448}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8efd57f1311d0051fae136cc3a32a3d3c548a2a4000f92843a45e93af092a575", + "line": 7666, + "resource_type": "aws_instance", + "resource_name": "example-instance-851", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example851}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example851}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example851}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b51f39226f6c06d1db3aa874658acebf8765f67df5fa6af7256da0277c4c86dc", + "line": 6298, + "resource_type": "aws_instance", + "resource_name": "example-instance-699", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example699}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example699}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example699}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e9bdcfac490206a9765b4744313f7e23c5cd057752c232bb53b9384a8eb406ea", + "line": 4462, + "resource_type": "aws_instance", + "resource_name": "example-instance-495", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example495}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example495}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example495}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f5e715e840b6e38ece002e239f7a55b749f95a7b79dd6b0b394ffb53caa3704e", + "line": 2851, + "resource_type": "aws_instance", + "resource_name": "example-instance-316", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example316}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example316}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example316}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "53747efd083857bc290b0070fddaa4415b1f607560450c095b0cd258865afa1c", + "line": 754, + "resource_type": "aws_instance", + "resource_name": "example-instance-83", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example83}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example83}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example83}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "db56c2a92d64235a1410bfd77b2439d4ba72d344b5e369f266430aa762bbe315", + "line": 646, + "resource_type": "aws_instance", + "resource_name": "example-instance-71", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example71}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example71}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example71}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "86b7135a4422ef440250eec7ee99a179d8bb5c5d809759ac103e8603f1f867b2", + "line": 8323, + "resource_type": "aws_instance", + "resource_name": "example-instance-924", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example924}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example924}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example924}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "97d3398b1ca62c6ada6282f4f86596e8fa073c9fc52518066df1a01445e14b96", + "line": 1204, + "resource_type": "aws_instance", + "resource_name": "example-instance-133", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example133}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example133}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example133}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "77107ed22f571e1b8e9e4d6a385cb11a4100b423c9a029513bcba62a0a729219", + "line": 5020, + "resource_type": "aws_instance", + "resource_name": "example-instance-557", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example557}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example557}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example557}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8e8ea48e33e375eefd5c36de740066a37c8cf806b1d1adaee192e1008d10d016", + "line": 1330, + "resource_type": "aws_instance", + "resource_name": "example-instance-147", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example147}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example147}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example147}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7ee4ae1db915674a8a14591cc77c79518108919615aa725dfed066bd6dbd7390", + "line": 3877, + "resource_type": "aws_instance", + "resource_name": "example-instance-430", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example430}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example430}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example430}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "09a8163a3625f38d28233c9fc79890f344a66d989a22972f2ebabf060164db54", + "line": 4048, + "resource_type": "aws_instance", + "resource_name": "example-instance-449", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example449}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example449}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example449}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e4d94ac6884ef563f8ab05bd3ed4501b3825d195bd542a38e37ad02be460c6a0", + "line": 4966, + "resource_type": "aws_instance", + "resource_name": "example-instance-551", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example551}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example551}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example551}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "87b1cdf1ed2ae0a6e47dcd9b4d50778051af90a66249d754e57ad14d4a310b70", + "line": 5155, + "resource_type": "aws_instance", + "resource_name": "example-instance-572", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example572}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example572}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example572}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dfb3a35e0ef9adf91b63d008d8b5e90da230bf38ce1c40f27a9c18972387dde4", + "line": 3229, + "resource_type": "aws_instance", + "resource_name": "example-instance-358", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example358}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example358}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example358}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e8e9ec9efcf75c234a09670789522240fdaaa0fb3c811957f18d16ef3da08861", + "line": 4120, + "resource_type": "aws_instance", + "resource_name": "example-instance-457", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example457}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example457}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example457}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5e643cb81e390aae5d495216b57e36f3101f737ac0e633c80f9055705fc8a339", + "line": 2131, + "resource_type": "aws_instance", + "resource_name": "example-instance-236", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example236}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example236}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example236}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7fcc1cd4ccf632a7a687499c55efb12e089cbd284b132c3272082d397cc98add", + "line": 2932, + "resource_type": "aws_instance", + "resource_name": "example-instance-325", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example325}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example325}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example325}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "edcb41ec6594c1f8990bf56d15ac35879cdfd36282213fafc28f414611a71612", + "line": 934, + "resource_type": "aws_instance", + "resource_name": "example-instance-103", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example103}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example103}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example103}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ba0b2625ac567508bdeb736e94e7d36dc04f657596282f967d08cfb609223028", + "line": 2158, + "resource_type": "aws_instance", + "resource_name": "example-instance-239", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example239}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example239}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example239}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "89e10f299b7df47abff2d356fb7ed419ce8ddaf1003acdaccf93d3f6634010c3", + "line": 4858, + "resource_type": "aws_instance", + "resource_name": "example-instance-539", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example539}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example539}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example539}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d77595e5a2efda3126e3d2ada721f1d2a981ab3b342b769ef10d84ca9fcb99c9", + "line": 5362, + "resource_type": "aws_instance", + "resource_name": "example-instance-595", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example595}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example595}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example595}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a2a5684a3989530dda314a0fae6059328c5f2abc33152ea5ae49c3924e935aa8", + "line": 7360, + "resource_type": "aws_instance", + "resource_name": "example-instance-817", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example817}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example817}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example817}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2e7ccb6b1b6d1e0686b63886ff2b195fb345124e72e6a9c67f0bbc754b287f98", + "line": 7558, + "resource_type": "aws_instance", + "resource_name": "example-instance-839", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example839}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example839}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example839}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6dad0f10c4183cb78f20a4c529076b8d781facf0c93241a6ace3e25daad6ab32", + "line": 8692, + "resource_type": "aws_instance", + "resource_name": "example-instance-965", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example965}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example965}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example965}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "575dfa07c8d05bbcfa8915111d8eb29406bcfdda92fc3a2314248578bc790cbf", + "line": 4579, + "resource_type": "aws_instance", + "resource_name": "example-instance-508", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example508}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example508}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example508}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0c8cb47a60f30accd4f42867598bd79bc532db493d411a1a9fab3d733e349aa9", + "line": 7414, + "resource_type": "aws_instance", + "resource_name": "example-instance-823", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example823}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example823}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example823}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4705fc90d217a9e566af2bef7324610396c47888042dd9777914abc9b581e76a", + "line": 2770, + "resource_type": "aws_instance", + "resource_name": "example-instance-307", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example307}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example307}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example307}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "168500a355e85fd1a7376ce1e3ce389691e8dea0afd678a6f1ae3b7ded732920", + "line": 4840, + "resource_type": "aws_instance", + "resource_name": "example-instance-537", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example537}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example537}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example537}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9e194914825a11046b74f4d4165cdad9b8f1a2e3d34f1c559b98385d540a24f3", + "line": 4210, + "resource_type": "aws_instance", + "resource_name": "example-instance-467", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example467}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example467}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example467}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8311a61ab9953ac5a2efa73a49229264350f4f5a42ecf3a0215264fcd6770c5a", + "line": 547, + "resource_type": "aws_instance", + "resource_name": "example-instance-60", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example60}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example60}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example60}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "19e8e639886118668a229eb13e54762d98a2a26b5d396c3a3020ebbdbfb34059", + "line": 8269, + "resource_type": "aws_instance", + "resource_name": "example-instance-918", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example918}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example918}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example918}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cef6ad947a1fb3f6679991eef66b7fd63b88c70b333e3ee537e8dc7cc383ff3a", + "line": 6541, + "resource_type": "aws_instance", + "resource_name": "example-instance-726", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example726}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example726}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example726}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6aec853f9d0ff83cf39d491d2b5736959cde8e577749d49519148868be0c41ae", + "line": 7954, + "resource_type": "aws_instance", + "resource_name": "example-instance-883", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example883}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example883}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example883}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8403a17f8cd4aad69bf9604f51dbd0c95d505036702b7c705eadd77c8fc6896a", + "line": 1249, + "resource_type": "aws_instance", + "resource_name": "example-instance-138", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example138}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example138}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example138}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7d6f4ce0cb9fa71ebce36ea04d006418e5ff046a37162df344d2ae90a38d1d84", + "line": 7747, + "resource_type": "aws_instance", + "resource_name": "example-instance-860", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example860}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example860}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example860}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "43314fac583479685d0386b0cebd9fb0bc69c8cc8624a2ce3aa01ae0d35cfb63", + "line": 7936, + "resource_type": "aws_instance", + "resource_name": "example-instance-881", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example881}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example881}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example881}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "67da8bdcbb123efd01d56653e4c590496a8abc4ddf5034cb9da9de5325e5a3fa", + "line": 5101, + "resource_type": "aws_instance", + "resource_name": "example-instance-566", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example566}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example566}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example566}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d9792762f899be99c14228864c65c7fd60063dc44a839fab5c2156d2fdccb1a6", + "line": 1618, + "resource_type": "aws_instance", + "resource_name": "example-instance-179", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example179}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example179}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example179}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "88176817a778126ff9d2d9012981ca1cb4b41af16bbc8e642b4994de99c2c6dd", + "line": 4732, + "resource_type": "aws_instance", + "resource_name": "example-instance-525", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example525}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example525}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example525}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4a8aca4dc2fdc914dc0b2a196f1ca7ef87cda1bbd39a1cad6f9581e627b9e80e", + "line": 6928, + "resource_type": "aws_instance", + "resource_name": "example-instance-769", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example769}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example769}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example769}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f4f4dddf95aeebf3688ab312b9f60b14b37db810788412b8c512551fd8882043", + "line": 8224, + "resource_type": "aws_instance", + "resource_name": "example-instance-913", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example913}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example913}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example913}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bc2d6d2bdf3738669315dda286469aba1f46c0125525fd2b1418925860cb223d", + "line": 5830, + "resource_type": "aws_instance", + "resource_name": "example-instance-647", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example647}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example647}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example647}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f68615dc0ff881ed79d1f3606d3973a536d0f471fa65ae0a4870040eb54b43bb", + "line": 6748, + "resource_type": "aws_instance", + "resource_name": "example-instance-749", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example749}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example749}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example749}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4518b4e5532e11109e33e8204d6e502672e71dfc0d0a1c3735afc1185fdc01ae", + "line": 6271, + "resource_type": "aws_instance", + "resource_name": "example-instance-696", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example696}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example696}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example696}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "676f14139eccc02638f07e2509e401fdce84f0d8a45dbd2f4bc563353af9f922", + "line": 6622, + "resource_type": "aws_instance", + "resource_name": "example-instance-735", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example735}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example735}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example735}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "12caa8e60aee831534a80d03b2a2707218b8c88da10743d31bb348f8b11b458d", + "line": 8413, + "resource_type": "aws_instance", + "resource_name": "example-instance-934", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example934}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example934}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example934}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a5006998e748b0dc4da3278163b518bb370579cd74ff9a2865b007f56d83834b", + "line": 7711, + "resource_type": "aws_instance", + "resource_name": "example-instance-856", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example856}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example856}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example856}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1b1c8ec55eb15c05d34778261108d1dad7823ea690e476feace9e5e69e19e0e9", + "line": 4228, + "resource_type": "aws_instance", + "resource_name": "example-instance-469", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example469}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example469}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example469}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6127ceccc4c31f2ae3581d18e38cc92756f148ececa9728a8d2e170af8312252", + "line": 970, + "resource_type": "aws_instance", + "resource_name": "example-instance-107", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example107}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example107}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example107}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ce5d31c1d7a54219c5d28bd2a83e9067b0b0bab51a10fbec43c8d0ee9e85a095", + "line": 3265, + "resource_type": "aws_instance", + "resource_name": "example-instance-362", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example362}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example362}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example362}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "75567429a97be98c4853d003cd0a05e36fc3cef22f5876f6e652fa9798a6ebad", + "line": 6820, + "resource_type": "aws_instance", + "resource_name": "example-instance-757", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example757}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example757}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example757}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dc57a35500543c0f51a37020c912945e8c44b827c1b5a8013ae6885130c30a44", + "line": 1141, + "resource_type": "aws_instance", + "resource_name": "example-instance-126", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example126}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example126}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example126}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c938b051466e2f7983857638b950ec0ee5a98e6b58cc9c9ae83819ce2ae6b229", + "line": 3238, + "resource_type": "aws_instance", + "resource_name": "example-instance-359", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example359}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example359}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example359}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ef2f861b331bdf5356763a20b2d15d22108a184a52285ca3cf73679be09fe88f", + "line": 7450, + "resource_type": "aws_instance", + "resource_name": "example-instance-827", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example827}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example827}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example827}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "03c72592b616cc08ab35e9520e144b62ff5d5f94fb3a81bc69165e23c13f7fe4", + "line": 2041, + "resource_type": "aws_instance", + "resource_name": "example-instance-226", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example226}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example226}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example226}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "80e5e657583d0157b976cb8bebf59847523292c4bf59ced7fd8938812ba14569", + "line": 3337, + "resource_type": "aws_instance", + "resource_name": "example-instance-370", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example370}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example370}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example370}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "454070dad3ef4a224e8e12f2748f4b3ace53c0203efc8be8f5dc95389d0844d0", + "line": 4417, + "resource_type": "aws_instance", + "resource_name": "example-instance-490", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example490}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example490}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example490}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f118c9629a12ce80921f6b5fe76093f6dab3c2aef361636032328a500271d125", + "line": 8422, + "resource_type": "aws_instance", + "resource_name": "example-instance-935", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example935}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example935}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example935}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3abe73d90cf423291df789f3c343b0c3031e9dc70a422db77de4fe1b8c31618b", + "line": 7, + "resource_type": "aws_key_pair", + "resource_name": "deployer", + "issue_type": "MissingAttribute", + "search_key": "aws_key_pair[{{deployer}}]", + "search_line": -1, + "search_value": "", + "expected_value": "aws_key_pair[{{deployer}}].tags should be defined and not null", + "actual_value": "aws_key_pair[{{deployer}}].tags is undefined or null" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "84e780f7608f14ac1b0fbbe07d1b865a199e8f761b0bc0cf4967aedaff213224", + "line": 880, + "resource_type": "aws_instance", + "resource_name": "example-instance-97", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example97}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example97}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example97}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ab8e378d19d98ca1fe142260e162b6c053b237479b904a62690ce2c2c7812551", + "line": 5650, + "resource_type": "aws_instance", + "resource_name": "example-instance-627", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example627}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example627}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example627}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d20ec4bd0c42058bd47635df6f34563891075fcd7b6d634b071efb79e2e9e41f", + "line": 6775, + "resource_type": "aws_instance", + "resource_name": "example-instance-752", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example752}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example752}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example752}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "aeffdc4c12a18e62d8aba3686fef920da1047d230fafd44c046c0ae34e97814b", + "line": 439, + "resource_type": "aws_instance", + "resource_name": "example-instance-48", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example48}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example48}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example48}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "90516896306c4e62ffd83952e8bff7f3b56fe0a520b1899a544af558f0aca444", + "line": 5515, + "resource_type": "aws_instance", + "resource_name": "example-instance-612", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example612}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example612}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example612}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "875b63b55a8cebe8b866683febf8171df818557f0b3f23b5f058e832bc7e0941", + "line": 7963, + "resource_type": "aws_instance", + "resource_name": "example-instance-884", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example884}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example884}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example884}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ed44b30fe31ad474025bb3b8925763f6fec1c35156bf26477529066b972aa269", + "line": 6811, + "resource_type": "aws_instance", + "resource_name": "example-instance-756", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example756}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example756}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example756}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7267c1fa6ac3c4adc2fffe3457562414e2599a13cef5bcf81c4897ea7371ac6d", + "line": 7630, + "resource_type": "aws_instance", + "resource_name": "example-instance-847", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example847}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example847}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example847}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2ad9c9e2f3657666ada4c8c6fd18006920f2acee8fd8f47bfd5c0bd1284b7ea8", + "line": 2383, + "resource_type": "aws_instance", + "resource_name": "example-instance-264", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example264}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example264}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example264}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ecb881095b872aab0796212e4374d014930ab81d420928da1e3fe103c5ec43c1", + "line": 6703, + "resource_type": "aws_instance", + "resource_name": "example-instance-744", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example744}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example744}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example744}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f573e7280c7ccf29f0a19da1543fe3d2a73b5b59b9e6589515e9bdaf80cc5561", + "line": 6244, + "resource_type": "aws_instance", + "resource_name": "example-instance-693", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example693}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example693}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example693}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "207f9ecfbdb722b05b45468747d16e4030984b36b903d3d94f8ffdfa19fcf8e4", + "line": 6982, + "resource_type": "aws_instance", + "resource_name": "example-instance-775", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example775}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example775}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example775}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "236ab6c5f1fdf844dea7ff597de350f06e9104b2ca058bf0689e57bf0f79f361", + "line": 3103, + "resource_type": "aws_instance", + "resource_name": "example-instance-344", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example344}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example344}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example344}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "306659ae5283c1ac9664440408e8de42407c9a5546e11cce5d9247af28bbdda7", + "line": 7369, + "resource_type": "aws_instance", + "resource_name": "example-instance-818", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example818}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example818}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example818}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "71591496812e3711f9273a3b8f534a87edd0c06f0d88c1f3a87fbb8519189b34", + "line": 5002, + "resource_type": "aws_instance", + "resource_name": "example-instance-555", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example555}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example555}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example555}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8783a11f59151038d24f6672692076b08bfe7d088c9fe777bf74f0f16deb81c0", + "line": 8026, + "resource_type": "aws_instance", + "resource_name": "example-instance-891", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example891}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example891}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example891}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4f6e8ecc9cffaf9d6407d9a5d3b3e25b00dd91444e65bb7a924e9bdbb21c55da", + "line": 6721, + "resource_type": "aws_instance", + "resource_name": "example-instance-746", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example746}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example746}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example746}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6fd09752e1094888755662265a2d8079720a1b730ef583a91ab727cfec01de05", + "line": 8341, + "resource_type": "aws_instance", + "resource_name": "example-instance-926", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example926}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example926}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example926}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "95d5cb6378b703d4df897da2d75d91d81df12b390232d71b988355d3a8262039", + "line": 7036, + "resource_type": "aws_instance", + "resource_name": "example-instance-781", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example781}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example781}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example781}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "abb6e42a87ebe32e38c1e9025652b9739754b9fec4b3c01dc88f8963d8a480af", + "line": 1438, + "resource_type": "aws_instance", + "resource_name": "example-instance-159", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example159}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example159}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example159}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bbe26bec4f1db22fbbdb55a9d134baf8278d1af6be9b4aebec447e5eebbb80dd", + "line": 3184, + "resource_type": "aws_instance", + "resource_name": "example-instance-353", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example353}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example353}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example353}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "06e50e48cf5d8d1216534f1e3ff834ff6a2f70c8bb563d2b368cc8905ad6619c", + "line": 457, + "resource_type": "aws_instance", + "resource_name": "example-instance-50", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example50}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example50}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example50}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "40d75ac464ab045452fec50424b3cd2808224ae83e1d8f08f4c1f0bd3d9e6884", + "line": 5146, + "resource_type": "aws_instance", + "resource_name": "example-instance-571", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example571}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example571}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example571}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "525d24d57a53bb928469fda71a9b6907af1ff67f39669e92f03a582f0d310a14", + "line": 5776, + "resource_type": "aws_instance", + "resource_name": "example-instance-641", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example641}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example641}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example641}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "11f80830dcc231df9b62c6eae26e83022148423e00f40f94a0eb0d65cf6e9eaa", + "line": 2509, + "resource_type": "aws_instance", + "resource_name": "example-instance-278", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example278}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example278}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example278}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8796b1b83802aeee4f3bfbe5936834f0ea93fe4ab26a60e31666e831dd9e70df", + "line": 3301, + "resource_type": "aws_instance", + "resource_name": "example-instance-366", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example366}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example366}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example366}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b33497bc41fba8f16f4f58af0aa78062b2ef5607db7de4ef8d9cee60478f4cf4", + "line": 1258, + "resource_type": "aws_instance", + "resource_name": "example-instance-139", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example139}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example139}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example139}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "135ce855b9e52031e9bb6e0bbd26b34a4835a14db7ebdae55cc8599f0735b928", + "line": 5596, + "resource_type": "aws_instance", + "resource_name": "example-instance-621", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example621}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example621}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example621}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "32f00aba8b240dcb051f58b1bda1c2341fe10d7a96db1954417024b85af441c6", + "line": 6109, + "resource_type": "aws_instance", + "resource_name": "example-instance-678", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example678}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example678}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example678}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f2525c45ea7f5a6d5488433dc91aef732a7736fcc519aeac43dc440475a07fd1", + "line": 367, + "resource_type": "aws_instance", + "resource_name": "example-instance-40", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example40}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example40}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example40}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ae15dc88edb038ebbe2a185c0a52fb95e145dfb8a0e6a3535f5c163c141f0448", + "line": 7108, + "resource_type": "aws_instance", + "resource_name": "example-instance-789", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example789}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example789}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example789}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3a8bba62e16bc0fcb4b75c8ba29121e6a9bed919100419c1651940ee4b37bc2d", + "line": 8539, + "resource_type": "aws_instance", + "resource_name": "example-instance-948", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example948}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example948}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example948}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5f526de39a4a35f9bae19893ce29f011c9d2d0e771d5b397203461dd5b3d3d63", + "line": 5659, + "resource_type": "aws_instance", + "resource_name": "example-instance-628", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example628}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example628}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example628}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e8040058009d15bc066c44bd5f58ab09d450147e74b33c98e99849da5f708b5d", + "line": 1447, + "resource_type": "aws_instance", + "resource_name": "example-instance-160", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example160}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example160}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example160}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "64cfcbd98ce952fdb6ec93647209ed565f1fa25cc595606879aeaee15d4c2539", + "line": 5461, + "resource_type": "aws_instance", + "resource_name": "example-instance-606", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example606}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example606}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example606}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "389ec9625798d10107c60465c8cd48a5a8ad7be3c7b659e0fed330c9c31ca564", + "line": 8638, + "resource_type": "aws_instance", + "resource_name": "example-instance-959", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example959}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example959}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example959}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f174a41f2d63bda5e1ede814b1c62c4be5ccc9ea66bf6d2017dfaa822482879d", + "line": 3715, + "resource_type": "aws_instance", + "resource_name": "example-instance-412", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example412}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example412}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example412}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7adf280cce6413757364d232f1e42fd3df839fe587a7f35df022fcad61bce116", + "line": 7054, + "resource_type": "aws_instance", + "resource_name": "example-instance-783", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example783}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example783}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example783}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4f35799cafb5a0172b15729310989c55c426daeb70e182182ed0d5b0b890d716", + "line": 6073, + "resource_type": "aws_instance", + "resource_name": "example-instance-674", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example674}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example674}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example674}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e91ae50e886921e453d607b02a5e2ec69281b331866f6cd80ae184d68ce2d552", + "line": 6145, + "resource_type": "aws_instance", + "resource_name": "example-instance-682", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example682}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example682}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example682}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "564207c872c28591c33e12f43691e5ffe004bab599c1a495712e1f4a8d8ea17c", + "line": 2482, + "resource_type": "aws_instance", + "resource_name": "example-instance-275", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example275}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example275}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example275}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "667e64cc900a086bd7d3625da3816883af5f452c09a0ab094c69608bca9fc2f3", + "line": 3031, + "resource_type": "aws_instance", + "resource_name": "example-instance-336", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example336}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example336}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example336}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b4cd003f30ec9b028fa33d2caa2a1d9431dbf1acd0482cad27efe1f338b3323c", + "line": 5695, + "resource_type": "aws_instance", + "resource_name": "example-instance-632", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example632}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example632}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example632}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "90cdcb8cd8fa3c922c0aa8e336f9c22777594628a1bef0ea94dc68d923534263", + "line": 7621, + "resource_type": "aws_instance", + "resource_name": "example-instance-846", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example846}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example846}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example846}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0e1d3475fceb7bcd75b3a1c701e6cd73e621718670da6acad75363915a7927d1", + "line": 3526, + "resource_type": "aws_instance", + "resource_name": "example-instance-391", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example391}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example391}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example391}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "eb10aa4265ce16c06508dff1266521b8ec8b72c3193a50393b47670739373ff1", + "line": 4561, + "resource_type": "aws_instance", + "resource_name": "example-instance-506", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example506}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example506}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example506}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0ca2a955659ce40cae39c648c4f1a96eb2aac648aaf78d9e1b29c429123f6f01", + "line": 4066, + "resource_type": "aws_instance", + "resource_name": "example-instance-451", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example451}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example451}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example451}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9df16c524af17c84cb6f9bd5c8db2591364f5d59939debdd9ec6670ae9a94c03", + "line": 2743, + "resource_type": "aws_instance", + "resource_name": "example-instance-304", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example304}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example304}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example304}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6dec9ba61611314092e627fe37d97e2786c46d60780e431ba748ee9aa7d8b5a0", + "line": 6451, + "resource_type": "aws_instance", + "resource_name": "example-instance-716", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example716}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example716}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example716}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "266ad52f53c7a07cfba57362df4640cce52c86551c51c3d1aac40f957ed2eb01", + "line": 5839, + "resource_type": "aws_instance", + "resource_name": "example-instance-648", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example648}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example648}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example648}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9c53117598ba012cc5f186bcb0276c7d1f472ae8bd6fc462d2ad8d4c7fdc6930", + "line": 8899, + "resource_type": "aws_instance", + "resource_name": "example-instance-988", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example988}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example988}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example988}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8474933d0d9c5bc5b84559daedefb7dc763a331c001ca191b8eb582fa4127ac9", + "line": 475, + "resource_type": "aws_instance", + "resource_name": "example-instance-52", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example52}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example52}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example52}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4dd43676d4c12ce9432ceee5de238260f515bc53e221fd01c3cca3b6d88ef575", + "line": 7072, + "resource_type": "aws_instance", + "resource_name": "example-instance-785", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example785}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example785}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example785}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ea8328045c11a4bbc66ae28f178d58976c478b698086665c30a29b7a97968941", + "line": 2491, + "resource_type": "aws_instance", + "resource_name": "example-instance-276", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example276}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example276}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example276}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "834baa019a45abcf00e1d803e50b9b61e8ce6001575139afbbb96ce31b605786", + "line": 3292, + "resource_type": "aws_instance", + "resource_name": "example-instance-365", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example365}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example365}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example365}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "43c6cd7a27d222176f3327600eebec9af366f463031a6c38dbbaa10e5cc13753", + "line": 4642, + "resource_type": "aws_instance", + "resource_name": "example-instance-515", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example515}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example515}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example515}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d5319cc04bb673bc25f1c08f161ed7194429fde12aed027f8296d2d448217b43", + "line": 1996, + "resource_type": "aws_instance", + "resource_name": "example-instance-221", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example221}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example221}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example221}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ed596038296a5db8c0d4f0357f5af7f1800f69e92f54211b1b60f31b4e564745", + "line": 3256, + "resource_type": "aws_instance", + "resource_name": "example-instance-361", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example361}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example361}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example361}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b0380acb9af2db455d1390408d3a5acf615a569214b45bdff1918b98d2ff2890", + "line": 4408, + "resource_type": "aws_instance", + "resource_name": "example-instance-489", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example489}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example489}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example489}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6a5e6be0661b6dddaae7dddd60e932b9d2ecd87ff459bc98824185344b7458c4", + "line": 43, + "resource_type": "aws_instance", + "resource_name": "example-instance-4", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example4}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example4}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example4}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "65418c345f1bbf191d4482a3e10b309fb27f56cdc828cefa15687903dc7f2a4c", + "line": 5686, + "resource_type": "aws_instance", + "resource_name": "example-instance-631", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example631}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example631}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example631}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4812878c950e50f0a465d1d9e5b406df2cb179f7c7b4b778659efb284a0352ed", + "line": 1069, + "resource_type": "aws_instance", + "resource_name": "example-instance-118", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example118}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example118}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example118}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "50871a987336aa83e03a7b977e3af9d3e7bec90881d0242a40206a177027c367", + "line": 1105, + "resource_type": "aws_instance", + "resource_name": "example-instance-122", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example122}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example122}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example122}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f6e87b8602d8530ed7a5a45393daefdae363d8ab6e5c8640215859cefbde2c4a", + "line": 1510, + "resource_type": "aws_instance", + "resource_name": "example-instance-167", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example167}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example167}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example167}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e7b6276dd20f02bcae0892ddf30ca7b652d0d16c3cb984a9c4b4bc5e76fd640b", + "line": 1564, + "resource_type": "aws_instance", + "resource_name": "example-instance-173", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example173}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example173}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example173}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e092aea2b2f7ad19482444e0eee978f3c72d52b8d0afa016b8419dde277348e4", + "line": 4624, + "resource_type": "aws_instance", + "resource_name": "example-instance-513", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example513}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example513}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example513}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b79063a450fa7e0cf19cee835c6ce68cdf2d3f4734b6892151f4f932d7004a0c", + "line": 8575, + "resource_type": "aws_instance", + "resource_name": "example-instance-952", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example952}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example952}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example952}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "63b1c51e011a98c12cf9ab33564bf39b2d5d42eb3e256da7091303a14cbf875c", + "line": 2086, + "resource_type": "aws_instance", + "resource_name": "example-instance-231", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example231}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example231}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example231}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fc50b4be8034eeea780280b8eb31a6bdf1ef6757e8b208fed2b21d8193144007", + "line": 592, + "resource_type": "aws_instance", + "resource_name": "example-instance-65", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example65}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example65}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example65}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5929a7f5bb92c11e8b3a8dc715b2172b6902ca23572ab9aa9838d69aff8ed63d", + "line": 3004, + "resource_type": "aws_instance", + "resource_name": "example-instance-333", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example333}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example333}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example333}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f3acb41eae9444f8a66490d58d3a3279838cd7b90ded78ce91bcf56e181bbb24", + "line": 4282, + "resource_type": "aws_instance", + "resource_name": "example-instance-475", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example475}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example475}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example475}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "97c7cebcc139a01595304d4c042180d483d5aaba5aea5cb12e616ce7b3c357c8", + "line": 6406, + "resource_type": "aws_instance", + "resource_name": "example-instance-711", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example711}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example711}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example711}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ecec80925ab98720d33f7392fc93c58433835c20f65e09487a73ca707772785d", + "line": 8035, + "resource_type": "aws_instance", + "resource_name": "example-instance-892", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example892}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example892}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example892}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "fe1c3aa3a41e60270904bfd93d24b1f3d6fc10ee45cb26871e5f7ae51ffe4fa0", + "line": 1645, + "resource_type": "aws_instance", + "resource_name": "example-instance-182", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example182}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example182}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example182}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "7d7da17cefe0f17fa81a60cd744b6197983a1ae320214941868676b4cd8b7f27", + "line": 3805, + "resource_type": "aws_instance", + "resource_name": "example-instance-422", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example422}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example422}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example422}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b8fbca44485417ab0f9150c89e5d2fc49642e4c617a9be69163a9d2ed269a967", + "line": 5092, + "resource_type": "aws_instance", + "resource_name": "example-instance-565", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example565}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example565}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example565}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d69d3b05ee005d7c30281c28e22a9395cdd215c4ae05428744cda46c7589c9c1", + "line": 6001, + "resource_type": "aws_instance", + "resource_name": "example-instance-666", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example666}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example666}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example666}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5a596246ead347cd2b91ad9c02276a6b9add3b2a62507ad8a7fe64d5ad2989fd", + "line": 6595, + "resource_type": "aws_instance", + "resource_name": "example-instance-732", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example732}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example732}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example732}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b3f39f5b658c924c3f428f514560a91127564138a09771053ee906dcf8a0740b", + "line": 5668, + "resource_type": "aws_instance", + "resource_name": "example-instance-629", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example629}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example629}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example629}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ec2a88be93f7da36e36111e7ed0a033f40a9008c496f5d52fa6f80ee5c963e80", + "line": 4327, + "resource_type": "aws_instance", + "resource_name": "example-instance-480", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example480}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example480}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example480}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "02907be6b3df4468baf4f50029e8dcb51e967fb0ca5fc62c8c646679e028e63b", + "line": 511, + "resource_type": "aws_instance", + "resource_name": "example-instance-56", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example56}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example56}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example56}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "27509b185c4b42a1a4f727b06c6de9d8ebcbe065aa7c807bd51487474f0ae558", + "line": 8863, + "resource_type": "aws_instance", + "resource_name": "example-instance-984", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example984}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example984}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example984}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c0f33c57d4e990b620de42ed05e3222ff6e1460d43a0dbe12494c6d108c1907f", + "line": 70, + "resource_type": "aws_instance", + "resource_name": "example-instance-7", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example7}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example7}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example7}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c80728f6c44005368cacf9925c696ae67fec6c6cea1b6e9a45fe1bfbcfd927b1", + "line": 7540, + "resource_type": "aws_instance", + "resource_name": "example-instance-837", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example837}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example837}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example837}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4e6406844a4c37a1ca2d9ce239022cc33e3fbbb9e51179368129c991580f3026", + "line": 5263, + "resource_type": "aws_instance", + "resource_name": "example-instance-584", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example584}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example584}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example584}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "65918f86806cd69b145e3867b2376e5eed980e1724ca289f8dbb3de09550faeb", + "line": 6667, + "resource_type": "aws_instance", + "resource_name": "example-instance-740", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example740}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example740}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example740}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "14bcce8e72516372ad2550521509c4d389c4f2bef8fc87180204a933525e9818", + "line": 5569, + "resource_type": "aws_instance", + "resource_name": "example-instance-618", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example618}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example618}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example618}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5a9f8683faf4bdffc2a08da54b204dce19ebf24fdde39d71eaf443ddef7b57aa", + "line": 4309, + "resource_type": "aws_instance", + "resource_name": "example-instance-478", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example478}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example478}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example478}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "eace1d6e25af93402aa029bd70713773046d6c6d94f4fcd36089e72660f51e91", + "line": 5722, + "resource_type": "aws_instance", + "resource_name": "example-instance-635", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example635}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example635}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example635}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6ba44a3f0c0a99023ed9fba26cad5cc82c780f484c5ac7d5d4928ab4910ac4ce", + "line": 835, + "resource_type": "aws_instance", + "resource_name": "example-instance-92", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example92}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example92}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example92}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "93fefa0218b763f5d813e0eaceeadeea2e16bb1c05ffcb075f67094c2717bedb", + "line": 2266, + "resource_type": "aws_instance", + "resource_name": "example-instance-251", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example251}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example251}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example251}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d7f4a1c15728b139f637554793c2459b82df347b14f808d52b48deba2001517b", + "line": 34, + "resource_type": "aws_instance", + "resource_name": "example-instance-3", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example3}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example3}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example3}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8e8651290009c543bdcdf224ad95b63fab6162507f6785797fc9a7e4eba08e3a", + "line": 7135, + "resource_type": "aws_instance", + "resource_name": "example-instance-792", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example792}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example792}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example792}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a3ff6d79ddea53e3f7e83c968cf96253895675c39cc49e0e8fe83324229f1cff", + "line": 5731, + "resource_type": "aws_instance", + "resource_name": "example-instance-636", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example636}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example636}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example636}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8440f7f7da74eefe525e4b0955a8a12c2ee27269e8c190065b1b1cfec82d74f9", + "line": 7252, + "resource_type": "aws_instance", + "resource_name": "example-instance-805", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example805}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example805}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example805}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a66413c5c0a05d2f6ab7d436477cbf9e8914559801c9f601d01a08bceb50a991", + "line": 4885, + "resource_type": "aws_instance", + "resource_name": "example-instance-542", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example542}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example542}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example542}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f4ad4da77fbc0586072b653a5480a2eef9e5d9132ddba9ce176c74474300c29b", + "line": 5182, + "resource_type": "aws_instance", + "resource_name": "example-instance-575", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example575}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example575}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example575}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3d0dc1598f124aebbf2e29197c48923193beed8603723cb7c6c0718bd1334b98", + "line": 4795, + "resource_type": "aws_instance", + "resource_name": "example-instance-532", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example532}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example532}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example532}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1d2220950376617fb9735d105f58dbd216981e2cab9303e630ba83a45aa9241d", + "line": 6955, + "resource_type": "aws_instance", + "resource_name": "example-instance-772", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example772}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example772}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example772}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3610c232c2d1983e1c675963b67ec7f182fef7c5e7ca5729e3810c6015b73965", + "line": 8701, + "resource_type": "aws_instance", + "resource_name": "example-instance-966", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example966}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example966}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example966}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b28c3c326c1d4bc9d1e872a2d6e22b1adb54397c6de38c323fe86733abd1a67a", + "line": 1888, + "resource_type": "aws_instance", + "resource_name": "example-instance-209", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example209}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example209}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example209}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "531d7618b1a0c501184f5158b161ef36b148ff7dd3cbede19e1db330e262cbfc", + "line": 8251, + "resource_type": "aws_instance", + "resource_name": "example-instance-916", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example916}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example916}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example916}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "47412e3b5b7853bab76f13b25222d15b22a8521342c5006588d8a79966265bb3", + "line": 3490, + "resource_type": "aws_instance", + "resource_name": "example-instance-387", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example387}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example387}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example387}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a5cb13ec198acf9115605097ad0d5a503d4180be1d21a6f426957a2cda4be608", + "line": 5632, + "resource_type": "aws_instance", + "resource_name": "example-instance-625", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example625}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example625}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example625}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5121b656f8b6e4240997bed5af53f8665106bfa71ec89f4c2a65f082e794d258", + "line": 2959, + "resource_type": "aws_instance", + "resource_name": "example-instance-328", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example328}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example328}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example328}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0defc0ed8f0822c07cabe346c7be696a20fc8ed311ca795a8d45c7ac35ca1f79", + "line": 4138, + "resource_type": "aws_instance", + "resource_name": "example-instance-459", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example459}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example459}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example459}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "de83bb866ba604621b8d0875a138e37b95b2b50a9768a19ed6f31c863f1354f0", + "line": 8098, + "resource_type": "aws_instance", + "resource_name": "example-instance-899", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example899}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example899}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example899}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "925853042b3005e6a5f1047b9f0e6b8031ef1bd64dd8b8ced3f20d6974400086", + "line": 79, + "resource_type": "aws_instance", + "resource_name": "example-instance-8", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example8}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example8}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example8}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "03522e594123290c4e33c88e633904964ff608845180b1cd06372c1016c35e4a", + "line": 2446, + "resource_type": "aws_instance", + "resource_name": "example-instance-271", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example271}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example271}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example271}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9777c1ece41fe64130bb030f5ad76496c5d78380ff1039121271da517c651de7", + "line": 6649, + "resource_type": "aws_instance", + "resource_name": "example-instance-738", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example738}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example738}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example738}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c6bdf74bdc7a3eefa2507d38c34e37b66d347eacb2d699d654979547d294ae0e", + "line": 7999, + "resource_type": "aws_instance", + "resource_name": "example-instance-888", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example888}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example888}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example888}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3773b88026ca73b187194b77e0c06d985bf6d5106261bf3ee36100dcf15b8ed8", + "line": 8674, + "resource_type": "aws_instance", + "resource_name": "example-instance-963", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example963}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example963}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example963}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d398ffc03038dc1d246c2060687d01eb02ba88e6017a59b81c57623b9df5b92f", + "line": 3454, + "resource_type": "aws_instance", + "resource_name": "example-instance-383", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example383}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example383}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example383}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3cf34fbe2d0b1fa3cf48040cb91a9c3cf0ab85b320685614da83d444e6b01df4", + "line": 1960, + "resource_type": "aws_instance", + "resource_name": "example-instance-217", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example217}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example217}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example217}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "af64059b59f153656ec7ee0e3c134a69574ad570072f135399d506dc823d6c7e", + "line": 907, + "resource_type": "aws_instance", + "resource_name": "example-instance-100", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example100}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example100}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example100}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cf6db3e53c0f25e55cbb1a5d87ddc8a2db5ddb4a01882b363726b3faaf577a6d", + "line": 8827, + "resource_type": "aws_instance", + "resource_name": "example-instance-980", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example980}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example980}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example980}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "462b35007973e6bc382d1d7df5eb074abfae4ee167426ae73eaa097e1a652766", + "line": 1492, + "resource_type": "aws_instance", + "resource_name": "example-instance-165", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example165}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example165}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example165}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a66b9a9daf36397f6de3b4f18a605aea9d00a64b547d70dea9c01a3f1db5c9da", + "line": 4660, + "resource_type": "aws_instance", + "resource_name": "example-instance-517", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example517}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example517}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example517}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "0557cb1a589516ceb07f20c6e814d7d70661ff57c647ece1a5937e2f3cea243d", + "line": 7765, + "resource_type": "aws_instance", + "resource_name": "example-instance-862", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example862}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example862}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example862}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1ffbcd16e1aa5ed0ba5d7f8ed05e4917ab585e67596bd4771f267534971bd9a5", + "line": 4183, + "resource_type": "aws_instance", + "resource_name": "example-instance-464", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example464}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example464}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example464}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e5279abcfca8f1e7a4b8c39621bd14c4f7431a9d18af2dfe6a5f0b5ca0fd623b", + "line": 5740, + "resource_type": "aws_instance", + "resource_name": "example-instance-637", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example637}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example637}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example637}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "8dc4749d985982e341dad1b2b4d58d3e80162d1cf927a8d0021d0b13dc167c19", + "line": 6010, + "resource_type": "aws_instance", + "resource_name": "example-instance-667", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example667}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example667}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example667}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "738ec146aa6681ee7f7bd4d24a600305fa8e828ffeecdcc968605c347c623d67", + "line": 7144, + "resource_type": "aws_instance", + "resource_name": "example-instance-793", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example793}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example793}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example793}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c19e7679a2540b6f7d41edaa6d31f8014805164e5102215e88c427ff040fdc05", + "line": 2869, + "resource_type": "aws_instance", + "resource_name": "example-instance-318", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example318}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example318}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example318}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d92064304a1186c60cd4446f55f9df4b2d1d0fa0023867891b74da3a6c5b12ab", + "line": 4507, + "resource_type": "aws_instance", + "resource_name": "example-instance-500", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example500}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example500}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example500}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a67e3f98123b37bccff33903d24425b08032857e77894033a5c7cf971d8f3bda", + "line": 4975, + "resource_type": "aws_instance", + "resource_name": "example-instance-552", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example552}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example552}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example552}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c0d72c8ddeb6d38e34503e72940909d5f245e22aa06cfd4d06ce2e8077068b9d", + "line": 8107, + "resource_type": "aws_instance", + "resource_name": "example-instance-900", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example900}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example900}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example900}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1570c4174facfb203e74319525c32417c5918af5add842c9085d24165ae0cd51", + "line": 862, + "resource_type": "aws_instance", + "resource_name": "example-instance-95", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example95}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example95}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example95}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2c87642bf74149762009beb1c81a944407dcd7d2df1ba5603d64883639e84218", + "line": 1717, + "resource_type": "aws_instance", + "resource_name": "example-instance-190", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example190}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example190}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example190}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "af7eabddf188f320a92bb6396042e5dff1d6c45ba7bb31710fe9bc88be90a605", + "line": 1825, + "resource_type": "aws_instance", + "resource_name": "example-instance-202", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example202}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example202}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example202}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4785bd073ee490f09644cf8bbcb1bf86c320b001f49677b6e2b5ed5582be9f54", + "line": 5488, + "resource_type": "aws_instance", + "resource_name": "example-instance-609", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example609}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example609}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example609}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5bbe16870c6f8e8974cfd2aeb5d8c5ee2f7ccdd6de4fc2e54250ffa538d810af", + "line": 1168, + "resource_type": "aws_instance", + "resource_name": "example-instance-129", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example129}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example129}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example129}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "060e7129b1e190097f3be1bcc820fe9c7748d7910a54f3b142ef7c65db15f97e", + "line": 6325, + "resource_type": "aws_instance", + "resource_name": "example-instance-702", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example702}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example702}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example702}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f0fe9714f171d7048b9fe9b9c60cb66bebbdebf00d4f6034b960dca0ad47943d", + "line": 898, + "resource_type": "aws_instance", + "resource_name": "example-instance-99", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example99}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example99}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example99}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1fead70888373c2e4190b09ec2bb96a71c312561c18296580b4e9d88d0bd7cbd", + "line": 8314, + "resource_type": "aws_instance", + "resource_name": "example-instance-923", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example923}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example923}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example923}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d0afd76054ac79b186e41c3bda01b35f433d847a6b90ee0e3b24d06f8c97b8f0", + "line": 6208, + "resource_type": "aws_instance", + "resource_name": "example-instance-689", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example689}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example689}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example689}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "04d8fa53851289ea1a2b554532d463d45dc965bd0ba149589a3bf082f2ebfb29", + "line": 2995, + "resource_type": "aws_instance", + "resource_name": "example-instance-332", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example332}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example332}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example332}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c76449b5ca103f7a848c5493d041a89832118d2359f3f1ebd478f594b9fd6f44", + "line": 3643, + "resource_type": "aws_instance", + "resource_name": "example-instance-404", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example404}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example404}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example404}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "07bb8153a569221db0bddaa3ae4e63442fb17f280dbcf8d344b6255cbde34425", + "line": 529, + "resource_type": "aws_instance", + "resource_name": "example-instance-58", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example58}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example58}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example58}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "57f90e9c43de6aee1f1c1aa37852a1268be547d681cc4c45616b902d2a862db0", + "line": 6658, + "resource_type": "aws_instance", + "resource_name": "example-instance-739", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example739}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example739}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example739}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "5c9675fbd6dbb6735b3aa2f49daf6386a82364edc6061ad47b51b1536de6f6c3", + "line": 1429, + "resource_type": "aws_instance", + "resource_name": "example-instance-158", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example158}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example158}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example158}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c9e4a12afa5eb5c14833523b443b77692823fc8373703d34c7e5ac2983921f19", + "line": 7882, + "resource_type": "aws_instance", + "resource_name": "example-instance-875", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example875}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example875}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example875}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "34daef71a8b209af5385b1f32586492c9fc86e3ca6fff6752fa3ab3afc3aa285", + "line": 6487, + "resource_type": "aws_instance", + "resource_name": "example-instance-720", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example720}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example720}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example720}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9e80478410384e9512d762b3047515adbc4c730d4d1ed06b0046d3315f50a51d", + "line": 7729, + "resource_type": "aws_instance", + "resource_name": "example-instance-858", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example858}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example858}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example858}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1a7567c9b15b12dd8540489d8d77f30716d6e1c0281c0376721b2c988a5fef00", + "line": 1942, + "resource_type": "aws_instance", + "resource_name": "example-instance-215", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example215}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example215}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example215}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "771280997cf269251b52be3d724c38239931c079cceacabb0823948d73669057", + "line": 1852, + "resource_type": "aws_instance", + "resource_name": "example-instance-205", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example205}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example205}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example205}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "dd1c4265e7ae2340a4f6d893ad62a7dfec6c1fe6df6655424bdd51843a55a239", + "line": 3760, + "resource_type": "aws_instance", + "resource_name": "example-instance-417", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example417}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example417}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example417}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b762f9c70995f94001aa71f3c93365204386fc1c90afee117c96b9e3da5899c6", + "line": 6262, + "resource_type": "aws_instance", + "resource_name": "example-instance-695", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example695}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example695}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example695}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1ece84527cac08626ac4fb6f6a181dfc46b7e7ab6f46891c9d209d5883cd7cef", + "line": 3994, + "resource_type": "aws_instance", + "resource_name": "example-instance-443", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example443}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example443}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example443}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c892dadfc3a02633dc6fe59c885d6fdf7e6938e89ab578a99ad794bf5a3f3776", + "line": 4345, + "resource_type": "aws_instance", + "resource_name": "example-instance-482", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example482}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example482}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example482}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "163aec7bea7d63fc5dd358c8f07b7b3362710b0c372cf1110b07c10c649078ea", + "line": 5749, + "resource_type": "aws_instance", + "resource_name": "example-instance-638", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example638}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example638}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example638}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "43d1fc5e67bef49411c05ebfe28a9595d5dd0d6b40660a73eb4355daa582ad41", + "line": 5452, + "resource_type": "aws_instance", + "resource_name": "example-instance-605", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example605}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example605}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example605}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "bf77b6b672c4cbc77647231febebdc6c86b55672d3049b30024daea724f4d1e0", + "line": 4696, + "resource_type": "aws_instance", + "resource_name": "example-instance-521", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example521}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example521}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example521}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ea8d1224d1099e7b3e2260fd748955666be5bb6d93fc9c9ed8848730628dcf49", + "line": 4993, + "resource_type": "aws_instance", + "resource_name": "example-instance-554", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example554}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example554}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example554}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "725f4e6cea887f739134ce075b81edbbf2189cc9d31200e3d9e013c7924490b3", + "line": 4057, + "resource_type": "aws_instance", + "resource_name": "example-instance-450", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example450}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example450}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example450}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cecc640b3c876385763dfedafed00376b86bdd47ae4fdec831ac7775d7979f23", + "line": 1744, + "resource_type": "aws_instance", + "resource_name": "example-instance-193", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example193}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example193}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example193}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2654e9eadbbafcf67dc634914493209a4f41d57b91888f61ae7454985613f74c", + "line": 7504, + "resource_type": "aws_instance", + "resource_name": "example-instance-833", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example833}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example833}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example833}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4dd98b2bdcb02eabb7a9c4a84010632b3040d6f344c75d7bf947f754709b0f31", + "line": 1762, + "resource_type": "aws_instance", + "resource_name": "example-instance-195", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example195}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example195}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example195}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d68676d01a834caed88652829c9eca8d7c63c6be6d728023bb6211804e0d3f1e", + "line": 1312, + "resource_type": "aws_instance", + "resource_name": "example-instance-145", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example145}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example145}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example145}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "cea4f1157b6808671e85136f977224f734b04dd1633682abbdfb0015bd7e7acd", + "line": 2059, + "resource_type": "aws_instance", + "resource_name": "example-instance-228", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example228}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example228}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example228}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b5f229d57c2fb90cc07834d8e3792fc7f31873d6bdec52c32ef2791a481e15ea", + "line": 3328, + "resource_type": "aws_instance", + "resource_name": "example-instance-369", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example369}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example369}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example369}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c92d88899e83e42a3b5cb612fba0d341737d7175b2d2cd56e4a0205e3cb0f28b", + "line": 5074, + "resource_type": "aws_instance", + "resource_name": "example-instance-563", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example563}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example563}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example563}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "25322598e3ee342bf2c79357adab3ecd2f19a65a3749ec0c5e624b5128aa1de9", + "line": 781, + "resource_type": "aws_instance", + "resource_name": "example-instance-86", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example86}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example86}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example86}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "2e7c44ebf8ad28cb69c7f9e1ea50e374bc573d302b84ebf7c0d6b9595796ad01", + "line": 5407, + "resource_type": "aws_instance", + "resource_name": "example-instance-600", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example600}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example600}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example600}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "17b0dd17aeb995cbac657d9b09c771e3a33c6987fae61d230a9562c147253f3e", + "line": 1672, + "resource_type": "aws_instance", + "resource_name": "example-instance-185", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example185}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example185}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example185}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "d49ef4aca14fd6c6e904df94a4d811c16a8519b1962115a8f56bf20d2060eaaf", + "line": 4948, + "resource_type": "aws_instance", + "resource_name": "example-instance-549", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example549}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example549}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example549}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "53ada1f2a58f11cee20905952564e5573f4bcfdd4cbd8e9f814a3f34ae6a3d83", + "line": 5434, + "resource_type": "aws_instance", + "resource_name": "example-instance-603", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example603}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example603}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example603}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "6aaffb8524c2afa92f568305f36440a7f6c6278d1c4790e7625502d9d3cb4e61", + "line": 790, + "resource_type": "aws_instance", + "resource_name": "example-instance-87", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example87}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example87}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example87}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "3b6a75dad545db0b89f1527c0ef7a8a091de4183bf73d13470ce5cfbea5875af", + "line": 3085, + "resource_type": "aws_instance", + "resource_name": "example-instance-342", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example342}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example342}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example342}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "ebc55fc1167bb1b6a66f732b25fc2e636885cc29e7ed582c8dea754026d18324", + "line": 52, + "resource_type": "aws_instance", + "resource_name": "example-instance-5", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example5}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example5}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example5}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9c5791eacd3361c97df340b83e1d3c67c0359d3247290ad3e9c791ab4f473331", + "line": 6082, + "resource_type": "aws_instance", + "resource_name": "example-instance-675", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example675}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example675}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example675}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b49b8ddc75eff0a05f43dea387b0920c580ed1b7d81f910594fdf3be7ac3ac50", + "line": 6352, + "resource_type": "aws_instance", + "resource_name": "example-instance-705", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example705}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example705}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example705}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "f0c5818b6b29470b41d0784fa92fb0809e09b6a41a8d04f62a8dbf0c6dae529f", + "line": 2590, + "resource_type": "aws_instance", + "resource_name": "example-instance-287", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example287}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example287}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example287}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "1bb5c350d7cf6e07c107791535ea635c76bcb583a03d781fc4afde9fc4f1c378", + "line": 4813, + "resource_type": "aws_instance", + "resource_name": "example-instance-534", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example534}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example534}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example534}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "4202581f472f41875cb16b1ed6ffe7fcd2702288c4dae0ed15ce9aac5012ba50", + "line": 6361, + "resource_type": "aws_instance", + "resource_name": "example-instance-706", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example706}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example706}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example706}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "9abbeb76d977092bf942b8f5d165a6f7c01a98435b2a9c77854962509ffa8d6d", + "line": 4300, + "resource_type": "aws_instance", + "resource_name": "example-instance-477", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example477}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example477}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example477}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "a92335b106568c8fd06195b916ea8dc5d585f1a95790af7c892ac9522659e095", + "line": 5344, + "resource_type": "aws_instance", + "resource_name": "example-instance-593", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example593}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example593}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example593}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "c0e0225ef77c305ac26c268fb9eb522b44446fa50635c41507a0dd03424d9996", + "line": 8710, + "resource_type": "aws_instance", + "resource_name": "example-instance-967", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example967}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example967}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example967}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "e2ae147c940d66a929739e71c0bb9bef6d162236d28dca8721e6c45533f410e9", + "line": 4525, + "resource_type": "aws_instance", + "resource_name": "example-instance-502", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example502}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example502}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example502}}].tags does not have additional tags defined other than 'Name'" + }, + { + "file_name": "e2e\\fixtures\\samples\\long_terraform.tf", + "similarity_id": "b54fb9c2e95b1210be49a27a908281834bec12ba1bec5d37de01bc6da5d9638d", + "line": 7090, + "resource_type": "aws_instance", + "resource_name": "example-instance-787", + "issue_type": "MissingAttribute", + "search_key": "aws_instance[{{example787}}].tags", + "search_line": -1, + "search_value": "", + "expected_value": "aws_instance[{{example787}}].tags has additional tags defined other than 'Name'", + "actual_value": "aws_instance[{{example787}}].tags does not have additional tags defined other than 'Name'" + } + ] + } + ] +} diff --git a/test/queries_content_test.go b/test/queries_content_test.go index aa2ae780545..fc9271cbd2b 100644 --- a/test/queries_content_test.go +++ b/test/queries_content_test.go @@ -267,6 +267,7 @@ func testQueryHasGoodReturnParams(t *testing.T, entry queryEntry) { //nolint map[string]bool{}, 60, true, + 1, ) require.Nil(t, err) require.NotNil(t, inspector) diff --git a/test/queries_test.go b/test/queries_test.go index daebe2ecf33..190f069b298 100644 --- a/test/queries_test.go +++ b/test/queries_test.go @@ -226,7 +226,7 @@ func testQuery(tb testing.TB, entry queryEntry, filesPath []string, expectedVuln ExcludeQueries: source.ExcludeQueries{ByIDs: []string{}, ByCategories: []string{}}, InputDataPath: "", }, - map[string]bool{}, 60, true) + map[string]bool{}, 60, true, 1) require.Nil(tb, err) require.NotNil(tb, inspector) diff --git a/test/similarity_id_test.go b/test/similarity_id_test.go index 4adc7408416..e61fe3eddcb 100644 --- a/test/similarity_id_test.go +++ b/test/similarity_id_test.go @@ -309,7 +309,7 @@ func createInspectorAndGetVulnerabilities(ctx context.Context, t testing.TB, ExcludeQueries: source.ExcludeQueries{ByIDs: []string{}, ByCategories: []string{}}, InputDataPath: "", }, - map[string]bool{}, 60, true) + map[string]bool{}, 60, true, 1) require.Nil(t, err) require.NotNil(t, inspector)