Skip to main content

Migrate AWS Observability from v2.x to v3.0.0 using Terraform

This guide walks you through migrating an existing AWS Observability Terraform deployment from v2.x (v2.12, v2.13, v2.14, or v2.15) to v3.0.0.

The migration approach is:

  1. Destroy all existing v2.x Terraform deployments.
  2. Deploy v3.0.0 fresh using the same aws_account_alias value per account.

Using the same aws_account_alias ensures Sumo Logic collectors retain the same naming convention and the Explorer hierarchy remains consistent.

danger

Ensure that the account aliases used in your v2.x.x deployment are carried over during migration. The same aliases will be reused in v3.0.0.

note

During the migration window (between destroy and apply), log collection will be paused. Plan for a brief gap in data ingestion. For a standard single-account deployment this is typically 5–20 minutes; multi-account/multi-region deployments may take longer depending on the number of resources.

note

Starting with v3.0.0, the AWS Observability Terraform module has moved to a new repository:

  • Old (v2.x): github.com/SumoLogic/sumologic-solution-templates (path: aws-observability-terraform/)
  • New (v3.0.0): github.com/SumoLogic/terraform-sumologic-aws-observability

Prerequisites

  • Terraform >= 1.5.7 installed. Run terraform version to verify.
  • AWS CLI configured with profiles for each AWS account. See Configure AWS account profiles.
  • Sumo Logic Access ID and Access Key with the Administrator role. For more information, see Access Keys.
  • Note down your current aws_account_alias value(s) from each v2.x deployment — you will reuse them in v3.0.0.

Single account and region

Step 1: Destroy the existing v2.x stack

Navigate to your v2.x deployment directory and destroy all resources:

cd <v2.x-terraform-directory>
terraform destroy

Review the destroy plan and confirm. This removes all AWS infrastructure (S3 buckets, IAM roles, Lambda functions, SNS topics) and Sumo Logic resources (collector, sources, apps, monitors, FERs, Fields) created by v2.x.

After the destroy completes, you can optionally remove the state file:

rm -f terraform.tfstate terraform.tfstate.backup

Step 2: Deploy v3.0.0

Choose one of the following installation methods:

Option A: Install as a Terraform module (from registry)

Create a new working directory and configure the following files:

main.tf

provider "aws" {
region = "us-east-1"
}

module "aws_observability" {
source = "SumoLogic/aws-observability/sumologic"
version = "3.0.0"
sumologic_environment = "<YOUR SUMO DEPLOYMENT>"
sumologic_access_id = "<YOUR SUMO ACCESS ID>"
sumologic_access_key = "<YOUR SUMO ACCESS KEY>"
sumologic_organization_id = "<YOUR SUMO ORG ID>"
aws_account_alias = "<YOUR AWS ACCOUNT ALIAS>"
}
note

Replace <YOUR AWS ACCOUNT ALIAS> with the same alias used in your v2.x deployment to maintain consistency in Sumo Logic Explorer View, metrics, and logs.

Deploy:

terraform init
terraform validate
terraform plan
terraform apply

Option B: Install from the repository

Clone the new repository:

git clone https://github.com/SumoLogic/terraform-sumologic-aws-observability
cd terraform-sumologic-aws-observability

Initialize the Terraform working directory. This installs the required providers (Sumo Logic, AWS, Time, Random, Null):

terraform init

Create main.auto.tfvars and configure the required parameters:

sumologic_environment = "<YOUR SUMO DEPLOYMENT>"
sumologic_access_id = "<YOUR SUMO ACCESS ID>"
sumologic_access_key = "<YOUR SUMO ACCESS KEY>"
sumologic_organization_id = "<YOUR SUMO ORG ID>"
aws_account_alias = "<YOUR AWS ACCOUNT ALIAS>"
note

Replace <YOUR AWS ACCOUNT ALIAS> with the same alias used in your v2.x deployment.

Configure the AWS region in providers.tf:

provider "aws" {
region = "us-east-1"
}

Deploy:

terraform validate
terraform plan
terraform apply

Step 3: Verify the deployment

Confirm no pending changes:

terraform plan
# Must show: No changes. Infrastructure is up-to-date.

Confirm sources are collecting in Sumo Logic:

  1. Go to Manage Data > Collection > Collection.
  2. Find your AWS Observability collector and confirm all sources show a recent Last Message Received timestamp. Sources may take a few minutes to start receiving data after deployment.

