Skip to content

Commit 98907b7

Browse files
committed
fix null
1 parent 95d3583 commit 98907b7

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [1.8.0] - 2021-02-18
8+
### Fixed
9+
- Null var
710
## [1.7.0] - 2021-02-18
811
### Changed
912
- Bump devenv

variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ variable "vscode_enabled" {
2020
}
2121

2222
variable "workspace_image_tag" {
23-
default = null
23+
default = ""
2424
type = string
2525
}
2626

2727
variable "workspace_image_digest" {
28-
default = null
28+
default = ""
2929
type = string
3030
}

0 commit comments

Comments
 (0)