Amazon EC2 managed instances - Amazon Elastic Compute Cloud

Amazon EC2 managed instances

An Amazon EC2 managed instance is an EC2 instance that is provisioned and managed by a designated service provider, such as Amazon EKS through EKS Auto Mode. Managed instances provide a simplified way for running compute workloads on Amazon EC2 by allowing you to delegate operational control of the instance to a service provider.

Delegated control is the only change introduced for managed instances. The technical specifications and billing remain the same as non-managed EC2 instances. Because managed instances allow you to delegate control to the service provider, you can benefit from the service provider’s operational expertise and best practices. When an instance is managed, the service provider is responsible for tasks such as provisioning the instance, configuring software, scaling capacity, and handling instance failures and replacements.

With a managed instance, you can’t directly modify the settings of a managed instance. The service and specific operations are determined by the agreement between you and the service provider. However, you can add, modify, or remove tags from your managed instances, allowing you to categorize them within your AWS environment.

Billing for managed instances

An Amazon EC2 managed instance incurs the same base charge as a non-managed Amazon EC2 instance, plus a separate fee for the service provider. This additional fee is charged by the service provider managing your instance and is billed separately. It covers the cost of services provided for operating and maintaining your managed instance.

All Amazon EC2 purchasing options are available for managed instances, including On-Demand Instances, Reserved Instances, Spot Instances, and Savings Plans. By sourcing your compute directly from EC2 and then providing it to your service provider, you benefit from any existing Reserved Instances or Savings Plans applied to your account, ensuring that you're using the most cost-effective compute capacity available.

For example, when using Amazon EKS Auto Mode, you pay the standard EC2 instance rate for the underlying instances, plus an additional charge from Amazon EKS for managing the instances on your behalf. If you then decide to sign up for a Savings Plan, the EC2 instance rate is reduced by the Savings Plan, while the additional charge from Amazon EKS remains unchanged.

Identify managed instances

Managed instances are identified by a true value in the Managed field. The service provider is identified in the Operator field (in the console) or Principal field (in the CLI).

Use the following procedures to identify managed instances.

Console
To identify a managed instance
  1. Open the Amazon EC2 console at https://console.aws.amazon.com/ec2/.

  2. In the navigation pane, choose Instances.

  3. Select the instance you want to check.

  4. On the Details tab (if you selected the checkbox) or in the summary area (if you selected the instance ID), find the Managed field.

    • A value of true indicates a managed instance.

    • A value of false indicates a non-managed instance.

  5. If Managed is set to true, the Operator field displays a value identifying the service provider responsible for managing the instance. For example, a value of eks.amazonaws.com identifies Amazon EKS as the service provider.

AWS CLI
To identify a managed instance

Use the describe-instances AWS CLI command and specify the instance ID.

aws ec2 describe-instances --instance-ids i-0123456789example

The following is example output. If Managed is true, the instance is a managed instance and the Principal is returned. The principal is the service provider that manages the instance. For example, a value of eks.amazonaws.com identifies Amazon EKS as the service provider.

{ "Reservations": [{ "ReservationId": "r-1234567890example", "OwnerId": "1111111111", "RequesterId": "222222222222", ... "Operator": { "Managed": true, "Principal": "eks.amazonaws.com" }, "InstanceId": "i-1234567890example", ... }] }] }
To filter to managed instances

Use the describe-instances AWS CLI command and specify the operator.managed filter with a value of true.

aws ec2 describe-instances --filters "Name=operator.managed,Values=true"

Get started with managed instances

For guidance on using managed instances, see Automate cluster infrastructure with EKS Auto Mode in the Amazon EKS User Guide.