Skip to content

Commit

Permalink
Merge pull request #9 from podaac/release/0.1.1
Browse files Browse the repository at this point in the history
Release/0.1.1
  • Loading branch information
cqbanh authored Dec 13, 2023
2 parents 63b2377 + abdba1a commit 39355cb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions terraform/generate-ssm.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@
resource "aws_ssm_parameter" "aws_ssm_parameter_ps_idl_aqua" {
name = "${var.prefix}-idl-aqua"
type = "String"
value = "6"
value = "13"
}

# MODIS Terra
resource "aws_ssm_parameter" "aws_ssm_parameter_ps_idl_terra" {
name = "${var.prefix}-idl-terra"
type = "String"
value = "6"
value = "13"
}

# VIIRS
resource "aws_ssm_parameter" "aws_ssm_parameter_ps_idl_viirs" {
name = "${var.prefix}-idl-viirs"
type = "String"
value = "6"
value = "13"
}

# Floating
Expand Down
4 changes: 2 additions & 2 deletions terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ variable "app_name" {
}

variable "app_version" {
type = number
type = string
description = "The application version number"
default = 0.1
default = "0.1.1"
}

variable "aws_region" {
Expand Down

0 comments on commit 39355cb

Please sign in to comment.