Skip to content

Commit

Permalink
add yaml instructions for any tf provider (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
VenelinMartinov authored Nov 14, 2024
1 parent 46abc09 commit 6016223
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
go.work
go.work.sum
19 changes: 12 additions & 7 deletions docs/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,13 +133,12 @@ To use this SDK in your Java project, complete the following steps:
{{% /choosable %}}
{{% choosable language yaml %}}

{{% notes type="info" %}}

`terraform-provider` is not available for Pulumi YAML. We are working on
bringing the underlying technology that `terraform-provider` uses to Pulumi YAML. Progress
is tracked in [Parameterized Providers: YAML support #16802](https://github.com/pulumi/pulumi/issues/16802).
```console
$ pulumi package add terraform-provider hashicorp/random
Downloading provider: terraform-provider
```

{{% /notes %}}
Note that the YAML language does not need an SDK.

{{% /choosable %}}
{{< /chooser >}}
Expand Down Expand Up @@ -223,7 +222,13 @@ public class App {
{{% choosable language yaml %}}

```yaml
# Coming soon
name: Pulumi Program
runtime: yaml
resources:
pet:
type: random:RandomPet
properties:
length: 2
```
{{% /choosable %}}
Expand Down

0 comments on commit 6016223

Please sign in to comment.