Confirm v3.0.0 apps are installed:

  1. Go to App Catalog > Installed Apps.
  2. Confirm all AWS Observability v3.0.0 catalog apps are present.

Confirm the Explorer hierarchy:

  1. Go to Explore > AWS Observability.
  2. Confirm your account alias and region appear with metrics flowing.

Multiple regions within a single account

Use this approach when your v2.x deployment covered multiple regions within the same AWS account.

note

Destroy all v2.x regional deployments before deploying v3.0.0. Deploying v3.0.0 while any v2.x instance still exists can cause FER and Metric Rule name conflicts.

Step 1: Back up your existing configuration

Before destroying, save copies of your v2.x providers.tf and main.tf. You will use these as a reference when configuring v3.0.0:

  • providers.tf.v2x.bak — reference for AWS provider aliases, profiles, and regions (these carry over directly to v3.0.0).
  • main.tf.v2x.bak — reference for the aws_account_alias value used per account (do not copy module blocks — sources, variable names, and structure are significantly different in v3.0.0).
cp providers.tf providers.tf.v2x.bak
cp main.tf main.tf.v2x.bak

Step 2: Destroy all v2.x regional deployments

For each region's v2.x working directory, run:

cd <v2.x-region-directory>
terraform destroy

Repeat for every region. Confirm each destroy before moving to the next.

note

If your v2.x deployment created S3 buckets with force_destroy_bucket = false (the default), those buckets will not be deleted by terraform destroy. Review and delete them manually after the migration, or reference them as existing buckets in your v3.0.0 configuration.

Step 3: Set up a new v3.0.0 working directory

Choose one of the following installation methods:

Option A: Install as a Terraform module (from registry)

Create a new working directory:

mkdir v3-observability && cd v3-observability

When calling registry submodules with an explicit providers block, Terraform requires a versions.tf in your working directory to resolve the correct provider sources. Create versions.tf:

versions.tf
terraform {
required_version = ">= 1.5.7"

required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 5.16.2, < 7.0.0"
}
sumologic = {
source = "SumoLogic/sumologic"
version = ">= 3.3.0, < 4.0.0"
}
time = {
source = "hashicorp/time"
version = ">= 0.11.1"
}
random = {
source = "hashicorp/random"
version = ">= 3.1.0"
}
}
}

Create variables.tf:

variables.tf
variable "sumologic_environment" {
type = string
description = "Sumo Logic deployment: au, ca, ch, de, eu, fed, jp, kr, us1, us2"
}

variable "sumologic_access_id" {
type = string
description = "Sumo Logic Access ID"
}

variable "sumologic_access_key" {
type = string
description = "Sumo Logic Access Key"
sensitive = true
}

variable "sumologic_organization_id" {
type = string
description = "Sumo Logic Organization ID"
}

variable "sumologic_environment_base_url" {
type = string
description = "Base URL for custom Sumo Logic environments. Leave empty for standard deployments."
default = null
}

variable "aws_resource_tags" {
type = map(string)
description = "Tags to apply to AWS resources"
default = {}
}

Create main.auto.tfvars and set your Sumo Logic credentials:

sumologic_environment = "<YOUR SUMO DEPLOYMENT>"
sumologic_access_id = "<YOUR SUMO ACCESS ID>"
sumologic_access_key = "<YOUR SUMO ACCESS KEY>"
sumologic_organization_id = "<YOUR SUMO ORG ID>"

Option B: Install from the repository

Clone the v3.0.0 repository:

git clone https://github.com/SumoLogic/terraform-sumologic-aws-observability
cd terraform-sumologic-aws-observability

Initialize Terraform:

terraform init

Create main.auto.tfvars and configure your Sumo Logic credentials:

sumologic_environment = "<YOUR SUMO DEPLOYMENT>"
sumologic_access_id = "<YOUR SUMO ACCESS ID>"
sumologic_access_key = "<YOUR SUMO ACCESS KEY>"
sumologic_organization_id = "<YOUR SUMO ORG ID>"

Step 4: Configure providers.tf

Copy the AWS provider blocks directly from your backed-up providers.tf.v2x.bak — the aliases, profiles, and regions are identical between v2.x and v3.0.0. Replace only the provider "sumologic" block, which changed in v3.0.0 to support custom base URLs.

