AWS Dynamic Provider Credentials
Last updated
Was this helpful?
Was this helpful?
terraform {
cloud {
organization = "terrakube_organization_name"
hostname = "terrakube-api.mydomain.com"
workspaces {
name = "terrakube_workspace_name"
}
}
}
provider "aws" {
}
resource "aws_s3_bucket" "example" {
bucket = "my-tf-superbucket-awerqerq"
tags = {
Name = "My bucket"
Environment = "Dev"
}
}