VPC Instance Tenancy:
[+] The instance tenancy setting of a VPC can be either "default" or "dedicated".
[+] Instances launched in a VPC with the tenancy set to "dedicated" will use dedicated instances by default unless otherwise specified in the launch configuration.
[+] Instances launched in a VPC with the tenancy set to "default" will use shared (default) instances unless otherwise specified in the launch configuration.
Launch Configuration Instance Tenancy:
[+] A launch configuration can override the VPC tenancy setting. If the launch configuration specifies "dedicated", the instances will be dedicated regardless of the VPC setting.
[+] If the launch configuration specifies "default", the instances will adhere to the VPC's tenancy setting.
Given Scenarios:
1. Launch Configuration LC1:
[+] Instance Placement Tenancy: "dedicated"
[+] VPC (V1) Tenancy: "default"
Outcome: Instances launched by LC1 will have dedicated instance tenancy because the launch configuration explicitly overrides the VPC's default tenancy.
2. Launch Configuration LC2:
[+] Instance Placement Tenancy: "default"
[+] VPC (V2) Tenancy: "dedicated"
Outcome: Instances launched by LC2 will have dedicated instance tenancy because the VPC's tenancy setting of "dedicated" takes precedence when the launch configuration is set to "default".
Correct Answer:
C. The instances launched by both Launch Configuration LC1 and Launch Configuration LC2 will have dedicated instance tenancy
Summary:
LC1: Specifies "dedicated" tenancy, which overrides VPC (V1)'s "default" tenancy → Dedicated instances.
LC2: Specifies "default" tenancy, but VPC (V2) has "dedicated" tenancy → Dedicated instances.
Thus, the instances launched by both LC1 and LC2 will have dedicated instance tenancy.