terraform resource: aws s3 bucket website configuration

From wikieduonline
Revision as of 11:38, 13 January 2023 by ELF (talk | contribs)
Jump to navigation Jump to search

resource "aws_s3_bucket_website_configuration" "example" {
  bucket = aws_s3_bucket.example.bucket

  index_document {
    suffix = "index.html"
  }

  error_document {
    key = "error.html"
  }

  routing_rule {
    condition {
      key_prefix_equals = "docs/"
    }
    redirect {
      replace_key_prefix_with = "documents/"
    }
  }
}

See also

Advertising: