AWS Amazon EC2 Copy
This page shows how to write Terraform for Amazon EC2 Copy and write them securely.
aws_ami_copy (Terraform)
The Copy in Amazon EC2 can be configured in Terraform with the resource name aws_ami_copy. The following sections describe 5 examples of how to use the resource and its parameters.
Example Usage from GitHub
resource "aws_ami_copy" "encrypted_set_to_true" {
name = "foo"
source_ami_id = "ami-xxxxxxxx"
source_ami_region = "us-east-1"
encrypted = true
}
resource "aws_ami_copy" "encrypted_set_to_true" {
name = "foo"
source_ami_id = var.test_ami
source_ami_region = var.test_region
encrypted = true
}
resource "aws_ami_copy" "encrypted_set_to_true" {
name = "foo"
source_ami_id = "ami-xxxxxxxx"
source_ami_region = "us-east-1"
encrypted = true
}
resource "aws_ami_copy" "encrypted_set_to_true" {
name = "foo"
source_ami_id = var.test_ami
source_ami_region = var.test_region
encrypted = true
}
resource "aws_ami_copy" "web_ami_copy" {
name = "web-ami-copy"
source_ami_id = var.server_ami
source_ami_region = var.region
tags = {
Parameters
-
architectureoptional computed - string -
arnoptional computed - string -
descriptionoptional - string -
ena_supportoptional computed - bool -
encryptedoptional - bool -
hypervisoroptional computed - string -
idoptional computed - string -
image_locationoptional computed - string -
image_owner_aliasoptional computed - string -
image_typeoptional computed - string -
kernel_idoptional computed - string -
kms_key_idoptional computed - string -
manage_ebs_snapshotsoptional computed - bool -
namerequired - string -
owner_idoptional computed - string -
platformoptional computed - string -
platform_detailsoptional computed - string -
publicoptional computed - bool -
ramdisk_idoptional computed - string -
root_device_nameoptional computed - string -
root_snapshot_idoptional computed - string -
source_ami_idrequired - string -
source_ami_regionrequired - string -
sriov_net_supportoptional computed - string -
tagsoptional - map from string to string -
usage_operationoptional computed - string -
virtualization_typeoptional computed - string -
ebs_block_deviceset block-
delete_on_terminationoptional computed - bool -
device_nameoptional computed - string -
encryptedoptional computed - bool -
iopsoptional computed - number -
snapshot_idoptional computed - string -
throughputoptional computed - number -
volume_sizeoptional computed - number -
volume_typeoptional computed - string
-
-
ephemeral_block_deviceset block-
device_nameoptional computed - string -
virtual_nameoptional computed - string
-
-
timeoutssingle block
Explanation in Terraform Registry
The "AMI copy" resource allows duplication of an Amazon Machine Image (AMI), including cross-region copies. If the source AMI has associated EBS snapshots, those will also be duplicated along with the AMI. This is useful for taking a single AMI provisioned in one region and making it available in another for a multi-region deployment. Copying an AMI can take several minutes. The creation of this resource will block until the new AMI is available for use on new instances.
Tips: Best Practices for The Other AWS Amazon EC2 Resources
In addition to the aws_default_vpc, AWS Amazon EC2 has the other resources that should be configured for security reasons. Please check some examples of those resources and precautions.
aws_default_vpc
Ensure to avoid using default VPC
It is better to define the own VPC and use it.
aws_network_acl_rule
Ensure your network ACL rule blocks unwanted inbound traffic
It is better to block unwanted inbound traffic.
aws_ebs_volume
Ensure to use a customer-managed key for EBS volume encryption
It is better to use a customer-managed key for EBS volume encryption. It can be gain more control over the encryption by using customer-managed keys (CMK).
aws_instance
Ensure to avoid storing AWS access keys in user data
It is better to avoid storing AWS access keys in user data. `aws_iam_instance_profile` could be used instead.
aws_security_group
Ensure your security group blocks unwanted inbound traffic
It is better to block unwanted inbound traffic.
CloudFormation Example
CloudFormation code does not have the related resource.
Frequently asked questions
What is AWS Amazon EC2 Copy?
AWS Amazon EC2 Copy is a resource for Amazon EC2 of Amazon Web Service. Settings can be wrote in Terraform.
Where can I find the example code for the AWS Amazon EC2 Copy?
For Terraform, the ffsclyh/config-lint, ffsclyh/config-lint and stelligent/config-lint source code examples are useful. See the Terraform Example section for further details.