Skip to content

Commit

Permalink
Write changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
WalshyDev committed Mar 14, 2024
1 parent 6f548d2 commit be3786f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .changelog/3154.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
```release-note:enhancement
resource/cloudflare_worker_script: Add `dispatch_namespace` to support uploading to a Workers for Platforms namespace
```

```release-note:enhancement
resource/cloudflare_worker_script: Add `tags` to support tagging Workers for Platforms Workers
```
8 changes: 8 additions & 0 deletions examples/resources/cloudflare_worker_script/resource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,11 @@ resource "cloudflare_worker_script" "my_script" {
dataset = "dataset1"
}
}

resource "cloudflare_worker_script" "wfp_user_worker" {
account_id = "f037e56e89293a057740de681ac9abbe"
name = "customer-worker-1"
content = file("script.js")
dispatch_namespace = "my-namespace"
tags = ["free"]
}

0 comments on commit be3786f

Please sign in to comment.