terraform apply fails while creating a resource that exists alreadyMigrating existing infrastructure & scaling with Terraformterraform import using name tag for the resourceTerraform: will dependent resource get created if parent partially completes with error?Use IAM role instead of credentials to create aws resource from an EC2 instance using terraformupdate existing infrastructure on heroku using terraformHow do I create an SSH key in terraform?Terraform forget resource and recreate?Terraform apply after Terraform import wants to force new resource for storage gateway cacheHow to refer to alternate resources in Terraform?Terraform resource recreation dynamic AWS RDS instance counts
Applications of mathematics in clinical setting
What do you call the battery slot's ends?
What's the word for a student who doesn't register but goes to a class anyway?
removing rows containing NA in every column
Does rpcpassword need to be non-obvious in bitcoind?
Why can't we use uninitialized local variable to access static content of its type?
All numbers in a 5x5 Minesweeper grid
Account creation and log-in system
Madrid to London w/ Expired 90/180 days stay as US citizen
Plot irregular circle in latex
Can a business put a specific cancel-by date into a contract?
How often is duct tape used during crewed space missions?
What to do as a player when ranger animal companion dies
Abilities interrupting effects on a cast card
How could artificial intelligence harm us?
How to convey to the people around me that I want to disengage myself from constant giving?
Should the pagination be reset when changing the order?
How do rulers get rich from war?
Is a global DNS record a security risk for phpMyAdmin?
What are the end bytes of *.docx file format
Which block cipher parameters should be kept secret?
If people's daily habits are reliable then why is the stock market so unpredictable?
Exam design: give maximum score per question or not?
Can a Druid Wild Shaped as a horse use Horseshoes of Speed?
terraform apply fails while creating a resource that exists already
Migrating existing infrastructure & scaling with Terraformterraform import using name tag for the resourceTerraform: will dependent resource get created if parent partially completes with error?Use IAM role instead of credentials to create aws resource from an EC2 instance using terraformupdate existing infrastructure on heroku using terraformHow do I create an SSH key in terraform?Terraform forget resource and recreate?Terraform apply after Terraform import wants to force new resource for storage gateway cacheHow to refer to alternate resources in Terraform?Terraform resource recreation dynamic AWS RDS instance counts
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am working on terraform with openstack as the cloud provider. I have a deploy.tf script that creates a role:
resource "openstack_identity_role_v3" "role_example"
name = "creator"
My finding on how terraform creates resources:
- If the role does not exist in openstack, terraform creates one with
no problem. - If the role exists in openstack and is created with the
same terraform script, ie. terraform.state has an entry of it,
terraform returns with no errors.
my issue is: if I remove the state file or if the role is created out of bands either manually or by some other terraform script.I get the following error:
* openstack_identity_role_v3.role_example: Error creating OpenStack role: Expected HTTP response code [201] when accessing [POST https://<example-openstack-url>/v3/roles], but got 409 instead
"error": "message": "Conflict occurred attempting to store role - Duplicate Entry", "code": 409, "title": "Conflict"
I am trying to find a workaround so that if the role doesn't exist, terraform apply
creates it, and if it already exists, despite having created manually or by any other terraform deployment script, terraform skips its creation and throw no error.
terraform openstack openstack-keystone terraform-provider-openstack
|
show 3 more comments
I am working on terraform with openstack as the cloud provider. I have a deploy.tf script that creates a role:
resource "openstack_identity_role_v3" "role_example"
name = "creator"
My finding on how terraform creates resources:
- If the role does not exist in openstack, terraform creates one with
no problem. - If the role exists in openstack and is created with the
same terraform script, ie. terraform.state has an entry of it,
terraform returns with no errors.
my issue is: if I remove the state file or if the role is created out of bands either manually or by some other terraform script.I get the following error:
* openstack_identity_role_v3.role_example: Error creating OpenStack role: Expected HTTP response code [201] when accessing [POST https://<example-openstack-url>/v3/roles], but got 409 instead
"error": "message": "Conflict occurred attempting to store role - Duplicate Entry", "code": 409, "title": "Conflict"
I am trying to find a workaround so that if the role doesn't exist, terraform apply
creates it, and if it already exists, despite having created manually or by any other terraform deployment script, terraform skips its creation and throw no error.
terraform openstack openstack-keystone terraform-provider-openstack
1
Run terraform import
– victor m
Mar 28 at 14:59
Import certainly helps with manual creation, but managing it in another TF module or removing the state file are both circumstances that should not occurr.
– Matt Schuchard
Mar 28 at 15:34
thanks for the suggestion. What I can see is that "terraform import" requires two arguments; "address" and "ID". I wish to achive the same without providing ID. because, if the role doesn't exist, I cannot know the value for Id.
– Vedant Aggrawal
Mar 28 at 15:37
The ID is the resource in your config.
– Matt Schuchard
Mar 28 at 15:40
"terraform import openstack_identity_role_v3.role_example <ID>" is the correct syntax. Please help me substitute the value for ID. This works if I provide a hardcoded hash ID, but I want to provide it programmatically. thanks
– Vedant Aggrawal
Mar 28 at 15:52
|
show 3 more comments
I am working on terraform with openstack as the cloud provider. I have a deploy.tf script that creates a role:
resource "openstack_identity_role_v3" "role_example"
name = "creator"
My finding on how terraform creates resources:
- If the role does not exist in openstack, terraform creates one with
no problem. - If the role exists in openstack and is created with the
same terraform script, ie. terraform.state has an entry of it,
terraform returns with no errors.
my issue is: if I remove the state file or if the role is created out of bands either manually or by some other terraform script.I get the following error:
* openstack_identity_role_v3.role_example: Error creating OpenStack role: Expected HTTP response code [201] when accessing [POST https://<example-openstack-url>/v3/roles], but got 409 instead
"error": "message": "Conflict occurred attempting to store role - Duplicate Entry", "code": 409, "title": "Conflict"
I am trying to find a workaround so that if the role doesn't exist, terraform apply
creates it, and if it already exists, despite having created manually or by any other terraform deployment script, terraform skips its creation and throw no error.
terraform openstack openstack-keystone terraform-provider-openstack
I am working on terraform with openstack as the cloud provider. I have a deploy.tf script that creates a role:
resource "openstack_identity_role_v3" "role_example"
name = "creator"
My finding on how terraform creates resources:
- If the role does not exist in openstack, terraform creates one with
no problem. - If the role exists in openstack and is created with the
same terraform script, ie. terraform.state has an entry of it,
terraform returns with no errors.
my issue is: if I remove the state file or if the role is created out of bands either manually or by some other terraform script.I get the following error:
* openstack_identity_role_v3.role_example: Error creating OpenStack role: Expected HTTP response code [201] when accessing [POST https://<example-openstack-url>/v3/roles], but got 409 instead
"error": "message": "Conflict occurred attempting to store role - Duplicate Entry", "code": 409, "title": "Conflict"
I am trying to find a workaround so that if the role doesn't exist, terraform apply
creates it, and if it already exists, despite having created manually or by any other terraform deployment script, terraform skips its creation and throw no error.
terraform openstack openstack-keystone terraform-provider-openstack
terraform openstack openstack-keystone terraform-provider-openstack
asked Mar 28 at 13:54
Vedant AggrawalVedant Aggrawal
1452 silver badges14 bronze badges
1452 silver badges14 bronze badges
1
Run terraform import
– victor m
Mar 28 at 14:59
Import certainly helps with manual creation, but managing it in another TF module or removing the state file are both circumstances that should not occurr.
– Matt Schuchard
Mar 28 at 15:34
thanks for the suggestion. What I can see is that "terraform import" requires two arguments; "address" and "ID". I wish to achive the same without providing ID. because, if the role doesn't exist, I cannot know the value for Id.
– Vedant Aggrawal
Mar 28 at 15:37
The ID is the resource in your config.
– Matt Schuchard
Mar 28 at 15:40
"terraform import openstack_identity_role_v3.role_example <ID>" is the correct syntax. Please help me substitute the value for ID. This works if I provide a hardcoded hash ID, but I want to provide it programmatically. thanks
– Vedant Aggrawal
Mar 28 at 15:52
|
show 3 more comments
1
Run terraform import
– victor m
Mar 28 at 14:59
Import certainly helps with manual creation, but managing it in another TF module or removing the state file are both circumstances that should not occurr.
– Matt Schuchard
Mar 28 at 15:34
thanks for the suggestion. What I can see is that "terraform import" requires two arguments; "address" and "ID". I wish to achive the same without providing ID. because, if the role doesn't exist, I cannot know the value for Id.
– Vedant Aggrawal
Mar 28 at 15:37
The ID is the resource in your config.
– Matt Schuchard
Mar 28 at 15:40
"terraform import openstack_identity_role_v3.role_example <ID>" is the correct syntax. Please help me substitute the value for ID. This works if I provide a hardcoded hash ID, but I want to provide it programmatically. thanks
– Vedant Aggrawal
Mar 28 at 15:52
1
1
Run terraform import
– victor m
Mar 28 at 14:59
Run terraform import
– victor m
Mar 28 at 14:59
Import certainly helps with manual creation, but managing it in another TF module or removing the state file are both circumstances that should not occurr.
– Matt Schuchard
Mar 28 at 15:34
Import certainly helps with manual creation, but managing it in another TF module or removing the state file are both circumstances that should not occurr.
– Matt Schuchard
Mar 28 at 15:34
thanks for the suggestion. What I can see is that "terraform import" requires two arguments; "address" and "ID". I wish to achive the same without providing ID. because, if the role doesn't exist, I cannot know the value for Id.
– Vedant Aggrawal
Mar 28 at 15:37
thanks for the suggestion. What I can see is that "terraform import" requires two arguments; "address" and "ID". I wish to achive the same without providing ID. because, if the role doesn't exist, I cannot know the value for Id.
– Vedant Aggrawal
Mar 28 at 15:37
The ID is the resource in your config.
– Matt Schuchard
Mar 28 at 15:40
The ID is the resource in your config.
– Matt Schuchard
Mar 28 at 15:40
"terraform import openstack_identity_role_v3.role_example <ID>" is the correct syntax. Please help me substitute the value for ID. This works if I provide a hardcoded hash ID, but I want to provide it programmatically. thanks
– Vedant Aggrawal
Mar 28 at 15:52
"terraform import openstack_identity_role_v3.role_example <ID>" is the correct syntax. Please help me substitute the value for ID. This works if I provide a hardcoded hash ID, but I want to provide it programmatically. thanks
– Vedant Aggrawal
Mar 28 at 15:52
|
show 3 more comments
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55399350%2fterraform-apply-fails-while-creating-a-resource-that-exists-already%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55399350%2fterraform-apply-fails-while-creating-a-resource-that-exists-already%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
Run terraform import
– victor m
Mar 28 at 14:59
Import certainly helps with manual creation, but managing it in another TF module or removing the state file are both circumstances that should not occurr.
– Matt Schuchard
Mar 28 at 15:34
thanks for the suggestion. What I can see is that "terraform import" requires two arguments; "address" and "ID". I wish to achive the same without providing ID. because, if the role doesn't exist, I cannot know the value for Id.
– Vedant Aggrawal
Mar 28 at 15:37
The ID is the resource in your config.
– Matt Schuchard
Mar 28 at 15:40
"terraform import openstack_identity_role_v3.role_example <ID>" is the correct syntax. Please help me substitute the value for ID. This works if I provide a hardcoded hash ID, but I want to provide it programmatically. thanks
– Vedant Aggrawal
Mar 28 at 15:52