From a2f881fb74896fb4c7aff0b66e2cf5458ec98613 Mon Sep 17 00:00:00 2001 From: Bruno Schaatsbergen Date: Mon, 3 Mar 2025 21:17:42 +0100 Subject: [PATCH] remove new line --- website/docs/language/resources/ephemeral/index.mdx | 1 - 1 file changed, 1 deletion(-) diff --git a/website/docs/language/resources/ephemeral/index.mdx b/website/docs/language/resources/ephemeral/index.mdx index 8444e55f2f..a95e25d8c4 100644 --- a/website/docs/language/resources/ephemeral/index.mdx +++ b/website/docs/language/resources/ephemeral/index.mdx @@ -73,7 +73,6 @@ resource "aws_db_instance" "example" { } ``` - If an input argument of an ephemeral resource references a value that is not yet known but will be during or after the plan, Terraform defers the resource’s execution to the apply stage instead of running it during the plan. This behavior allows Terraform to evaluate the ephemeral resource at the correct time and ensures that the resource is not executed prematurely. In the above example, the ephemeral resource `aws_secretsmanager_secret_version` references an input argument that is initially unknown. As a result, Terraform defers its execution to the apply stage, ensuring that the resource is evaluated at the correct time.