main.tf 341 B

1234567891011121314151617181920212223
  1. terraform {
  2. backend "remote" {
  3. organization = "weseek"
  4. workspaces {
  5. name = "growi-official-image-builder"
  6. }
  7. }
  8. required_providers {
  9. aws = {
  10. source = "hashicorp/aws"
  11. version = "~> 6.0"
  12. }
  13. }
  14. required_version = ">= 1.2.0"
  15. }
  16. provider "aws" {
  17. profile = "weseek"
  18. region = "ap-northeast-1"
  19. }