From 6a6ed2f1dddf6932b329e813c53acc09b609b152 Mon Sep 17 00:00:00 2001 From: Adrian Stobbe Date: Tue, 22 Oct 2024 11:31:24 +0200 Subject: [PATCH] add snp and tdx distinction for tf docs --- docs/docs/workflows/terraform-provider.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/docs/docs/workflows/terraform-provider.md b/docs/docs/workflows/terraform-provider.md index ed8f46eda..3bbe9af4f 100644 --- a/docs/docs/workflows/terraform-provider.md +++ b/docs/docs/workflows/terraform-provider.md @@ -34,7 +34,10 @@ This example shows how to set up a Constellation cluster with the reference IAM Optionally, you can prefix the `terraform apply` command with `TF_LOG=INFO` to collect [Terraform logs](https://developer.hashicorp.com/terraform/internals/debugging) while applying the configuration. This may provide helpful output in debugging scenarios. - When creating a cluster on Azure, you need to manually patch the policy of the MAA provider before creating the Constellation cluster, as this feature isn't available in Azure's Terraform provider yet. The Constellation CLI provides a utility for patching, but you + + + + When creating a cluster on Azure SEV-SNP, you need to manually patch the policy of the MAA provider before creating the Constellation cluster, as this feature isn't available in Azure's Terraform provider yet. The Constellation CLI provides a utility for patching, but you can also do it manually. ```bash @@ -68,6 +71,19 @@ This example shows how to set up a Constellation cluster with the reference IAM ``` + + Initialize the providers and apply the configuration. + + ```bash + terraform init + terraform apply + ``` + + Optionally, you can prefix the `terraform apply` command with `TF_LOG=INFO` to collect [Terraform logs](https://developer.hashicorp.com/terraform/internals/debugging) while applying the configuration. This may provide helpful output in debugging scenarios. + + + + Initialize the providers and apply the configuration.