@@ -219,7 +219,7 @@ func generateOutput(kind, template string, data map[string]interface{}, useRawOu
219
219
return b .String (), nil
220
220
}
221
221
222
- // Execute binds the execution result of terraform command into tepmlate
222
+ // Execute binds the execution result of terraform command into template
223
223
func (t * DefaultTemplate ) Execute () (string , error ) {
224
224
data := map [string ]interface {}{
225
225
"Title" : t .Title ,
@@ -237,7 +237,7 @@ func (t *DefaultTemplate) Execute() (string, error) {
237
237
return resp , nil
238
238
}
239
239
240
- // Execute binds the execution result of terraform fmt into tepmlate
240
+ // Execute binds the execution result of terraform fmt into template
241
241
func (t * FmtTemplate ) Execute () (string , error ) {
242
242
data := map [string ]interface {}{
243
243
"Title" : t .Title ,
@@ -255,7 +255,7 @@ func (t *FmtTemplate) Execute() (string, error) {
255
255
return resp , nil
256
256
}
257
257
258
- // Execute binds the execution result of terraform plan into tepmlate
258
+ // Execute binds the execution result of terraform plan into template
259
259
func (t * PlanTemplate ) Execute () (string , error ) {
260
260
data := map [string ]interface {}{
261
261
"Title" : t .Title ,
@@ -291,7 +291,7 @@ func (t *DestroyWarningTemplate) Execute() (string, error) {
291
291
return resp , nil
292
292
}
293
293
294
- // Execute binds the execution result of terraform apply into tepmlate
294
+ // Execute binds the execution result of terraform apply into template
295
295
func (t * ApplyTemplate ) Execute () (string , error ) {
296
296
data := map [string ]interface {}{
297
297
"Title" : t .Title ,
0 commit comments