Terraform AWS data sources
Jump to navigation
Jump to search
↑ https://www.hashicorp.com/blog/terraform-aws-provider-4-0-refactors-s3-bucket-resource
There is more that 300 AWS data sources [1].
AWS data sources[edit]
aws_caller_identity:data "aws_caller_identity" "current" {}aws_availability_zonesaws_amiaws_iam_policy_documentaws_vpcaws_subnetaws_subnetsaws_subnet_idsaws_region:data "aws_region" "current" {}aws_s3_bucketaws_ebs_snapshotaws_ecs_clusteraws_security_groupaws_acm_certificate
Examples[edit]
https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/ami
data "aws_ami" "myexample" { most_recent = true owners = ["self"] tags = { Name = "app-server" Tested = "true" } }
https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/vpc
data "aws_vpc" "selected" { id = var.my_vpc_id }
data "template_file" "my-secret" { template = aws_iam_access_key.my_new_user.encrypted_secret }
Related terms[edit]
See also[edit]
- AWS Data sources:
aws_region,aws_vpc,aws_caller_identity,aws_availability_zones,aws_eip,aws_flow_log,template_file, aws_ami - Data block:
data., toset, each.
Advertising: