bddvlpr opened a new pull request, #293:
URL: https://github.com/apache/cloudstack-terraform-provider/pull/293

   # Description
   When a user data resource is nested in a particular project using 
project_id, a global search will not find that particular user data.
   
   If for some reason (as the case before),the userdata list command succeeds 
but doesn't contain any user data itself, throw an error for that.
   
   # Reproduce bug
   ```tf
   resource "cloudstack_project" "test-project" {
     name = "test-project"
   }
   
   resource "cloudstack_user_data" "test-userdata" {
     name = "cloudinit-test"
     userdata = base64encode(file("../some-cloudinit.yaml"))
     project_id = cloudstack_project.test-project.id
   }
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to