AwsLaunchTemplateMetadataOptionsArgs

interface AwsLaunchTemplateMetadataOptionsArgs { httpPutResponseHopLimit?: Input<1 | 2>; instanceMetadataTags?: Input<'enabled' | 'disabled'>; }

Safe subset of EC2 instance metadata options.

Example

CODE
const metadata: AwsLaunchTemplateMetadataOptionsArgs = { httpPutResponseHopLimit: 2 };

Properties

httpPutResponseHopLimit: Input<1 | 2>

IMDSv2 response hop limit. Only 1 or 2 are permitted.

Default: `1`.

instanceMetadataTags: Input<'enabled' | 'disabled'>

Whether instance tags are available through IMDS.

Default: ```ts AWS leaves instance tags unavailable through IMDS. ```