Skip to content

Commit d99ab73

Browse files
committedAug 29, 2023
Typo in var manppings
1 parent 7c946ef commit d99ab73

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎action.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ runs:
490490
AWS_SESSION_TOKEN: ${{ inputs.aws_session_token }}
491491
AWS_DEFAULT_REGION: ${{ inputs.aws_default_region }}
492492
AWS_RESOURCE_IDENTIFIER: ${{ inputs.aws_resource_identifier }}
493-
AWS_ADDITIONAL_TAGS: ${{ inputs.additional_tags }}
493+
AWS_ADDITIONAL_TAGS: ${{ inputs.aws_additional_tags }}
494494

495495
# ENV Files
496496
ENV_AWS_SECRET: ${{ inputs.env_aws_secret }}

‎operations/deployment/terraform/eks/aws_variables.tf

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ variable "aws_resource_identifier_supershort" {
1111
}
1212

1313
variable "aws_additional_tags" {
14-
type = map(string)
14+
type = string
1515
description = "A list of strings that will be added to created resources"
16-
default = {}
16+
default = "{}"
1717
}
1818

1919
# EKS
@@ -158,7 +158,7 @@ variable "aws_eks_min_size" {
158158
variable "aws_eks_additional_tags" {
159159
type = string
160160
description = "A list of strings that will be added to created resources"
161-
default = ""
161+
default = "{}"
162162
}
163163
#### END OF ACTION VARIABLES INPUTS
164164
#### The following are not being exposed directly to the end user

0 commit comments

Comments
 (0)
Please sign in to comment.