We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This issue was originally opened by @spengilley as hashicorp/terraform#20188. It was migrated here as a result of the provider split. The original body of the issue is below.
version: 0.11.11 ...
... # * * * * * * * * * * * * * * * * * * * * * * * * * * * * * # Create a vApp # * * * * * * * * * * * * * * * * * * * * * * * * * * * * * resource "vcd_vapp" "master" { name = "master" depends_on = ["vcd_network_routed.INTERNET"] } # * * * * * * * * * * * * * * * * * * * * * * * * * * * * * # Create a Vm # * * * * * * * * * * * * * * * * * * * * * * * * * * * * * resource "vcd_vapp_vm" "master" { vapp_name = "${vcd_vapp.master.name}" name = "master" # Define the catalog and template catalog_name = "VANILLA" template_name = "VANILLA" # Give the app internet access so that it can be provisioned # This network resource is defined in networks.tf network_name = "${vcd_network_routed.INTERNET.name}" ip = "192.168.30.2" }
https://gist.github.com/spengilley/5e6b0210a23b6d269c0e13d253510005
Create a VM
Crashes
-->
The text was updated successfully, but these errors were encountered:
Duplicate of #157
Sorry, something went wrong.
No branches or pull requests
This issue was originally opened by @spengilley as hashicorp/terraform#20188. It was migrated here as a result of the provider split. The original body of the issue is below.
Terraform Version
Terraform Configuration Files
Crash Output
https://gist.github.com/spengilley/5e6b0210a23b6d269c0e13d253510005
Expected Behavior
Create a VM
Actual Behavior
Crashes
Steps to Reproduce
-->
The text was updated successfully, but these errors were encountered: