/* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. SPDX-License-Identifier: MIT-0 */ # --- centralized_service_network/service-account/providers.tf --- terraform { required_version = ">= 1.3.0" required_providers { aws = { source = "hashicorp/aws" version = ">= 4.66.0" } } } # Provider definition provider "aws" { region = var.aws_region }