Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing https://yandex.cloud/ru/docs/functions/tutorials/alice-shareable-todolist #343

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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