-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
Replace github.com/upbound/upjet Go module dependency with github.com/crossplane/upjet
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,36 @@ | ||
name: hashicorp/null | ||
resources: | ||
null_resource Resource - terraform-provider-null: | ||
null_resource: | ||
subCategory: "" | ||
description: The null_resource resource implements the standard resource lifecycle but takes no further action. The triggers argument allows specifying an arbitrary set of values that, when changed, will cause the resource to be replaced. | ||
name: null_resource Resource - terraform-provider-null | ||
name: null_resource | ||
title: null_resource Resource - terraform-provider-null | ||
examples: | ||
- name: cluster | ||
manifest: |- | ||
{ | ||
"connection": [ | ||
{ | ||
"host": "${element(aws_instance.cluster.*.public_ip, 0)}" | ||
} | ||
], | ||
"provisioner": { | ||
"remote-exec": [ | ||
{ | ||
"inline": [ | ||
"bootstrap-cluster.sh ${join(\" \", aws_instance.cluster.*.private_ip)}" | ||
] | ||
} | ||
] | ||
}, | ||
"triggers": { | ||
"cluster_instance_ids": "${join(\",\", aws_instance.cluster.*.id)}" | ||
} | ||
} | ||
dependencies: | ||
aws_instance.cluster: |- | ||
{ | ||
"count": 3 | ||
} | ||
argumentDocs: {} | ||
importStatements: [] |