-
Notifications
You must be signed in to change notification settings - Fork 123
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Equinix Metal provider #177
base: master
Are you sure you want to change the base?
Conversation
"ignore": "test", | ||
"package": [ | ||
{ | ||
"checksumSHA1": "kItpnJu5G9MVC56waIyHLoQZt/s=", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know how to generate checksumSHA1
. Any pointers @pearkes?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a way to automate the creation of these deep vendors/ directories, or just the vendor.json file?
@@ -5,9 +5,9 @@ | |||
{ | |||
"checksumSHA1": "kItpnJu5G9MVC56waIyHLoQZt/s=", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The packet/vendor/vendor.json checksumSHA1
will also need to be updated.
} | ||
], | ||
"rootPath": "github.com/hashicorp/go-discover/provider/packet" | ||
"rootPath": "github.com/hashicorp/go-discover/provider/equinixmetal" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be packet
.
"rootPath": "github.com/hashicorp/go-discover/provider/equinixmetal" | |
"rootPath": "github.com/hashicorp/go-discover/provider/packet" |
@@ -0,0 +1,46 @@ | |||
provider "metal" { | |||
version = "~> 2.8.1" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
version = "~> 2.8.1" | |
version = "~> 2.1" |
@@ -0,0 +1,10 @@ | |||
|
|||
terraform { | |||
required_version = ">= 0.13" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this version of TF possible with the current testing?
b2ac2b7
to
7f586dc
Compare
Signed-off-by: Marques Johansson <mjohansson@equinix.com>
Signed-off-by: Marques Johansson <mjohansson@equinix.com>
Signed-off-by: Marques Johansson <mjohansson@equinix.com>
Signed-off-by: Marques Johansson <mjohansson@equinix.com>
Signed-off-by: Marques Johansson <mjohansson@equinix.com>
7f586dc
to
98e7e5c
Compare
@@ -10,7 +10,7 @@ locals: | |||
executors: | |||
go: | |||
docker: | |||
- image: docker.mirror.hashicorp.services/circleci/golang:1.13.15 | |||
- image: docker.mirror.hashicorp.services/circleci/golang:1.16.5 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
packngo requires go v1.15+
I can remove this line if #200 (or similar) is merged first.
Part of #176