Sha256: 10af6b52f873fc6011658c101a65fd29c26c52c8cebec8ec0b398276b5ff106b
Contents?: true
Size: 594 Bytes
Versions: 11
Compression:
Stored size: 594 Bytes
Contents
terraform { required_providers { aws = { source = "hashicorp/aws" version = "~> 3.0" } } } # Variables variable aws_region { type = string } variable project_name { type = string } locals { state_bucket_name = "subspace-backend-${var.project_name}" } provider "aws" { region = var.aws_region } data "local_file" "pgp_key" { filename = "../public-key-binary.gpg" } # Outputs output "subspace_aws_access_key_id" { value = aws_iam_access_key.ss.id } output "subspace_aws_encrypted_secret_access_key" { value = aws_iam_access_key.ss.encrypted_secret }
Version data entries
11 entries across 11 versions & 1 rubygems