Skip to content

Commit d58e7d8

Browse files
authored
Fix provider pinning (#61)
* pin terraform * start with a clean project * test this module, not master
1 parent 28f1301 commit d58e7d8

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

codefresh/test.yml

+2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ steps:
2222
- make init
2323
- make -C test/ clean init
2424
- make -C test/src clean init
25+
- find . -type d -name '.terraform' | xargs rm -rf
26+
- find . -type f -name 'terraform.tfstate*' -exec rm -f {} \;
2527

2628
test:
2729
type: "parallel"

examples/complete/main.tf

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module "label1" {
2-
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=master"
2+
source = "../../"
33
namespace = "CloudPosse"
44
environment = "UAT"
55
stage = "build"
@@ -16,7 +16,7 @@ module "label1" {
1616
}
1717

1818
module "label2" {
19-
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=master"
19+
source = "../../"
2020
context = "${module.label1.context}"
2121
name = "Charlie"
2222
stage = "test"
@@ -29,7 +29,7 @@ module "label2" {
2929
}
3030

3131
module "label3" {
32-
source = "git::https://github.com/cloudposse/terraform-null-label.git?ref=master"
32+
source = "../../"
3333
name = "Starfish"
3434
stage = "release"
3535
context = "${module.label1.context}"

provider.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
provider "null_resource" {
1+
provider "null" {
22
version = "~> 2.1"
33
}

terraform.tf

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
terraform {
2+
required_version = "~> 0.11.0"
3+
}

0 commit comments

Comments
 (0)