質問編集履歴

4

powershellを追記

2020/11/09 10:31

投稿

narururu
narururu

スコア172

test CHANGED
File without changes
test CHANGED
@@ -10,6 +10,10 @@
10
10
 
11
11
  64bit
12
12
 
13
+ powershell
14
+
15
+
16
+
13
17
  ## 現状
14
18
 
15
19
  ```

3

追記

2020/11/09 10:31

投稿

narururu
narururu

スコア172

test CHANGED
File without changes
test CHANGED
@@ -171,3 +171,29 @@
171
171
  エラーの原因が分かりません。。。
172
172
 
173
173
  どなたか教えていただけませんでしょうか。
174
+
175
+
176
+
177
+ ##追記
178
+
179
+ ```
180
+
181
+ PS C:\terraform> get-help about_Command_Precedence
182
+
183
+ get-help : Get-Help を実行しましたが、このセッションではヘルプ ファイルの about_Command_Precedence が見つかりませんでした。更新されたヘルプ トピックを
184
+
185
+ ダウンロードするには、「Update-Help」と入力してください。ヘルプをオンラインで参照するには、TechNet ライブラリ (https://go.microsoft.com/fwlink/?LinkID=
186
+
187
+ 107116) でヘルプ トピックを検索してください。
188
+
189
+ 発生場所 行:1 文字:1
190
+
191
+ + get-help about_Command_Precedence
192
+
193
+ + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
194
+
195
+ + CategoryInfo : ResourceUnavailable: (:) [Get-Help], HelpNotFoundException
196
+
197
+ + FullyQualifiedErrorId : HelpNotFound,Microsoft.PowerShell.Commands.GetHelpCommand
198
+
199
+ ```

2

追記

2020/11/09 10:16

投稿

narururu
narururu

スコア172

test CHANGED
File without changes
test CHANGED
@@ -14,23 +14,83 @@
14
14
 
15
15
  ```
16
16
 
17
- PS C:\terraform> terraform
17
+ Usage: terraform [-version] [-help] <command> [args]
18
18
 
19
- terraform : 用語 'terraform' は、コマンドレット、関数、スクリプト ファイル、または操作可能なプログラムの名前として認識されません。名前が正しく記述され
20
19
 
21
- ていることを確認し、パスが含まれている場合はそのパスが正しいことを確認してから、再試行してください。
22
20
 
23
- 発生場所 行:1 文字:1
21
+ The available commands for execution are listed below.
24
22
 
25
- + terraform
23
+ The most common, useful commands are shown first, followed by
26
24
 
27
- + ~~~~~~~~~
25
+ less common or more advanced commands. If you're just getting
28
26
 
29
- + CategoryInfo : ObjectNotFound: (terraform:String) [], CommandNotFoundException
27
+ started with Terraform, stick with the common commands. For the
30
28
 
29
+ other commands, please read the help and docs before usage.
30
+
31
+
32
+
33
+ Common commands:
34
+
35
+ apply Builds or changes infrastructure
36
+
37
+ console Interactive console for Terraform interpolations
38
+
39
+ destroy Destroy Terraform-managed infrastructure
40
+
41
+ env Workspace management
42
+
43
+ fmt Rewrites config files to canonical format
44
+
45
+ get Download and install modules for the configuration
46
+
47
+ graph Create a visual graph of Terraform resources
48
+
49
+ init Initialize a Terraform working directory
50
+
51
+ login Obtain and save credentials for a remote host
52
+
53
+ logout Remove locally-stored credentials for a remote host
54
+
55
+ output Read an output from a state file
56
+
57
+ plan Generate and show an execution plan
58
+
59
+ providers Prints a tree of the providers used in the configuration
60
+
61
+ refresh Update local state file against real resources
62
+
63
+ show Inspect Terraform state or plan
64
+
65
+ taint Manually mark a resource for recreation
66
+
67
+ untaint Manually unmark a resource as tainted
68
+
69
+ validate Validates the Terraform files
70
+
31
- + FullyQualifiedErrorId : CommandNotFoundException
71
+ version Prints the Terraform version
72
+
73
+ workspace Workspace management
74
+
75
+
76
+
77
+ All other commands:
78
+
79
+ 0.12upgrade Rewrites pre-0.12 module source code for v0.12
80
+
81
+ 0.13upgrade Rewrites pre-0.13 module source code for v0.13
82
+
83
+ debug Debug output management (experimental)
84
+
85
+ force-unlock Manually unlock the terraform state
86
+
87
+ push Obsolete command for Terraform Enterprise legacy (v1)
88
+
89
+ state Advanced state management
32
90
 
33
91
  ```
92
+
93
+
34
94
 
35
95
 
36
96
 
@@ -60,7 +120,49 @@
60
120
 
61
121
  ```
62
122
 
123
+ ⑤下記エラーが表示される。
124
+
125
+ ```
126
+
127
+ PS C:\terraform> terraform
128
+
129
+ terraform : 用語 'terraform' は、コマンドレット、関数、スクリプト ファイル、または操作可能なプログラムの名前として認識されません。名前が正しく記述され
130
+
131
+ ていることを確認し、パスが含まれている場合はそのパスが正しいことを確認してから、再試行してください。
132
+
133
+ 発生場所 行:1 文字:1
134
+
135
+ + terraform
136
+
137
+ + ~~~~~~~~~
138
+
139
+ + CategoryInfo : ObjectNotFound: (terraform:String) [], CommandNotFoundException
140
+
141
+ + FullyQualifiedErrorId : CommandNotFoundException
142
+
143
+ Suggestion [3,General]: コマンド terraform は見つかりませんでしたが、現在の場所に存在します。Windows PowerShell は、既定では、現在の場所からコマンドを読
144
+
145
+ み込みません。このコマンドを信頼する場合は、".\terraform" と入力してください。詳細については、"get-help about_Command_Precedence" と入力してヘルプを参照
146
+
147
+ してください。
148
+
149
+ ```
150
+
151
+
152
+
153
+ ⑥下記コマンドを実行
154
+
155
+ ```
156
+
157
+ PS C:\terraform> .\terraform
158
+
159
+ ```
160
+
161
+
162
+
63
- エラーが表示される。
163
+ エラーが表示される。
164
+
165
+ ※現状を参照
64
166
 
65
167
 
66
168
 

1

修正

2020/11/09 10:14

投稿

narururu
narururu

スコア172

test CHANGED
File without changes
test CHANGED
@@ -14,7 +14,7 @@
14
14
 
15
15
  ```
16
16
 
17
- PS C:\> terraform
17
+ PS C:\terraform> terraform
18
18
 
19
19
  terraform : 用語 'terraform' は、コマンドレット、関数、スクリプト ファイル、または操作可能なプログラムの名前として認識されません。名前が正しく記述され
20
20
 
@@ -56,7 +56,7 @@
56
56
 
57
57
  ```
58
58
 
59
- PS C:\> terraform
59
+ PS C:\terraform> terraform
60
60
 
61
61
  ```
62
62