Hi All,
I am new to terraform and exploring its possibilities by using it for API calls.
I am able to do the POST and PUT operation but i am not getting how DELETE works.
I searched terraform site and found that terraform destroy is the command but that doesn't seem working for me.
Could you please help me by giving an example how can i use it ?
Here is my tf file:
resource "company_lun" "my-lun" {
host = "https://<ip>:<port>"
user_name = "<username>"
password = "<password>"
key = "<rsource-key>"
}
Please let me know for any clarification.