providers.tf
provider "sumologic" {
access_id = var.sumologic_access_id
access_key = var.sumologic_access_key
base_url = var.sumologic_environment_base_url
environment = (var.sumologic_environment_base_url == null || var.sumologic_environment_base_url == "") ? var.sumologic_environment : null
}

# Region us-east-1, AWS account profile production
provider "aws" {
profile = "production"
region = "us-east-1"
alias = "production-us-east-1"
}

# Region us-east-2, AWS account profile production
provider "aws" {
profile = "production"
region = "us-east-2"
alias = "production-us-east-2"
}

Step 5: Configure main.tf

Replace the contents of main.tf with the configuration below. Reference your backed-up main.tf.v2x.bak only for the aws_account_alias value — use the same alias that was used in v2.x to preserve the collector name and Explorer hierarchy. For all regions after the first, reuse the collector created by the first region using sumologic_existing_collector_details.

note

Use the same aws_account_alias that was used in your v2.x deployment to keep the Explorer hierarchy consistent.

Option A (registry):

main.tf
module "app-module" {
source = "SumoLogic/aws-observability/sumologic//modules/apps"
version = "3.0.0"
sumologic_access_id = var.sumologic_access_id
sumologic_access_key = var.sumologic_access_key
sumologic_environment = var.sumologic_environment
sumologic_environment_base_url = var.sumologic_environment_base_url
}

module "collection-module-us-east-1" {
depends_on = [module.app-module]
source = "SumoLogic/aws-observability/sumologic//modules/collections"
version = "3.0.0"

providers = {
aws = aws.production-us-east-1
sumologic = sumologic
}

aws_account_alias = "production" # same alias as v2.x
sumologic_organization_id = var.sumologic_organization_id
sumologic_access_id = var.sumologic_access_id
sumologic_access_key = var.sumologic_access_key
sumologic_environment = var.sumologic_environment
aws_resource_tags = var.aws_resource_tags
aws_cli_profile = "production"
}

module "collection-module-us-east-2" {
depends_on = [module.app-module]
source = "SumoLogic/aws-observability/sumologic//modules/collections"
version = "3.0.0"

providers = {
aws = aws.production-us-east-2
sumologic = sumologic
}

aws_account_alias = "production" # same alias as v2.x
sumologic_organization_id = var.sumologic_organization_id
sumologic_access_id = var.sumologic_access_id
sumologic_access_key = var.sumologic_access_key
sumologic_environment = var.sumologic_environment
aws_resource_tags = var.aws_resource_tags
aws_cli_profile = "production"

# Reuse the collector created for the first region — one collector per account.
sumologic_existing_collector_details = {
create_collector = false
collector_id = module.collection-module-us-east-1.sumologic_collector["collector"].id
}
}

Option B (repository):

main.tf
module "app-module" {
source = "./modules/apps"
sumologic_access_id = var.sumologic_access_id
sumologic_access_key = var.sumologic_access_key
sumologic_environment = var.sumologic_environment
sumologic_environment_base_url = var.sumologic_environment_base_url
}

module "collection-module-us-east-1" {
depends_on = [module.app-module]
source = "./modules/collections"

providers = {
aws = aws.production-us-east-1
sumologic = sumologic
}

aws_account_alias = "production" # same alias as v2.x
sumologic_organization_id = var.sumologic_organization_id
sumologic_access_id = var.sumologic_access_id
sumologic_access_key = var.sumologic_access_key
sumologic_environment = var.sumologic_environment
aws_resource_tags = var.aws_resource_tags
aws_cli_profile = "production"
}

module "collection-module-us-east-2" {
depends_on = [module.app-module]
source = "./modules/collections"

providers = {
aws = aws.production-us-east-2
sumologic = sumologic
}

aws_account_alias = "production" # same alias as v2.x
sumologic_organization_id = var.sumologic_organization_id
sumologic_access_id = var.sumologic_access_id
sumologic_access_key = var.sumologic_access_key
sumologic_environment = var.sumologic_environment
aws_resource_tags = var.aws_resource_tags
aws_cli_profile = "production"

# Reuse the collector created for the first region — one collector per account.
sumologic_existing_collector_details = {
create_collector = false
collector_id = module.collection-module-us-east-1.sumologic_collector["collector"].id
}
}

Step 6: Configure outputs.tf

