Skip to content

Commit

Permalink
v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
debuggerboy committed May 7, 2022
1 parent 86f5ee3 commit 0038296
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ provider "aws" {
}

module "pulsiot-security-group-module" {
source = "github.com/pulsiot/pulsiot-security-group-module"
source = "github.com/pulsiot/pulsiot-security-group-module?ref=v0.1.0"
vpc_id = var.vpc_id
cidr_blocks = var.cidr_blocks
ipv6_cidr_blocks = var.ipv6_cidr_blocks
}

module "pulsiot-ec2-module" {
source = "github.com/pulsiot/pulsiot-ec2-module"
source = "github.com/pulsiot/pulsiot-ec2-module?ref=v0.1.0"
inst_type = var.inst_type
inst_name = var.inst_name
proj_name = var.proj_name
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,6 @@ variable "ipv6_cidr_blocks" {

variable "security_groups" {
#type = any
type = list(any)
type = list(any)
default = null
}

0 comments on commit 0038296

Please sign in to comment.