Skip to content
This repository was archived by the owner on May 16, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions serverless/alice-shareable-todolist/app.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ resource "yandex_function" "web-api" {
entrypoint = "main.WebHandler"
memory = 128
name = "todolist-web"
runtime = "golang114"
runtime = "golang116"
user_hash = data.archive_file.app-code.output_base64sha256
content {
zip_filename = data.archive_file.app-code.output_path
Expand All @@ -27,7 +27,7 @@ resource "yandex_function" "alice-api" {
entrypoint = "main.AliceHandler"
memory = 128
name = "todolist-alice"
runtime = "golang114"
runtime = "golang116"
user_hash = data.archive_file.app-code.output_base64sha256
content {
zip_filename = data.archive_file.app-code.output_path
Expand Down Expand Up @@ -141,4 +141,4 @@ variable "database-endpoint" {

variable "secure-config-path" {
type = string
}
}
2 changes: 1 addition & 1 deletion serverless/alice-shareable-todolist/app/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/yandex-cloud/examples/serverless/alice-shareable-todolist/app

go 1.15
go 1.16

require (
github.com/go-openapi/errors v0.20.0
Expand Down
Loading