diff --git a/README.md b/README.md index a5d47d3..e039c56 100644 --- a/README.md +++ b/README.md @@ -17,9 +17,12 @@ python-terraform is a python module provide a wrapper of `terraform` command lin return_code, stdout, stderr = t.(*arguments, **options) ####For any parameter -simply pass as argument in order of method, for example, +simply pass the string to arguments of the method, for example, - terraform apply target_dir --> .apply('target_dir') + terraform apply target_dir + --> .apply('target_dir') + terraform import aws_instance.foo i-abcd1234 + --> .import('aws_instance.foo', 'i-abcd1234') ####For any options