terraform { required_providers { signoz = { source = "signoz/signoz" version = "0.0.9" } } backend "s3" { bucket = "rinoa-terraform" key = "signoz/.tfstate" endpoints = { s3 = "http://192.168.1.254:9001" } region = "us-east-fh-pln" skip_credentials_validation = true skip_metadata_api_check = true skip_region_validation = true use_path_style = true skip_requesting_account_id = true # Optional, set to true if MinIO does not support AWS account ID } } provider "signoz" { # Configuration options }