mirror of
https://github.com/imjasonh/terraform-playground
synced 2026-07-08 07:44:57 +00:00
20 lines
373 B
TOML
20 lines
373 B
TOML
name = "my-container-service"
|
|
main = "index.js"
|
|
account_id = "TODO" # Set this
|
|
compatibility_date = "2025-10-08"
|
|
|
|
[observability]
|
|
enabled = true
|
|
|
|
[[containers]]
|
|
class_name = "MyContainer"
|
|
image = "./Dockerfile"
|
|
max_instances = 10
|
|
|
|
[[durable_objects.bindings]]
|
|
class_name = "MyContainer"
|
|
name = "MY_CONTAINER"
|
|
|
|
[[migrations]]
|
|
tag = "v1"
|
|
new_sqlite_classes = ["MyContainer"]
|