terraform-provider-uptimerobot
terraform-provider-uptimerobot copied to clipboard
A terraform provider for UptimeRobot
Fixes https://github.com/louy/terraform-provider-uptimerobot/issues/69 I'd tried to use `TypeMap`, but `TypeMap` doesn't allow to nest `TypeList`. https://discuss.hashicorp.com/t/resource-schema-typelist-as-element-for-typemap/4809 So, I use `TypeSet`. I investigate about how to test `TypeSet`, but I can't find...
I am facing this error sometimes during `terraform plan`. ``` Stack trace from the terraform-provider-uptimerobot plugin: panic: interface conversion: interface {} is nil, not float64 goroutine 71 [running]: github.com/louy/terraform-provider-uptimerobot/uptimerobot/api.UptimeRobotApiClient.GetMonitor(0xc00003a0d4, 0x21,...
Is it possible to set Monitoring for SSL errors/SSL expiry using this module?
@vexxhost has been maintaining this fork: https://github.com/vexxhost/terraform-provider-uptimerobot If this repo is no longer being maintained, would you accept a final PR to note that it is deprecated in favor of...
currently the mapping of an `alert_contact` to a monitor is a little bit unhandy as it is defined inside of the monitor. this leads also to problems like https://github.com/louy/terraform-provider-uptimerobot/pull/97#issuecomment-916059540 my...
Hi there, I was looking to see if there's a planned release coming. I recently started using the provider and it's been great, had to compile from master to get...
Added phone type. API `getAlertContacts` does not return value returns. Checked for an optional field For example: ``` {"friendly_name":"Samsung", "id":"11111", "status":2, "type":13} ```
These break statements are not needed. Also minor gofmt
It isn't super safe to string() an int, slightly better to use fmt.errorf. Also added handling for json decode errors
I was having trouble using the provider because I was being rate limited, and the error was "null" because it wasn't in json. This change adds the hashicorp retryable http...