We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It does no appear login_as_non_root is currently implemented for alicloud_instance resource. It is however supported by the API by virtue of boolean flag LoginAsNonRoot https://github.com/aliyun/terraform-provider-alicloud/blob/master/vendor/github.com/aliyun/alibaba-cloud-sdk-go/services/ecs/run_instances.go#L177. This flag controls whether to create unprivileged ecs-user during instance creation for instances that use images that support it, further documented in - https://www.alibabacloud.com/help/en/ecs/user-guide/manage-the-username-used-to-log-on-to-an-ecs-instance#62206fc07eull and https://www.alibabacloud.com/help/en/ecs/developer-reference/api-ecs-2014-05-26-runinstances
LoginAsNonRoot
It is also currently implemented for https://registry.terraform.io/providers/aliyun/alicloud/latest/docs/resources/cs_kubernetes_node_pool#login_as_non_root which essentially calls the same RunInstances API with LoginAsNonRoot boolean.
Please implement it for alicloud_instance resource as it is very useful security feature.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It does no appear login_as_non_root is currently implemented for alicloud_instance resource. It is however supported by the API by virtue of boolean flag
LoginAsNonRoot
https://github.com/aliyun/terraform-provider-alicloud/blob/master/vendor/github.com/aliyun/alibaba-cloud-sdk-go/services/ecs/run_instances.go#L177. This flag controls whether to create unprivileged ecs-user during instance creation for instances that use images that support it, further documented in - https://www.alibabacloud.com/help/en/ecs/user-guide/manage-the-username-used-to-log-on-to-an-ecs-instance#62206fc07eull and https://www.alibabacloud.com/help/en/ecs/developer-reference/api-ecs-2014-05-26-runinstancesIt is also currently implemented for https://registry.terraform.io/providers/aliyun/alicloud/latest/docs/resources/cs_kubernetes_node_pool#login_as_non_root which essentially calls the same RunInstances API with
LoginAsNonRoot
boolean.Please implement it for alicloud_instance resource as it is very useful security feature.
The text was updated successfully, but these errors were encountered: