Skip to content

Commit 1108da9

Browse files
committed
Update and resolved issues
1 parent bd637ae commit 1108da9

File tree

6 files changed

+24
-12
lines changed

6 files changed

+24
-12
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 Cloud Drove
3+
Copyright (c) 2021 Cloud Drove
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

_example/.terraform.lock.hcl

Lines changed: 19 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_example/example.tf

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ provider "aws" {
33
}
44

55
module "vpc" {
6-
source = "clouddrove/vpc/aws"
7-
version = "0.14.0"
6+
source = "git::https://github.com/clouddrove/terraform-aws-vpc.git?ref=0.14"
87
name = "vpc"
98
repository = "https://registry.terraform.io/modules/clouddrove/vpc/aws/0.14.0"
109
environment = "test"

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# convention.
99

1010
module "labels" {
11-
source = "git::https://github.com/clouddrove/terraform-labels.git?ref=tags/0.14.0"
11+
source = "git::https://github.com/clouddrove/terraform-labels.git?ref=0.14"
1212

1313
name = var.name
1414
repository = var.repository

variables.tf

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -66,22 +66,19 @@ variable "description" {
6666
variable "allowed_ports" {
6767
type = list
6868
default = []
69-
description = "List of allowed ingress ports."
70-
sensitive = true
69+
description = "List of allowed ingress ports"
7170
}
7271

7372
variable "allowed_ip" {
7473
type = list
7574
default = []
7675
description = "List of allowed ip."
77-
sensitive = true
7876
}
7977

8078
variable "security_groups" {
8179
type = list(string)
8280
default = []
8381
description = "List of Security Group IDs allowed to connect to the instance."
84-
sensitive = true
8582
}
8683

8784
variable "protocol" {
@@ -93,12 +90,10 @@ variable "allowed_ipv6" {
9390
type = list
9491
default = []
9592
description = "List of allowed ipv6."
96-
sensitive = true
9793
}
9894
variable "prefix_list" {
9995
type = list
10096
default = []
10197
description = "List of prefix list IDs (for allowing access to VPC endpoints)Only valid with egress"
102-
sensitive = true
10398

10499
}

versions.tf

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ terraform {
33
required_version = ">= 0.12.0, < 0.15.0"
44
required_providers {
55
aws = {
6-
source = "hashicorp/aws"
7-
version = "3.10.0"
6+
source = "hashicorp/aws"
87
}
98
}
109
}

0 commit comments

Comments
 (0)