outputs.tf
output "Apps" {
value = module.app-module
description = "All outputs related to apps."
sensitive = true
}

output "Collection" {
value = {
us-east-1 = module.collection-module-us-east-1
us-east-2 = module.collection-module-us-east-2
}
description = "All outputs related to collection and sources."
sensitive = true
}

Step 7: Deploy

terraform init
terraform validate
terraform plan
terraform apply

Step 8: Verify

Follow the same verification steps as the single account and region guide.


Multiple AWS accounts and regions

Use this approach when your v2.x deployment covered multiple AWS accounts, each potentially with multiple regions.

note

Destroy all v2.x deployments across all accounts and regions before deploying v3.0.0.

Step 1: Back up your existing configuration

Before destroying, save copies of your v2.x providers.tf and main.tf. You will use these as a reference when configuring v3.0.0:

  • providers.tf.v2x.bak — reference for AWS provider aliases, profiles, and regions (these carry over directly to v3.0.0).
  • main.tf.v2x.bak — reference for the aws_account_alias value used per account (do not copy module blocks — sources, variable names, and structure are significantly different in v3.0.0).
cp providers.tf providers.tf.v2x.bak
cp main.tf main.tf.v2x.bak

Step 2: Destroy all v2.x deployments

For each account/region combination, navigate to the v2.x working directory and run:

cd <v2.x-account-region-directory>
terraform destroy

Repeat for every account/region. Each terraform destroy runs against the AWS profile and region configured in that directory's providers.tf.

note

If your v2.x deployment created S3 buckets with force_destroy_bucket = false (the default), those buckets will not be deleted by terraform destroy. Review and delete them manually after the migration, or reference them as existing buckets in your v3.0.0 configuration.

Step 3: Set up a new v3.0.0 working directory

Choose one of the following installation methods:

Option A: Install as a Terraform module (from registry)

Create a new working directory:

mkdir v3-observability && cd v3-observability

When calling registry submodules with an explicit providers block, Terraform requires a versions.tf in your working directory to resolve the correct provider sources. Create versions.tf:

versions.tf
terraform {
required_version = ">= 1.5.7"

required_providers {
aws = {
source = "hashicorp/aws"
version = ">= 5.16.2, < 7.0.0"
}
sumologic = {
source = "SumoLogic/sumologic"
version = ">= 3.3.0, < 4.0.0"
}
time = {
source = "hashicorp/time"
version = ">= 0.11.1"
}
random = {
source = "hashicorp/random"
version = ">= 3.1.0"
}
}
}

Create variables.tf:

variables.tf
variable "sumologic_environment" {
type = string
description = "Sumo Logic deployment: au, ca, ch, de, eu, fed, jp, kr, us1, us2"
}

variable "sumologic_access_id" {
type = string
description = "Sumo Logic Access ID"
}

variable "sumologic_access_key" {
type = string
description = "Sumo Logic Access Key"
sensitive = true
}

variable "sumologic_organization_id" {
type = string
description = "Sumo Logic Organization ID"
}

variable "sumologic_environment_base_url" {
type = string
description = "Base URL for custom Sumo Logic environments. Leave empty for standard deployments."
default = null
}

variable "aws_resource_tags" {
type = map(string)
description = "Tags to apply to AWS resources"
default = {}
}

Create main.auto.tfvars and set your Sumo Logic credentials:

sumologic_environment = "<YOUR SUMO DEPLOYMENT>"
sumologic_access_id = "<YOUR SUMO ACCESS ID>"
sumologic_access_key = "<YOUR SUMO ACCESS KEY>"
sumologic_organization_id = "<YOUR SUMO ORG ID>"

Option B: Install from the repository

Clone the v3.0.0 repository:

git clone https://github.com/SumoLogic/terraform-sumologic-aws-observability
cd terraform-sumologic-aws-observability

Initialize Terraform:

terraform init

Create main.auto.tfvars and configure your Sumo Logic credentials:

sumologic_environment = "<YOUR SUMO DEPLOYMENT>"
sumologic_access_id = "<YOUR SUMO ACCESS ID>"
sumologic_access_key = "<YOUR SUMO ACCESS KEY>"
sumologic_organization_id = "<YOUR SUMO ORG ID>"

Step 4: Configure providers.tf

