-
Notifications
You must be signed in to change notification settings - Fork 12
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
Not compatible with Terraform 0.12 #1
Comments
I was able to migrate the code, but it doesn't seem to work as expected:
Anyway, whoever feels working on it:
|
@h0x91b-wix's fork seems to work with Terraform 0.12. FWIW I've added their fork to my infrastructure in this commit. |
Yes, it's working, we are using it already here in wix, but I did some changes to API, please wait while I finish to document it and rewrite python example... |
I have a fork which now works with Terraform 0.13 and the plugin SDK 5. Also tweaked it so that the resource name can be anything you like, since the Provider gets it's binding from the binary name. example, here there are two copies of the binary,
resource "multiverse" "h" {
executor = "python3"
script = "hello_world.py"
id_key = "id"
data = <<JSON
{
"name": "test-terraform-test",
"url" : "https://foo.bar.quux/",
"created-by" : "Elvis Presley"
}
JSON
}
resource "alpha" "h" {
executor = "python3"
script = "hello_world.py"
id_key = "id"
data = <<JSON
{
"name": "A strange alpha resource",
"url" : "https://alpha.com/",
"created-by" : "Winston Churchill",
"subject" : "Painting I'm still working on this fork, there's documents to update and more examples to add. |
Thanks a lot @birchb1024 |
My fork is mostly ready to use. I've added a proper round trip in and out of TF for the |
it's a pity, this git repo is no longer maintained, I was the creator and maintainer of this project but I left the company long time ago. |
I would like to rename my fork to 'universe', assuming the name is not already taken. Not least because GitHub forks cannot have their own issues. Mainly though because my fork is no longer compatible with multiverse. Is that OK? Does anyone object? Especially want to hear from @benishak ? |
The text was updated successfully, but these errors were encountered: