We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i have this message : │ The argument "url" is required, but was not set.
run terraform apply with this configurations
` terraform {
required_providers {
aws = { source = "hashicorp/aws" version = "5.23.1" } opensearch = { source = "opensearch-project/opensearch" version = "2.1.0" }
} } provider declaration : provider "opensearch" {
provider declaration :
url = "https://${aws_opensearch_domain.opensearch.endpoint}"
aws_region = var.Region
healthcheck = false
aws_assume_role_arn = var.master_user_arn
opensearch_version = aws_opensearch_domain.opensearch.engine_version
}
`
Plan: 12 to add, 0 to change, 0 to destroy. ╷ │ Error: Missing required argument │ │ The argument "url" is required, but was not set. `
the expected behaviour is creating resources
i use Opensearch 2.3 and opensearch-project/opensearch 2.1.0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What is the bug?
i have this message : │ The argument "url" is required, but was not set.
How can one reproduce the bug?
run terraform apply with this configurations
`
terraform {
required_providers {
}
}
provider declaration :
provider "opensearch" {
url = "https://${aws_opensearch_domain.opensearch.endpoint}"
aws_region = var.Region
healthcheck = false
aws_assume_role_arn = var.master_user_arn
opensearch_version = aws_opensearch_domain.opensearch.engine_version
}
`
Plan: 12 to add, 0 to change, 0 to destroy.
╷
│ Error: Missing required argument
│
│ The argument "url" is required, but was not set.
`
What is the expected behavior?
the expected behaviour is creating resources
What is your host/environment?
i use Opensearch 2.3 and opensearch-project/opensearch 2.1.0
The text was updated successfully, but these errors were encountered: