You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
-2
Original file line number
Diff line number
Diff line change
@@ -199,10 +199,8 @@ No modules.
199
199
| <aname="input_associate_public_ip_address"></a> [associate\_public\_ip\_address](#input\_associate\_public\_ip\_address)| Whether to associate a public IP address with an instance in a VPC |`bool`|`null`| no |
200
200
| <aname="input_availability_zone"></a> [availability\_zone](#input\_availability\_zone)| AZ to start the instance in |`string`|`null`| no |
201
201
| <aname="input_capacity_reservation_specification"></a> [capacity\_reservation\_specification](#input\_capacity\_reservation\_specification)| Describes an instance's Capacity Reservation targeting option |`any`|`{}`| no |
202
-
| <aname="input_cpu_core_count"></a> [cpu\_core\_count](#input\_cpu\_core\_count)| Sets the number of CPU cores for an instance |`number`|`null`| no |
203
202
| <aname="input_cpu_credits"></a> [cpu\_credits](#input\_cpu\_credits)| The credit option for CPU usage (unlimited or standard) |`string`|`null`| no |
204
203
| <aname="input_cpu_options"></a> [cpu\_options](#input\_cpu\_options)| Defines CPU options to apply to the instance at launch time. |`any`|`{}`| no |
205
-
| <aname="input_cpu_threads_per_core"></a> [cpu\_threads\_per\_core](#input\_cpu\_threads\_per\_core)| Sets the number of CPU threads per core for an instance (has no effect unless cpu\_core\_count is also set) |`number`|`null`| no |
206
204
| <aname="input_create"></a> [create](#input\_create)| Whether to create an instance |`bool`|`true`| no |
207
205
| <aname="input_create_eip"></a> [create\_eip](#input\_create\_eip)| Determines whether a public EIP will be created and associated with the instance. |`bool`|`false`| no |
208
206
| <aname="input_create_iam_instance_profile"></a> [create\_iam\_instance\_profile](#input\_create\_iam\_instance\_profile)| Determines whether an IAM instance profile is created or to use an existing IAM instance profile |`bool`|`false`| no |
Copy file name to clipboardExpand all lines: variables.tf
-12
Original file line number
Diff line number
Diff line change
@@ -278,18 +278,6 @@ variable "cpu_options" {
278
278
default={}
279
279
}
280
280
281
-
variable"cpu_core_count" {
282
-
description="Sets the number of CPU cores for an instance"# This option is only supported on creation of instance type that support CPU Options https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-optimize-cpu.html#cpu-options-supported-instances-values
283
-
type=number
284
-
default=null
285
-
}
286
-
287
-
variable"cpu_threads_per_core" {
288
-
description="Sets the number of CPU threads per core for an instance (has no effect unless cpu_core_count is also set)"
289
-
type=number
290
-
default=null
291
-
}
292
-
293
281
# Spot instance request
294
282
variable"create_spot_instance" {
295
283
description="Depicts if the instance is a spot instance"
0 commit comments