You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Whether to enable the TAT service. If this parameter is not specified, the TAT service is enabled for public images and disabled for other images by default.
Okay so this is why tat_agent got installed even though documentation for RunAutomationServiceEnabled says this:
Whether to enable the TAT service. Valid values:
TRUE: yes;
FALSE: no
Default: FALSE.
Jalle19
added a commit
to Jalle19/packer-plugin-tencentcloud
that referenced
this issue
Oct 25, 2024
Fixeshashicorp#134
Adds support for customizing the "EnhancedService" block when launching instances.
```
source "tencentcloud-cvm" "source" {
# ...
enhanced_service {
automation_service = true
monitor_service= true
security_service = false
}
}
```
If the block is omitted, behavior remains unchanged (default values are used internally when the instance is launched).
Jalle19
added a commit
to Jalle19/packer-plugin-tencentcloud
that referenced
this issue
Oct 25, 2024
Fixeshashicorp#134
Adds support for customizing the "EnhancedService" block when launching instances.
```
source "tencentcloud-cvm" "source" {
# ...
enhanced_service {
automation_service = true
monitor_service= true
security_service = false
}
}
```
If the block is omitted, behavior remains unchanged (default values are used internally when the instance is launched).
Description
Currently, the
EnhancedService
(https://www.tencentcloud.com/document/api/213/15753#enhancedservice) block is omitted completely, leading to all three services being installed (security, monitoring, automation). The documentation says thatAutomationService
defaults to false (https://www.tencentcloud.com/document/api/213/15753#runautomationserviceenabled), but this doesn't seem to be the case in practice, judging by the contents ofcvm_init.sh
:Use Case(s)
We want to omit automatic installation of
ydeyes
. This can be done using a checkbox when launching instances manually from the console.Potential configuration
Optional booleans for each of the services
The text was updated successfully, but these errors were encountered: