Skip to content

Commit c1a2e79

Browse files
committed
Update readme
1 parent 1e76653 commit c1a2e79

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ To get Terraform verison:
4040
>>> TerraformCommand().version()
4141
<CommandResult retcode=0 json=True>
4242
>>> _.value
43-
{'terraform_version': '1.6.6', 'platform': 'darwin_arm64', 'provider_selections': {}, 'terraform_outdated': True}
43+
{'terraform_version': '1.8.4', 'platform': 'darwin_arm64', 'provider_selections': {}, 'terraform_outdated': True}
4444
>>> TerraformCommand().version(json=False)
4545
<CommandResult retcode=0 json=False>
4646
>>> _.value
47-
'Terraform v1.6.6\non darwin_arm64\n'
47+
'Terraform v1.8.4\non darwin_arm64\n'
4848
```
4949

5050
To `init` and `apply` according to Terraform configuration files in the specified directory:
@@ -62,7 +62,7 @@ Additionally, `run()` can execute arbitrary commands, returning a tuple `(retcod
6262

6363
```python
6464
>>> TerraformCommand.run('version')
65-
(0, 'Terraform v1.6.6\non darwin_arm64\n', '')
65+
(0, 'Terraform v1.8.4\non darwin_arm64\n', '')
6666
>>> TerraformCommand.run('invalid')
6767
(1, '', 'Terraform has no command named "invalid".\n\nTo see all of Terraform\'s top-level commands, run:\n terraform -help\n\n')
6868
```

0 commit comments

Comments
 (0)