data"aws_iam_policy_document""assume_role_policy"{statement{actions=["sts:AssumeRole"]effect="Allow"principals{type="Service"identifiers=["bedrock.amazonaws.com"]}condition{test="StringEquals"variable="aws:SourceAccount"values=[data.aws_caller_iden...
The configuration defines adata sourcethat looks up information about the context Terraform is currently running in. This data source is used when defining the data access policy. More information can be found in the Terraform documentation foraws_caller_identity. # Gets access to the effective Acco...
Terraform AWS Provider version 5.32.1 or later, configured (Terraform documentation) Git, installed (GitHub) Permissions to create Amazon VPC, Wavelength, and Amazon EC2 resources Limitations Not all AWS Regions support Wavelength Zones. For more information, see Available Wavelength ...
We’re using AWS, we need to create a VPC. A VPC is a Virtual Private Cloud. The key thing is that it isisolated. Things you create in this network will be able to talk to each other if you let them, but cannot communicate with the outside world, unless you specifically crea...
The output has a + next to aws_instance.app_server, meaning that Terraform will create this resource. Beneath that, it shows the attributes that will be set. When the value displayed is (known after apply), it means that the value will not be known until the resource is created. For ...
resource"aws_cloudwatch_log_group""main"{name="my_va_loggroup_for_testing"retention_in_days=10tags=var.tags} 05-variables.tf I'd like to talk about Google OIDC variables before we get into Terraform variables for our resources. I couldn't find any documentation about the correct set...
module"cluster"{source="terraform-aws-modules/rds-aurora/aws"name="test-aurora-db-postgres96"engine="aurora-postgresql"engine_version="14.5"instance_class="db.r6g.large"instances={ one={}2= { instance_class="db.r6g.2xlarge"} }vpc_id="vpc-12345678"db_subnet_group_name="db-subnet-group...
module "asg" { source = "terraform-aws-modules/autoscaling/aws" # Autoscaling group name = "example-asg" min_size = 0 max_size = 1 desired_capacity = 1 wait_for_capacity_timeout = 0 health_check_type = "EC2" vpc_zone_identifier = ["subnet-1235678", "subnet-87654321"] initial_lif...
References to the IRSA sub-module in the IAM repository have been removed. Once https://github.com/clowdhaus/terraform-aws-eks-pod-identity has been updated and moved into the organization, the documentation here will be updated to mention the new module.相关...
New Resource: aws_redshift_snapshot_copy (#36810) ENHANCEMENTS: data-source/aws_sagemaker_prebuilt_ecr_image: Add registry_id for af-south-1 AWS Region (#36803) resource/aws_api_gateway_documentation_part: Add documentation_part_id attribute (#36445) resource/aws_wafregional_web_acl_associa...