How to call ansible playbook in terraform code?
问题 I have an ansible playbook which works well , now I have to call that playbook using terrform scripts. Currently I m using code which is shown below but it results in error during terraform init as: Error: Unknown root level key: provisioner I am using Terraform v0.11.7 and the error occurs only when I run this specific code. Also my main.tf consists of only this code. The directory structure I have used is such as : . ├── create-user.yml ├── library │ └── mkpassword.py ├── main.tf ├──