From 4344137daeda66f33c171ac828d58b89af5cd7e7 Mon Sep 17 00:00:00 2001
From: "allcontributors[bot]"
<46447321+allcontributors[bot]@users.noreply.github.com>
Date: Thu, 18 Mar 2021 09:31:39 +0000
Subject: [PATCH 1/3] docs: update CONTRIBUTORS.md [skip ci]
---
CONTRIBUTORS.md | 1 +
1 file changed, 1 insertion(+)
diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md
index c8581035..6647cc28 100644
--- a/CONTRIBUTORS.md
+++ b/CONTRIBUTORS.md
@@ -22,6 +22,7 @@ Thank you to all the people who have already contributed to driftctl.
Toussaint Louis π» π |
Peter Sedgewick π |
RaphaΓ«l π» |
+ vainkop π |
From 68702db204873c5d72bc37af9534e32525de0ef1 Mon Sep 17 00:00:00 2001
From: "allcontributors[bot]"
<46447321+allcontributors[bot]@users.noreply.github.com>
Date: Thu, 18 Mar 2021 09:31:40 +0000
Subject: [PATCH 2/3] docs: update .all-contributorsrc [skip ci]
---
.all-contributorsrc | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/.all-contributorsrc b/.all-contributorsrc
index de11a73a..b9e5c419 100644
--- a/.all-contributorsrc
+++ b/.all-contributorsrc
@@ -155,6 +155,15 @@
"contributions": [
"code"
]
+ },
+ {
+ "login": "vainkop",
+ "name": "vainkop",
+ "avatar_url": "https://avatars.githubusercontent.com/u/28118190?v=4",
+ "profile": "https://github.com/vainkop",
+ "contributions": [
+ "bug"
+ ]
}
]
}
From 7928a4902df2e4809722a3b8c14f86daa8111ee4 Mon Sep 17 00:00:00 2001
From: Elie
Date: Thu, 18 Mar 2021 11:20:14 +0100
Subject: [PATCH 3/3] Fix missing mock on golden file update
---
pkg/remote/aws/init_test.go | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/pkg/remote/aws/init_test.go b/pkg/remote/aws/init_test.go
index 30e6ccc9..951395e4 100644
--- a/pkg/remote/aws/init_test.go
+++ b/pkg/remote/aws/init_test.go
@@ -6,7 +6,9 @@ import (
)
func InitTestAwsProvider(providerLibrary *terraform.ProviderLibrary) (*AWSTerraformProvider, error) {
- provider, err := NewAWSTerraformProvider(&output.MockProgress{})
+ progress := &output.MockProgress{}
+ progress.On("Inc").Maybe().Return()
+ provider, err := NewAWSTerraformProvider(progress)
if err != nil {
return nil, err
}