Copy the AWS provider blocks directly from your backed-up providers.tf.v2x.bak — the aliases, profiles, and regions are identical between v2.x and v3.0.0. Replace only the provider "sumologic" block, which changed in v3.0.0 to support custom base URLs. Each AWS provider block requires a unique alias, the AWS CLI profile for that account, and the target region.

providers.tf
provider "sumologic" {
access_id = var.sumologic_access_id
access_key = var.sumologic_access_key
base_url = var.sumologic_environment_base_url
environment = (var.sumologic_environment_base_url == null || var.sumologic_environment_base_url == "") ? var.sumologic_environment : null
}

# Production account — us-east-1
provider "aws" {
profile = "production"
region = "us-east-1"
alias = "production-us-east-1"
}

# Production account — us-east-2
provider "aws" {
profile = "production"
region = "us-east-2"
alias = "production-us-east-2"
}

# Development account — us-west-1
provider "aws" {
profile = "development"
region = "us-west-1"
alias = "development-us-west-1"
}

Step 5: Configure main.tf

Replace the contents of main.tf with the configuration below. Reference your backed-up main.tf.v2x.bak only for the aws_account_alias value per account — use the same alias that was used in v2.x to preserve the collector name and Explorer hierarchy. Key rules:

  • Set aws_account_alias per account to match the same alias used in v2.x — this preserves the collector name and Explorer hierarchy.
  • A Sumo Logic hosted collector is created once per AWS account. For the first region in each account, let the module create the collector. For subsequent regions in the same account, reuse the collector via sumologic_existing_collector_details.
  • The app-module is configured once and installs apps for the entire Sumo Logic org.

Option A (registry):

main.tf
module "app-module" {
source = "SumoLogic/aws-observability/sumologic//modules/apps"
version = "3.0.0"
sumologic_access_id = var.sumologic_access_id
sumologic_access_key = var.sumologic_access_key
sumologic_environment = var.sumologic_environment
sumologic_environment_base_url = var.sumologic_environment_base_url
}

# Production account — us-east-1 (creates the production collector)
module "collection-module-production-us-east-1" {
depends_on = [module.app-module]
source = "SumoLogic/aws-observability/sumologic//modules/collections"
version = "3.0.0"

providers = {
aws = aws.production-us-east-1
sumologic = sumologic
}

aws_account_alias = "production" # same alias as v2.x
sumologic_organization_id = var.sumologic_organization_id
sumologic_access_id = var.sumologic_access_id
sumologic_access_key = var.sumologic_access_key
sumologic_environment = var.sumologic_environment
aws_resource_tags = var.aws_resource_tags
aws_cli_profile = "production"
}

# Production account — us-east-2 (reuses the production collector)
module "collection-module-production-us-east-2" {
depends_on = [module.app-module]
source = "SumoLogic/aws-observability/sumologic//modules/collections"
version = "3.0.0"

providers = {
aws = aws.production-us-east-2
sumologic = sumologic
}

aws_account_alias = "production" # same alias as v2.x
sumologic_organization_id = var.sumologic_organization_id
sumologic_access_id = var.sumologic_access_id
sumologic_access_key = var.sumologic_access_key
sumologic_environment = var.sumologic_environment
aws_resource_tags = var.aws_resource_tags
aws_cli_profile = "production"

# Reuse the production collector — one collector per account.
sumologic_existing_collector_details = {
create_collector = false
collector_id = module.collection-module-production-us-east-1.sumologic_collector["collector"].id
}
}

# Development account — us-west-1 (creates the development collector)
module "collection-module-development-us-west-1" {
depends_on = [module.app-module]
source = "SumoLogic/aws-observability/sumologic//modules/collections"
version = "3.0.0"

providers = {
aws = aws.development-us-west-1
sumologic = sumologic
}

aws_account_alias = "development" # same alias as v2.x
sumologic_organization_id = var.sumologic_organization_id
sumologic_access_id = var.sumologic_access_id
sumologic_access_key = var.sumologic_access_key
sumologic_environment = var.sumologic_environment
aws_resource_tags = var.aws_resource_tags
aws_cli_profile = "development"
}

Option B (repository):

main.tf
module "app-module" {
source = "./modules/apps"
sumologic_access_id = var.sumologic_access_id
sumologic_access_key = var.sumologic_access_key
sumologic_environment = var.sumologic_environment
sumologic_environment_base_url = var.sumologic_environment_base_url
}

