0
0
llucycodes42
The code defines an IBM Application resource with the name "myResourceName" and the GUID "${data.ibm_space.myResourceName-space.id}". The application path is "/test/app1.zip", and the wait time is set to 90 minutes.
Shortcut: tf_ibm_app
resource "ibm_app" "${myResourceName}" {
name = "my-${myResourceName}"
space_guid = "${data.ibm_space.myResourceName-space.id}"
app_path = "/test/app1.zip"
wait_time_minutes = 90
}