Terraform catchpoint resource not working

Terraform Configuration File
required_providers {
catchpoint = {
source = “catchpoint/catchpoint”
version = “1.1.0”
}
}
required_version = “>= 1.2.0”
}

provider “catchpoint” {
api_token = “your_token”
}
resource “ssl_test” “chopper” {
test_name = “SSLTF”
provider = catchpoint
division_id = User_division_id
product_id = User_product_id
folder_id = User_folder_id
monitor = “ssl”
test_location = “ssl://www.google.com”
end_time = “2024-06-24T04:59:00Z”
}

Config file is vaild, api_token is valid but still it is failing at the time of terraform apply cmd.
There is no option create an issue option on the catchpoint repo or neither I can tag them here :zipper_mouth_face:

Hello Lata,

We request you to take reference from the below resource block and use it after modifying according to you terraform set up.

terraform {
required_providers {
catchpoint = {
source = “catchpoint/catchpoint”
version = “1.1.0”
}
}
}

provider “catchpoint” {
api_token=“Your API Token”
}

resource “ssl_test” “sslTest” {
test_name = “SSL_TF 1234”
provider=catchpoint
division_id=Your Division ID
product_id=Your Product ID
folder_id=Your Folder ID
monitor=“ssl”
test_location=“ssl://www.catchpoint.com”
start_time=“2024-06-26T04:59:00Z”
end_time=“2024-10-30T04:59:00Z”
}

If you are still facing an issue. We request you get in touch with us at support@catchpoint.com as we are open for our clients 24/7 365 days.

I’m using the same format, and configuration file is also valid, But it is still failing.

In that case we request you get in touch with us at support@catchpoint.com and we shall assist you accordingly.

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.