terraform-coop / terraform-provider-foreman

Terraform provider for Foreman
https://registry.terraform.io/providers/terraform-coop/foreman
Mozilla Public License 2.0
33 stars 31 forks source link

worng example on sync_plan doc #169

Open vhsantos opened 1 week ago

vhsantos commented 1 week ago

On the sync_plan doc

# Autogenerated example with required keys
resource "foreman_katello_sync_plan" "example" {
  cron_expression = "*/5 * * * *"
  description = "A sync plan description"
  enabled = true
  interval = "daily"
  name = "daily"
  sync_date = "1970-01-01 00:00:00 UTC"
}

there is a small error, because you cant have the interval = "daily" and cron_expression at the same time.. it generate a error after the first apply. :-)