Skip to content

Commit 161c6a1

Browse files
committed
NRL-1188 Python version var is a number not string
1 parent 3760cc7 commit 161c6a1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module "dev-glue" {
22
source = "../modules/glue"
33
name_prefix = "nhsd-nrlf--dev"
4-
python_version = "3.9"
4+
python_version = 3.9
55
}

terraform/account-wide-infrastructure/modules/glue/vars.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ variable "name_prefix" {
44
}
55

66
variable "python_version" {
7-
type = string
7+
type = number
88
description = "Python version to run in script"
99
}
1010

0 commit comments

Comments
 (0)