Guest User

Untitled

a guest
Feb 16th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. provider "google-beta" {
  2. project = "project-id"
  3. region = "europe-west1"
  4. }
  5.  
  6. resource "google_cloud_scheduler_job" "job" {
  7. provider = "google-beta"
  8. name = "job"
  9. description = "Cron Job do the thing"
  10. schedule = "*/15 * * * *"
  11. time_zone = "Europe/London"
  12. pubsub_target = {
  13. topic_name = "projects/project-id/topics/${google_pubsub_topic.topic.name}"
  14. data = "${base64encode("{}")}"
  15. }
  16. }
Add Comment
Please, Sign In to add comment