generated from hashicorp/packer-plugin-scaffolding
-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow specifying values for "EnhancedService" #134
Labels
Comments
Okay so this is why
|
Jalle19
added a commit
to Jalle19/packer-plugin-tencentcloud
that referenced
this issue
Oct 25, 2024
Fixes hashicorp#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
Fixes hashicorp#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).
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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: