Getting the below error after submitting the task
Resources have not been created using ‘terraform’.
main.tf
# Create the OpenSearch domain
resource "aws_opensearch_domain" "xfusion_es" {
domain_name = "xfusion-es"
engine_version = "OpenSearch_1.3" # You can change this to your preferred version
# Enable node-to-node encryption
node_to_node_encryption {
enabled = true
}
# Enable encryption at rest
encrypt_at_rest {
enabled = true
}
}