# Production account — us-east-1 (creates the production collector)
module "collection-module-production-us-east-1" {
depends_on = [module.app-module]
source = "./modules/collections"

providers = {
aws = aws.production-us-east-1
sumologic = sumologic
}

aws_account_alias = "production" # same alias as v2.x
sumologic_organization_id = var.sumologic_organization_id
sumologic_access_id = var.sumologic_access_id
sumologic_access_key = var.sumologic_access_key
sumologic_environment = var.sumologic_environment
aws_resource_tags = var.aws_resource_tags
aws_cli_profile = "production"
}

# Production account — us-east-2 (reuses the production collector)
module "collection-module-production-us-east-2" {
depends_on = [module.app-module]
source = "./modules/collections"

providers = {
aws = aws.production-us-east-2
sumologic = sumologic
}

aws_account_alias = "production" # same alias as v2.x
sumologic_organization_id = var.sumologic_organization_id
sumologic_access_id = var.sumologic_access_id
sumologic_access_key = var.sumologic_access_key
sumologic_environment = var.sumologic_environment
aws_resource_tags = var.aws_resource_tags
aws_cli_profile = "production"

# Reuse the production collector — one collector per account.
sumologic_existing_collector_details = {
create_collector = false
collector_id = module.collection-module-production-us-east-1.sumologic_collector["collector"].id
}
}

# Development account — us-west-1 (creates the development collector)
module "collection-module-development-us-west-1" {
depends_on = [module.app-module]
source = "./modules/collections"

providers = {
aws = aws.development-us-west-1
sumologic = sumologic
}

aws_account_alias = "development" # same alias as v2.x
sumologic_organization_id = var.sumologic_organization_id
sumologic_access_id = var.sumologic_access_id
sumologic_access_key = var.sumologic_access_key
sumologic_environment = var.sumologic_environment
aws_resource_tags = var.aws_resource_tags
aws_cli_profile = "development"
}

Step 6: Configure outputs.tf

outputs.tf
output "Apps" {
value = module.app-module
description = "All outputs related to apps."
sensitive = true
}

output "Collection" {
value = {
production-us-east-1 = module.collection-module-production-us-east-1
production-us-east-2 = module.collection-module-production-us-east-2
development-us-west-1 = module.collection-module-development-us-west-1
}
description = "All outputs related to collection and sources."
sensitive = true
}

Step 7: Deploy

terraform init
terraform validate
terraform plan
terraform apply

Step 8: Verify

  1. Run terraform plan — must show No changes.
  2. Go to Manage Data > Collection > Collection and confirm all collectors (one per account) show sources with a recent Last Message Received timestamp.
  3. Go to App Catalog > Installed Apps and confirm all AWS Observability v3.0.0 apps are present.
  4. Go to Explore > AWS Observability and confirm all account aliases and regions appear with metrics flowing.

Troubleshooting

IssueCauseResolution
Collector name conflictA collector with the same name already exists (v2.x destroy did not complete)Verify the v2.x destroy completed fully. If a partial collector remains, delete it manually from Manage Data > Collection and retry.
FER name conflict during app installOld FERs with AwsObservability* names still existDelete the old FERs manually from Manage Data > Logs > Field Extraction Rules and retry apply.
Field already existsFields created by v2.x were not removed during destroyFields are global to the org and reusable. The v3.0.0 deployment will use the existing fields — no action needed if apply succeeds.
Credentials error during applyAWS session expired during a long applyRe-authenticate and retry: terraform apply.
Sources not showing dataIAM role or S3 bucket policies not yet propagatedWait 5–10 minutes. The module includes a wait step for IAM propagation.
Provider type mismatch (hashicorp/sumologic vs SumoLogic/sumologic)Missing versions.tf in working directory when using registry submodulesCreate versions.tf with required_providers declaring source = "SumoLogic/sumologic" as shown in Step 3 Option A.
Orphaned S3 buckets after destroyv2.x buckets created with force_destroy_bucket = false are retained on destroyDelete orphaned buckets manually from the AWS Console, or reference them as existing buckets in your v3.0.0 *_source_details configuration.
v3.0.0 apply fails partway throughPartial resource creation left in inconsistent stateRun terraform destroy to clean up partial resources, fix the configuration error, then re-run terraform apply.
Status
Legal
Privacy Statement
Terms of Use
CA Privacy Notice

Copyright © 2026 by Sumo Logic, Inc.