File tree Expand file tree Collapse file tree 6 files changed +310
-386
lines changed Expand file tree Collapse file tree 6 files changed +310
-386
lines changed Original file line number Diff line number Diff line change @@ -16,23 +16,23 @@ description: |-
16
16
data "uname" "localhost" {}
17
17
18
18
output "localhost_kernel_name" {
19
- value = data.uname.system .kernel_name
19
+ value = data.uname.localhost .kernel_name
20
20
}
21
21
22
22
output "localhost_nodename" {
23
- value = data.uname.system .nodename
23
+ value = data.uname.localhost .nodename
24
24
}
25
25
26
26
output "localhost_kernel_release" {
27
- value = data.uname.system .kernel_release
27
+ value = data.uname.localhost .kernel_release
28
28
}
29
29
30
30
output "localhost_machine" {
31
- value = data.uname.system .machine
31
+ value = data.uname.localhost .machine
32
32
}
33
33
34
34
output "localhost_operating_system" {
35
- value = data.uname.system .operating_system
35
+ value = data.uname.localhost .operating_system
36
36
}
37
37
```
38
38
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ module github.com/julienlevasseur/terraform-provider-uname
3
3
go 1.13
4
4
5
5
require (
6
- github.com/hashicorp/terraform-plugin-sdk/v2 v2.3.0
6
+ github.com/hashicorp/terraform-plugin-framework v1.1.1
7
+ github.com/hashicorp/terraform-plugin-sdk/v2 v2.25.0
7
8
github.com/matishsiao/goInfo v0.0.0-20210923090445-da2e3fa8d45f
8
9
)
You can’t perform that action at this time.
0 commit comments