You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

akamai.tf 494B

123456789101112131415161718192021
  1. terraform {
  2. backend "s3" {
  3. bucket = "akau-devops"
  4. key = "devops0776-zerotohero.tfstate"
  5. region = "us-mia-1"
  6. endpoint = "us-mia-1.linodeobjects.com"
  7. skip_credentials_validation = true
  8. skip_region_validation = true
  9. }
  10. required_providers {
  11. akamai = {
  12. source = "akamai/akamai"
  13. version = "5.2.0"
  14. }
  15. }
  16. }
  17. provider "akamai" {
  18. edgerc = var.edgerc
  19. config_section = var.section
  20. }