I am trying to deploy a Terraform stack from a Linux EC2 and getting the following error:
The plugin.(*GRPCProvider).ApplyResourceChange request was cancelled.
and
│ The plugin.(*GRPCProvider).PlanResourceChange request was cancelled.
and
│ The plugin.(*GRPCProvider).ValidateResourceConfig request was cancelled.
for random resources.
Terraform versions: 1.3.1_linux_amd64, 1.3.5_linux_amd64. The reason am noting the Linux ec2 its because when depolying from my local computer I am not getting any errors, with the same Terraform versions but for mac.
provider.tf:
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.0"
}
}
}
provider "aws" {
region = "us-east-1"
}