
How to retrieve a secret in terraform from aws secret manager
Jun 11, 2020 · Please note that Terraform 0.14 added the ability to redact Sensitive values in console output. Therefore, if you are using Terraform > 0.14, you will have to use nonsensitive …
terraform - How do I assign unique "Name" tag to the EC2 …
Jul 23, 2019 · I am using Terraform 0.12. I am trying to build EC2 in bulk for a project and instead of sequentially naming the ec2's I will to name the instances by providing unique names. I …
How to attach multiple IAM policies to IAM roles using Terraform?
Aug 3, 2017 · I could not find a way to do so in the Terraform documentation. As per documentation we can use aws_iam_role_policy_attachment to attach a policy to a role, but …
How to use Terraform to grant AWS Lake Formation tag expressions
Dec 18, 2024 · I have been tasked with codifying the deployment of AWS Lake Formation using Terraform. The last step I am struggling with is granting a tag expression to a list of roles.
amazon web services - AWS Terraform: Filter specific subnets by ...
I have 6 subnets, I want to filter 3 subnets from them matching substring internal and use in rds. Tag name has internal word and want to filter based on that. Could anyone please help me? …
Terraform Lifecycle Ignore changes - Stack Overflow
Sep 26, 2022 · terraform will ignore all changes to your resources hence it could potentially ignore the change that you want. I'd normally use this when I work on subset of resources in my …
Error: Invalid provider configuration / invalid AWS Region
Jan 16, 2024 · Hi, What's your Terraform version? I think you should add this block: provider "aws" { region = "<REGION_NAME>" } Then try to execute "terraform validate" commands, …
from_port and to_port values for icmp protocol ingress rule aws ...
Jan 11, 2021 · ICMP type is 8, and echo is code 0; terraform provider wants icmp type mapped to from_port and code mapped to to_port.
Error: configuring Terraform AWS Provider: failed to get shared …
Mar 15, 2023 · Not directly related to your issue, but I had a similar issue when using "terraform cloud" as the backend. No matter how much I tried with this config as provider, I could not get …
How to create a Stack in AWS via Terraform?
Jul 5, 2020 · This is moot, because the terraform file is already equivalent to cloudformation definition, sans app:cloudformation:* ids, which I suspect is the question all about: how do you …