csc

Cloud Scheduler

IntegrationGCP
General

General information about the service.

Description

Google Cloud Scheduler is a fully managed enterprise-grade cron job scheduler.

Service ID

cloudscheduler.googleapis.com

Resource Pattern

projects/{project}/locations/{location}/jobs/{job}

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

csc-{workload}-{environment}

Length

1-63

Valid Characters

Lowercase letters, numbers, hyphens

Scope

project

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "google_cloud_scheduler_job" "main" {
2 name = "csc-${var.environment}"
3 region = var.region
4 schedule = "*/5 * * * *"
5
6 http_target {
7 http_method = "POST"
8 uri = var.target_url
9 }
10}
Utilities

Utilities to support app deployment or configuration.