Browse Source

Modified akamai.tf

main
kusum 1 year ago
parent
commit
5fe752ec25
1 changed files with 18 additions and 17 deletions
  1. 18
    17
      cicd-lab/akamai.tf

+ 18
- 17
cicd-lab/akamai.tf View File

terraform { terraform {
backend "s3" {
bucket = "akau-devops"
key = "<UserID>-<GiteaRepoName>.tfstate"
region = "us-iad-1"
endpoint = "us-iad-1.linodeobjects.com"
skip_credentials_validation = true
skip_region_validation = true
}
required_providers {
akamai = {
source = "akamai/akamai"
version = "5.2.0"
}
}
backend "s3" {
bucket = "akau-devops"
key = "<UserID>-zerotohero.tfstate"
region = "us-mia-1"
endpoint = "us-mia-1.linodeobjects.com"
skip_credentials_validation = true
skip_region_validation = true
}
required_providers {
akamai = {
source = "akamai/akamai"
version = "5.2.0"
}
}
} }
provider "akamai" {
edgerc = var.edgerc
config_section = var.section
provider "akamai" {
edgerc = var.edgerc
config_section = var.section
} }

Loading…
Cancel
Save