Skip terraform resource if it exists

0 votes

I'm Getting an error creating a secret because it was created manually.

Error: error creating Secrets Manager Secret: ResourceExistsException: The operation failed because the secret <SECRET> already exists.

Is there any way to tell Terraform to skip creating a resource if it already exists?

Mar 16, 2023 in DevOps & Agile by Edureka
• 12,690 points
1,062 views

No answer to this question. Be the first to respond.

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
0 votes

Yes, Terraform provides a way to skip creating a resource if it already exists. This is achieved using the terraform import command, which allows you to import an existing resource into your Terraform state.

Once a resource has been imported into Terraform state, subsequent terraform apply commands will skip creating that resource if it already exists. However, it's important to note that if there are any changes to the resource configuration in your Terraform code, Terraform will still attempt to apply those changes to the existing resource.

To import an existing resource, you can use the following syntax:

terraform import <resource_type>.<resource_name> <resource_id>

Where <resource_type> is the type of resource you want to import, <resource_name> is the name of the resource within Terraform, and <resource_id> is the unique identifier of the existing resource.

For example, to import an existing AWS S3 bucket named "my-bucket" with the ID "my-bucket-id" into your Terraform state, you can use the following command:

terraform import aws_s3_bucket.my_bucket my-bucket-id 

After importing the resource, you can include it in your Terraform code as you normally would, and Terraform will skip creating it if it already exists.

answered Mar 23, 2023 by Edureka
• 13,620 points

edited Mar 5

Related Questions In DevOps & Agile

+1 vote
2 answers

is it possible to assign a Feature/User Story/Task to a team [Group] in VSTS

In most cases, we would break Work ...READ MORE

answered Oct 11, 2018 in DevOps & Agile by lina
• 8,220 points
5,596 views
+1 vote
2 answers

Should I commit Terraform State files to the git repository?

Its better not to commit it to ...READ MORE

answered Aug 3, 2018 in DevOps & Agile by Nilesh
• 7,060 points
3,893 views
0 votes
1 answer

Is it possible to to create IIS Site and application Pool using Web Deploy

You can try and use the ServerManager ...READ MORE

answered Apr 20, 2018 in DevOps & Agile by ajs3033
• 7,300 points
2,184 views
0 votes
4 answers

Is it possible to integrate sonarqube with LDAP

Add the following lines in your config ...READ MORE

answered Apr 29, 2019 in DevOps & Agile by Wazir
5,552 views
0 votes
1 answer
0 votes
1 answer

is it possible to use swagger with vs2017

Yes, you can use swagger in a ...READ MORE

answered Apr 29, 2018 in DevOps & Agile by DareDev
• 6,890 points
975 views
+5 votes
7 answers

Docker swarm vs kubernetes

Swarm is easy handling while kn8 is ...READ MORE

answered Aug 27, 2018 in Docker by Mahesh Ajmeria
4,523 views
+15 votes
2 answers

Git management technique when there are multiple customers and need multiple customization?

Consider this - In 'extended' Git-Flow, (Git-Multi-Flow, ...READ MORE

answered Mar 27, 2018 in DevOps & Agile by DragonLord999
• 8,450 points
4,304 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP