Skip to content
Start here

Schedules

resource cloudflare_workers_cron_trigger

required Expand Collapse
script_name: String

Name of the script, used in URLs and route configuration.

account_id: String

Identifier.

body: List[Attributes]
cron: String
created_on: String
modified_on: String
computed Expand Collapse
id: String

Name of the script, used in URLs and route configuration.

schedules: List[Attributes]
cron: String
created_on: String
modified_on: String

cloudflare_workers_cron_trigger

resource "cloudflare_workers_cron_trigger" "example_workers_cron_trigger" {
  account_id = "023e105f4ecef8ad9ca31a8372d0c353"
  script_name = "this-is_my_script-01"
  body = [{
    cron = "*/30 * * * *"
  }]
}

data cloudflare_workers_cron_trigger

required Expand Collapse
script_name: String

Name of the script, used in URLs and route configuration.

account_id: String

Identifier.

computed Expand Collapse
id: String

Name of the script, used in URLs and route configuration.

schedules: List[Attributes]
cron: String
created_on: String
modified_on: String

cloudflare_workers_cron_trigger

data "cloudflare_workers_cron_trigger" "example_workers_cron_trigger" {
  account_id = "023e105f4ecef8ad9ca31a8372d0c353"
  script_name = "this-is_my_script-01"
}