├── .gitignore ├── README.md ├── scripts └── terraform_setup.sh └── terraform ├── codebuild ├── _modules │ ├── deployment │ │ ├── codebuild.tf │ │ ├── locals.tf │ │ └── variables.tf │ └── source_credential │ │ ├── codebuild_source_credential.tf │ │ └── variables.tf ├── artd_apnortheast2 │ ├── backend.tf │ ├── deployment.tf │ ├── provider.tf │ ├── remote_state.tf │ ├── var_global.tf │ └── variables.tf ├── artp-apnortheast2 │ ├── backend.tf │ ├── deployment.tf │ ├── provider.tf │ ├── remote_state.tf │ ├── var_global.tf │ └── variables.tf ├── eksd_apnortheast2 │ ├── .terraform.lock.hcl │ ├── backend.tf │ ├── codebuild_github_token.tf │ ├── data.tf │ ├── deployment_jenkins.tf │ ├── locals.tf │ ├── provider.tf │ ├── remote_states.tf │ ├── secrets.sops.yaml │ ├── terraform.tfvars │ ├── var_global.tf │ └── variables.tf └── provider.tf ├── databases ├── art-id │ └── lgu_apnortheast2 │ │ ├── .terraform.lock.hcl │ │ ├── backend.tf │ │ ├── mysql │ │ ├── .terraform.lock.hcl │ │ ├── backend.tf │ │ ├── mysql.tf │ │ ├── provider.tf │ │ ├── remote_state.tf │ │ ├── terraform.tfvars │ │ ├── var_global.tf │ │ └── variables.tf │ │ ├── provider.tf │ │ ├── rds.tf │ │ ├── remote_state.tf │ │ ├── terraform.tfvars │ │ ├── var_global.tf │ │ └── variables.tf └── dayone-prod │ └── dayonep_apnortheast2 │ ├── backend.tf │ ├── dayone │ ├── backend.tf │ ├── elasticache.tf │ ├── elasticache_pg.tf │ ├── elasticache_sg.tf │ ├── parameter_group.tf │ ├── provider.tf │ ├── remote_state.tf │ ├── route53.tf │ ├── sg.tf │ ├── terraform.tfvars │ ├── var_global.tf │ └── variables.tf │ ├── db_subnet.tf │ ├── elasticache_subnet.tf │ ├── provider.tf │ ├── remote_state.tf │ ├── terraform.tfvars │ ├── var_global.tf │ └── variables.tf ├── ec2 └── art-id │ ├── _module │ └── ec2 │ │ ├── ec2.tf │ │ ├── var_lb.tf │ │ ├── var_sg.tf │ │ └── variables.tf │ ├── artd_apnortheast2 │ ├── backend.tf │ ├── ec2.tf │ ├── outputs.tf │ ├── provider.tf │ ├── remote_state.tf │ ├── terraform.tfvars │ ├── var_global.tf │ ├── var_lb.tf │ ├── var_route53.tf │ ├── var_sg.tf │ └── variables.tf │ ├── outputs.tf │ ├── provider.tf │ ├── variables.tf │ └── variables │ ├── var_lb.tf │ └── var_sg.tf ├── ecr ├── art-id │ ├── id_apnortheast2 │ │ ├── Dockerfile │ │ ├── art_build.tf │ │ ├── backend.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ ├── requirements.txt │ │ ├── terraform.tfvars │ │ └── variables.tf │ ├── outputs.tf │ ├── provider.tf │ └── variables.tf └── art-prod │ ├── outputs.tf │ ├── prod_apnortheast2 │ ├── Dockerfile-art-build-amazon │ ├── art_build.tf │ ├── backend.tf │ ├── outputs.tf │ ├── provider.tf │ ├── requirements.txt │ ├── terraform.tfvars │ └── variables.tf │ ├── provider.tf │ └── variables.tf ├── eks ├── _module │ ├── addons.tf │ ├── aws_auth.tf │ ├── aws_loadbalancer_controller.tf │ ├── aws_node_termination_handler_queue.tf │ ├── cluster.tf │ ├── external_dns.tf │ ├── external_secrets.tf │ ├── fargate_profile.tf │ ├── fis.tf │ ├── karpenter.tf │ ├── node_group.tf │ ├── openid_connect_provider.tf │ ├── outputs.tf │ ├── service │ │ ├── outputs.tf │ │ ├── sg.tf │ │ ├── var_sg.tf │ │ └── variables.tf │ ├── variables.tf │ └── vpc_tags │ │ ├── main.tf │ │ └── variables.tf ├── eksd_apnortheast2 │ ├── eksdapne2-fvrr │ │ ├── .terraform.lock.hcl │ │ ├── backend.tf │ │ ├── cluster.tf │ │ ├── locals.tf │ │ ├── netshoot.yaml │ │ ├── outputs.tf │ │ ├── provider.tf │ │ ├── remote_state.tf │ │ ├── terraform.tfvars │ │ ├── var_global.tf │ │ └── variables.tf │ ├── outputs.tf │ ├── provider.tf │ └── remote_state.tf └── eksd_useast1 │ ├── eksduse1-tvjq │ ├── .terraform.lock.hcl │ ├── backend.tf │ ├── cluster.tf │ ├── locals.tf │ ├── netshoot.yaml │ ├── outputs.tf │ ├── provider.tf │ ├── remote_state.tf │ ├── terraform.tfvars │ ├── var_global.tf │ └── variables.tf │ ├── outputs.tf │ ├── provider.tf │ └── remote_state.tf ├── examples └── atlantis │ ├── README.md │ ├── atlantis.yaml │ ├── repos.yaml │ └── terraform │ └── test │ ├── backend.tf │ └── init.tf ├── iam ├── _modules │ ├── assume_role_policy │ │ ├── main.tf │ │ ├── output.tf │ │ └── variables.tf │ ├── policy │ │ ├── main.tf │ │ ├── output.tf │ │ └── variables.tf │ ├── sops │ │ ├── main.tf │ │ ├── output.tf │ │ └── variables.tf │ └── user │ │ ├── main.tf │ │ ├── output.tf │ │ └── variables.tf ├── art-id │ ├── .terraform.lock.hcl │ ├── README.md │ ├── _module_assume_policy │ │ ├── main.tf │ │ ├── output.tf │ │ └── variables.tf │ ├── admin.tf │ ├── app-hello.tf │ ├── app-hello2.tf │ ├── app-universal.tf │ ├── assume_policy_prod.tf │ ├── backend.tf │ ├── codebuild_deployment.tf │ ├── deployment.tf │ ├── everyone_policy.tf │ ├── group_devops_black.tf │ ├── group_devops_white.tf │ ├── jenkins_codebuild.tf │ ├── provider.tf │ ├── remote_state.tf │ ├── role_gitaction-idp.tf │ ├── role_gitaction.tf │ ├── role_jenkins.tf │ ├── role_sops_devart_id.tf │ ├── terraform.tfvars │ ├── user_asbubam.tf │ ├── user_gslee.tf │ ├── user_jupiter_song.tf │ ├── user_jwkang.tf │ ├── user_samples.tf │ ├── user_zerojin0312.tf │ ├── var_global.tf │ └── variables.tf ├── art-prod │ ├── .terraform.lock.hcl │ ├── app-hello.tf │ ├── app-universal.tf │ ├── assume-art-prod-admin-with-art-id.tf │ ├── assume-art-prod-readonly-with-art-id.tf │ ├── backend.tf │ ├── codebuild-deployment.tf │ ├── deployment.tf │ ├── provider.tf │ ├── terraform.tfvars │ └── variables.tf ├── provider.tf └── variables.tf ├── init ├── art-id │ └── init.tf ├── art-prod │ └── init.tf └── devart-preprod │ ├── .terraform.lock.hcl │ └── init.tf ├── kms ├── _modules │ └── sops │ │ ├── sops_common.tf │ │ ├── sops_secure.tf │ │ ├── var_global.tf │ │ └── variables.tf ├── art-id │ ├── id_apnortheast2 │ │ ├── backend.tf │ │ ├── deployment_common.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ ├── terraform.tfvars │ │ └── variables.tf │ ├── id_apsoutheast1 │ │ ├── backend.tf │ │ ├── deployment_common.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ ├── terraform.tfvars │ │ └── variables.tf │ ├── outputs.tf │ ├── provider.tf │ └── variables.tf ├── art-prod │ ├── outputs.tf │ ├── prod_apnortheast2 │ │ ├── backend.tf │ │ ├── deployment_common.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ ├── terraform.tfvars │ │ └── variables.tf │ ├── provider.tf │ └── variables.tf └── devart-id │ ├── ap-northeast-2 │ ├── .terraform.lock.hcl │ ├── backend.tf │ ├── deployment_common.tf │ ├── outputs.tf │ ├── provider.tf │ ├── remote_state.tf │ ├── sops_devart_id.tf │ ├── terraform.tfvars │ ├── var_global.tf │ └── variables.tf │ ├── outputs.tf │ ├── provider.tf │ └── variables.tf ├── platform ├── atlantis │ ├── README.md │ ├── backend.tf │ ├── main.tf │ ├── modules │ │ ├── github-repository-webhook │ │ │ ├── README.md │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ │ └── gitlab-repository-webhook │ │ │ ├── README.md │ │ │ ├── main.tf │ │ │ ├── outputs.tf │ │ │ └── variables.tf │ ├── outputs.tf │ ├── provider.tf │ ├── terraform.tfvars │ └── variables.tf └── jenkins │ ├── _modules │ └── jenkins │ │ ├── efs.tf │ │ ├── jenkins.tf │ │ └── variables.tf │ ├── eksd_apnortheast2 │ ├── .terraform.lock.hcl │ ├── backend.tf │ ├── jenkins.tf │ ├── provider.tf │ ├── remote_state.tf │ ├── var_global.tf │ ├── var_route53.tf │ └── variables.tf │ ├── provider.tf │ └── variables.tf ├── route53 ├── art-id │ ├── devops-art-factory.com │ │ ├── backend.tf │ │ ├── provider.tf │ │ ├── route53.tf │ │ ├── var_global.tf │ │ └── variables.tf │ ├── provider.tf │ ├── remote_state.tf │ └── variables.tf └── art-prod │ ├── prod.devops-art-factory.com │ ├── backend.tf │ ├── provider.tf │ ├── route53.tf │ └── variables.tf │ ├── provider.tf │ ├── remote_state.tf │ └── variables.tf ├── s3 ├── art-id │ └── id_apnortheast2 │ │ ├── .terraform.lock.hcl │ │ ├── backend.tf │ │ ├── contents-devart_with_domain.tf │ │ ├── contents-devart_without_domain.tf │ │ ├── outputs.tf │ │ ├── provider.tf │ │ ├── terraform.tfvars │ │ ├── var_route53.tf │ │ └── variables.tf └── dayone-prod │ └── prod_apnortheast2 │ ├── application-log.tf │ ├── backend.tf │ ├── contents-dayone-without-domain.tf │ ├── contents-dayone.tf │ ├── outputs.tf │ ├── provider.tf │ ├── session-manager-logs.tf │ ├── terraform.tfvars │ ├── var_route53.tf │ └── variables.tf ├── securitygroup ├── devart-id │ └── eksd_apnortheast2 │ │ ├── .terraform.lock.hcl │ │ ├── backend.tf │ │ ├── codebuild_deployment.tf │ │ ├── output.tf │ │ ├── provider.tf │ │ ├── remote_state.tf │ │ ├── terraform.tfvars │ │ ├── var_global.tf │ │ └── variables.tf └── provider.tf ├── services ├── hello │ ├── _module │ │ └── hello │ │ │ ├── outputs.tf │ │ │ ├── service.tf │ │ │ ├── var_lb.tf │ │ │ ├── var_sg.tf │ │ │ └── variables.tf │ ├── artp_apnortheast2 │ │ ├── backend.tf │ │ ├── output.tf │ │ ├── provider.tf │ │ ├── remote_state.tf │ │ ├── service.tf │ │ ├── terraform.tfvars │ │ ├── var_global.tf │ │ ├── var_lb.tf │ │ ├── var_route53.tf │ │ ├── var_sg.tf │ │ └── variables.tf │ ├── devartd_apnortheast2 │ │ ├── .terraform.lock.hcl │ │ ├── backend.tf │ │ ├── output.tf │ │ ├── provider.tf │ │ ├── remote_state.tf │ │ ├── service.tf │ │ ├── terraform.tfvars │ │ ├── var_global.tf │ │ ├── var_lb.tf │ │ ├── var_route53.tf │ │ ├── var_sg.tf │ │ └── variables.tf │ ├── devarts_apnortheast2 │ │ ├── .terraform.lock.hcl │ │ ├── backend.tf │ │ ├── output.tf │ │ ├── provider.tf │ │ ├── remote_state.tf │ │ ├── service.tf │ │ ├── terraform.tfvars │ │ ├── var_global.tf │ │ ├── var_lb.tf │ │ ├── var_route53.tf │ │ ├── var_sg.tf │ │ └── variables.tf │ ├── output.tf │ ├── provider.tf │ ├── variables.tf │ └── variables │ │ ├── var_lb.tf │ │ └── var_sg.tf ├── helloapi │ ├── _module │ │ └── helloapi │ │ │ ├── outputs.tf │ │ │ ├── service.tf │ │ │ ├── var_lb.tf │ │ │ ├── var_sg.tf │ │ │ └── variables.tf │ ├── devartd_apnortheast2 │ │ ├── .terraform.lock.hcl │ │ ├── backend.tf │ │ ├── output.tf │ │ ├── provider.tf │ │ ├── remote_state.tf │ │ ├── service.tf │ │ ├── terraform.tfvars │ │ ├── var_global.tf │ │ ├── var_lb.tf │ │ ├── var_route53.tf │ │ ├── var_sg.tf │ │ └── variables.tf │ ├── devarts_apnortheast2 │ │ ├── .terraform.lock.hcl │ │ ├── backend.tf │ │ ├── output.tf │ │ ├── provider.tf │ │ ├── remote_state.tf │ │ ├── service.tf │ │ ├── terraform.tfvars │ │ ├── var_global.tf │ │ ├── var_lb.tf │ │ ├── var_route53.tf │ │ ├── var_sg.tf │ │ └── variables.tf │ ├── output.tf │ ├── provider.tf │ ├── variables.tf │ └── variables │ │ ├── var_lb.tf │ │ └── var_sg.tf └── helloworker │ ├── _module │ └── helloworker │ │ ├── outputs.tf │ │ ├── service.tf │ │ ├── var_lb.tf │ │ ├── var_sg.tf │ │ └── variables.tf │ ├── devartd_apnortheast2 │ ├── .terraform.lock.hcl │ ├── backend.tf │ ├── output.tf │ ├── provider.tf │ ├── remote_state.tf │ ├── service.tf │ ├── terraform.tfvars │ ├── var_global.tf │ ├── var_lb.tf │ ├── var_route53.tf │ ├── var_sg.tf │ └── variables.tf │ ├── output.tf │ ├── provider.tf │ ├── variables.tf │ └── variables │ ├── var_lb.tf │ └── var_sg.tf ├── ssm └── art-id │ ├── _modules │ └── aws_ssm_parameter │ │ ├── ssm.tf │ │ └── variables.tf │ └── id_apnortheast2 │ ├── .terraform.lock.hcl │ ├── backend.tf │ ├── codebuild_github_token.tf │ ├── data.tf │ ├── github_token.tf │ ├── jenkins_client_id.tf │ ├── jenkins_client_secret.tf │ ├── locals.tf │ ├── provider.tf │ ├── remote_state.tf │ ├── secrets.sops.yaml │ ├── terraform.tfvars │ ├── var_global.tf │ └── variables.tf ├── variables ├── var_global.tf └── var_route53.tf └── vpc ├── devartd_apnortheast2 ├── .terraform.lock.hcl ├── backend.tf ├── bastion_sg.tf ├── default_sg.tf ├── outputs.tf ├── peering.tf ├── peering_routes.tf ├── provider.tf ├── route53.tf ├── route_table_routes.tf ├── terraform.tfvars ├── variables.tf ├── vpc.tf └── vpc_endpoints.tf ├── devarts_apnortheast2 ├── .terraform.lock.hcl ├── backend.tf ├── bastion_sg.tf ├── default_sg.tf ├── outputs.tf ├── peering.tf ├── peering_routes.tf ├── provider.tf ├── route53.tf ├── route_table_routes.tf ├── terraform.tfvars ├── variables.tf ├── vpc.tf └── vpc_endpoints.tf ├── eksd_apnortheast2 ├── .terraform.lock.hcl ├── backend.tf ├── locals.tf ├── outputs.tf ├── peering.tf ├── provider.tf ├── route53.tf ├── route_table_route.tf ├── terraform.tfvars ├── var_global.tf ├── variables.tf └── vpc.tf ├── eksd_useast1 ├── .terraform.lock.hcl ├── backend.tf ├── locals.tf ├── outputs.tf ├── peering.tf ├── provider.tf ├── route53.tf ├── route_table_route.tf ├── terraform.tfvars ├── var_global.tf ├── variables.tf └── vpc.tf ├── outputs.tf └── provider.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/README.md -------------------------------------------------------------------------------- /scripts/terraform_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/scripts/terraform_setup.sh -------------------------------------------------------------------------------- /terraform/codebuild/_modules/deployment/codebuild.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/codebuild/_modules/deployment/codebuild.tf -------------------------------------------------------------------------------- /terraform/codebuild/_modules/deployment/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/codebuild/_modules/deployment/locals.tf -------------------------------------------------------------------------------- /terraform/codebuild/_modules/deployment/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/codebuild/_modules/deployment/variables.tf -------------------------------------------------------------------------------- /terraform/codebuild/_modules/source_credential/codebuild_source_credential.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/codebuild/_modules/source_credential/codebuild_source_credential.tf -------------------------------------------------------------------------------- /terraform/codebuild/_modules/source_credential/variables.tf: -------------------------------------------------------------------------------- 1 | variable "github_token" { 2 | default = "" 3 | } -------------------------------------------------------------------------------- /terraform/codebuild/artd_apnortheast2/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/codebuild/artd_apnortheast2/backend.tf -------------------------------------------------------------------------------- /terraform/codebuild/artd_apnortheast2/deployment.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/codebuild/artd_apnortheast2/deployment.tf -------------------------------------------------------------------------------- /terraform/codebuild/artd_apnortheast2/provider.tf: -------------------------------------------------------------------------------- 1 | ../provider.tf -------------------------------------------------------------------------------- /terraform/codebuild/artd_apnortheast2/remote_state.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/codebuild/artd_apnortheast2/remote_state.tf -------------------------------------------------------------------------------- /terraform/codebuild/artd_apnortheast2/var_global.tf: -------------------------------------------------------------------------------- 1 | ../../variables/var_global.tf -------------------------------------------------------------------------------- /terraform/codebuild/artd_apnortheast2/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/codebuild/artd_apnortheast2/variables.tf -------------------------------------------------------------------------------- /terraform/codebuild/artp-apnortheast2/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/codebuild/artp-apnortheast2/backend.tf -------------------------------------------------------------------------------- /terraform/codebuild/artp-apnortheast2/deployment.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/codebuild/artp-apnortheast2/deployment.tf -------------------------------------------------------------------------------- /terraform/codebuild/artp-apnortheast2/provider.tf: -------------------------------------------------------------------------------- 1 | ../provider.tf -------------------------------------------------------------------------------- /terraform/codebuild/artp-apnortheast2/remote_state.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/codebuild/artp-apnortheast2/remote_state.tf -------------------------------------------------------------------------------- /terraform/codebuild/artp-apnortheast2/var_global.tf: -------------------------------------------------------------------------------- 1 | ../../variables/var_global.tf -------------------------------------------------------------------------------- /terraform/codebuild/artp-apnortheast2/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/codebuild/artp-apnortheast2/variables.tf -------------------------------------------------------------------------------- /terraform/codebuild/eksd_apnortheast2/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/codebuild/eksd_apnortheast2/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/codebuild/eksd_apnortheast2/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/codebuild/eksd_apnortheast2/backend.tf -------------------------------------------------------------------------------- /terraform/codebuild/eksd_apnortheast2/codebuild_github_token.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/codebuild/eksd_apnortheast2/codebuild_github_token.tf -------------------------------------------------------------------------------- /terraform/codebuild/eksd_apnortheast2/data.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/codebuild/eksd_apnortheast2/data.tf -------------------------------------------------------------------------------- /terraform/codebuild/eksd_apnortheast2/deployment_jenkins.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/codebuild/eksd_apnortheast2/deployment_jenkins.tf -------------------------------------------------------------------------------- /terraform/codebuild/eksd_apnortheast2/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/codebuild/eksd_apnortheast2/locals.tf -------------------------------------------------------------------------------- /terraform/codebuild/eksd_apnortheast2/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/codebuild/eksd_apnortheast2/provider.tf -------------------------------------------------------------------------------- /terraform/codebuild/eksd_apnortheast2/remote_states.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/codebuild/eksd_apnortheast2/remote_states.tf -------------------------------------------------------------------------------- /terraform/codebuild/eksd_apnortheast2/secrets.sops.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/codebuild/eksd_apnortheast2/secrets.sops.yaml -------------------------------------------------------------------------------- /terraform/codebuild/eksd_apnortheast2/terraform.tfvars: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terraform/codebuild/eksd_apnortheast2/var_global.tf: -------------------------------------------------------------------------------- 1 | ../../variables/var_global.tf -------------------------------------------------------------------------------- /terraform/codebuild/eksd_apnortheast2/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/codebuild/eksd_apnortheast2/variables.tf -------------------------------------------------------------------------------- /terraform/codebuild/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/codebuild/provider.tf -------------------------------------------------------------------------------- /terraform/databases/art-id/lgu_apnortheast2/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/databases/art-id/lgu_apnortheast2/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/databases/art-id/lgu_apnortheast2/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/databases/art-id/lgu_apnortheast2/backend.tf -------------------------------------------------------------------------------- /terraform/databases/art-id/lgu_apnortheast2/mysql/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/databases/art-id/lgu_apnortheast2/mysql/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/databases/art-id/lgu_apnortheast2/mysql/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/databases/art-id/lgu_apnortheast2/mysql/backend.tf -------------------------------------------------------------------------------- /terraform/databases/art-id/lgu_apnortheast2/mysql/mysql.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/databases/art-id/lgu_apnortheast2/mysql/mysql.tf -------------------------------------------------------------------------------- /terraform/databases/art-id/lgu_apnortheast2/mysql/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/databases/art-id/lgu_apnortheast2/mysql/provider.tf -------------------------------------------------------------------------------- /terraform/databases/art-id/lgu_apnortheast2/mysql/remote_state.tf: -------------------------------------------------------------------------------- 1 | ../remote_state.tf -------------------------------------------------------------------------------- /terraform/databases/art-id/lgu_apnortheast2/mysql/terraform.tfvars: -------------------------------------------------------------------------------- 1 | ../terraform.tfvars -------------------------------------------------------------------------------- /terraform/databases/art-id/lgu_apnortheast2/mysql/var_global.tf: -------------------------------------------------------------------------------- 1 | ../../../../variables/var_global.tf -------------------------------------------------------------------------------- /terraform/databases/art-id/lgu_apnortheast2/mysql/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/databases/art-id/lgu_apnortheast2/mysql/variables.tf -------------------------------------------------------------------------------- /terraform/databases/art-id/lgu_apnortheast2/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/databases/art-id/lgu_apnortheast2/provider.tf -------------------------------------------------------------------------------- /terraform/databases/art-id/lgu_apnortheast2/rds.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/databases/art-id/lgu_apnortheast2/rds.tf -------------------------------------------------------------------------------- /terraform/databases/art-id/lgu_apnortheast2/remote_state.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/databases/art-id/lgu_apnortheast2/remote_state.tf -------------------------------------------------------------------------------- /terraform/databases/art-id/lgu_apnortheast2/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/databases/art-id/lgu_apnortheast2/terraform.tfvars -------------------------------------------------------------------------------- /terraform/databases/art-id/lgu_apnortheast2/var_global.tf: -------------------------------------------------------------------------------- 1 | ../../../variables/var_global.tf -------------------------------------------------------------------------------- /terraform/databases/art-id/lgu_apnortheast2/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/databases/art-id/lgu_apnortheast2/variables.tf -------------------------------------------------------------------------------- /terraform/databases/dayone-prod/dayonep_apnortheast2/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/databases/dayone-prod/dayonep_apnortheast2/backend.tf -------------------------------------------------------------------------------- /terraform/databases/dayone-prod/dayonep_apnortheast2/dayone/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/databases/dayone-prod/dayonep_apnortheast2/dayone/backend.tf -------------------------------------------------------------------------------- /terraform/databases/dayone-prod/dayonep_apnortheast2/dayone/elasticache.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/databases/dayone-prod/dayonep_apnortheast2/dayone/elasticache.tf -------------------------------------------------------------------------------- /terraform/databases/dayone-prod/dayonep_apnortheast2/dayone/elasticache_pg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/databases/dayone-prod/dayonep_apnortheast2/dayone/elasticache_pg.tf -------------------------------------------------------------------------------- /terraform/databases/dayone-prod/dayonep_apnortheast2/dayone/elasticache_sg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/databases/dayone-prod/dayonep_apnortheast2/dayone/elasticache_sg.tf -------------------------------------------------------------------------------- /terraform/databases/dayone-prod/dayonep_apnortheast2/dayone/parameter_group.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/databases/dayone-prod/dayonep_apnortheast2/dayone/parameter_group.tf -------------------------------------------------------------------------------- /terraform/databases/dayone-prod/dayonep_apnortheast2/dayone/provider.tf: -------------------------------------------------------------------------------- 1 | ../provider.tf -------------------------------------------------------------------------------- /terraform/databases/dayone-prod/dayonep_apnortheast2/dayone/remote_state.tf: -------------------------------------------------------------------------------- 1 | ../remote_state.tf -------------------------------------------------------------------------------- /terraform/databases/dayone-prod/dayonep_apnortheast2/dayone/route53.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/databases/dayone-prod/dayonep_apnortheast2/dayone/route53.tf -------------------------------------------------------------------------------- /terraform/databases/dayone-prod/dayonep_apnortheast2/dayone/sg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/databases/dayone-prod/dayonep_apnortheast2/dayone/sg.tf -------------------------------------------------------------------------------- /terraform/databases/dayone-prod/dayonep_apnortheast2/dayone/terraform.tfvars: -------------------------------------------------------------------------------- 1 | ../terraform.tfvars -------------------------------------------------------------------------------- /terraform/databases/dayone-prod/dayonep_apnortheast2/dayone/var_global.tf: -------------------------------------------------------------------------------- 1 | ../../../../variables/var_global.tf -------------------------------------------------------------------------------- /terraform/databases/dayone-prod/dayonep_apnortheast2/dayone/variables.tf: -------------------------------------------------------------------------------- 1 | ../variables.tf -------------------------------------------------------------------------------- /terraform/databases/dayone-prod/dayonep_apnortheast2/db_subnet.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/databases/dayone-prod/dayonep_apnortheast2/db_subnet.tf -------------------------------------------------------------------------------- /terraform/databases/dayone-prod/dayonep_apnortheast2/elasticache_subnet.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/databases/dayone-prod/dayonep_apnortheast2/elasticache_subnet.tf -------------------------------------------------------------------------------- /terraform/databases/dayone-prod/dayonep_apnortheast2/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/databases/dayone-prod/dayonep_apnortheast2/provider.tf -------------------------------------------------------------------------------- /terraform/databases/dayone-prod/dayonep_apnortheast2/remote_state.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/databases/dayone-prod/dayonep_apnortheast2/remote_state.tf -------------------------------------------------------------------------------- /terraform/databases/dayone-prod/dayonep_apnortheast2/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/databases/dayone-prod/dayonep_apnortheast2/terraform.tfvars -------------------------------------------------------------------------------- /terraform/databases/dayone-prod/dayonep_apnortheast2/var_global.tf: -------------------------------------------------------------------------------- 1 | ../../../variables/var_global.tf -------------------------------------------------------------------------------- /terraform/databases/dayone-prod/dayonep_apnortheast2/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/databases/dayone-prod/dayonep_apnortheast2/variables.tf -------------------------------------------------------------------------------- /terraform/ec2/art-id/_module/ec2/ec2.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ec2/art-id/_module/ec2/ec2.tf -------------------------------------------------------------------------------- /terraform/ec2/art-id/_module/ec2/var_lb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ec2/art-id/_module/ec2/var_lb.tf -------------------------------------------------------------------------------- /terraform/ec2/art-id/_module/ec2/var_sg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ec2/art-id/_module/ec2/var_sg.tf -------------------------------------------------------------------------------- /terraform/ec2/art-id/_module/ec2/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ec2/art-id/_module/ec2/variables.tf -------------------------------------------------------------------------------- /terraform/ec2/art-id/artd_apnortheast2/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ec2/art-id/artd_apnortheast2/backend.tf -------------------------------------------------------------------------------- /terraform/ec2/art-id/artd_apnortheast2/ec2.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ec2/art-id/artd_apnortheast2/ec2.tf -------------------------------------------------------------------------------- /terraform/ec2/art-id/artd_apnortheast2/outputs.tf: -------------------------------------------------------------------------------- 1 | ../outputs.tf -------------------------------------------------------------------------------- /terraform/ec2/art-id/artd_apnortheast2/provider.tf: -------------------------------------------------------------------------------- 1 | ../provider.tf -------------------------------------------------------------------------------- /terraform/ec2/art-id/artd_apnortheast2/remote_state.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ec2/art-id/artd_apnortheast2/remote_state.tf -------------------------------------------------------------------------------- /terraform/ec2/art-id/artd_apnortheast2/terraform.tfvars: -------------------------------------------------------------------------------- 1 | aws_region = "ap-northeast-2" 2 | -------------------------------------------------------------------------------- /terraform/ec2/art-id/artd_apnortheast2/var_global.tf: -------------------------------------------------------------------------------- 1 | ../../../variables/var_global.tf -------------------------------------------------------------------------------- /terraform/ec2/art-id/artd_apnortheast2/var_lb.tf: -------------------------------------------------------------------------------- 1 | ../variables/var_lb.tf -------------------------------------------------------------------------------- /terraform/ec2/art-id/artd_apnortheast2/var_route53.tf: -------------------------------------------------------------------------------- 1 | ../../../variables/var_route53.tf -------------------------------------------------------------------------------- /terraform/ec2/art-id/artd_apnortheast2/var_sg.tf: -------------------------------------------------------------------------------- 1 | ../variables/var_sg.tf -------------------------------------------------------------------------------- /terraform/ec2/art-id/artd_apnortheast2/variables.tf: -------------------------------------------------------------------------------- 1 | ../variables.tf -------------------------------------------------------------------------------- /terraform/ec2/art-id/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terraform/ec2/art-id/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ec2/art-id/provider.tf -------------------------------------------------------------------------------- /terraform/ec2/art-id/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ec2/art-id/variables.tf -------------------------------------------------------------------------------- /terraform/ec2/art-id/variables/var_lb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ec2/art-id/variables/var_lb.tf -------------------------------------------------------------------------------- /terraform/ec2/art-id/variables/var_sg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ec2/art-id/variables/var_sg.tf -------------------------------------------------------------------------------- /terraform/ecr/art-id/id_apnortheast2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ecr/art-id/id_apnortheast2/Dockerfile -------------------------------------------------------------------------------- /terraform/ecr/art-id/id_apnortheast2/art_build.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ecr/art-id/id_apnortheast2/art_build.tf -------------------------------------------------------------------------------- /terraform/ecr/art-id/id_apnortheast2/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ecr/art-id/id_apnortheast2/backend.tf -------------------------------------------------------------------------------- /terraform/ecr/art-id/id_apnortheast2/outputs.tf: -------------------------------------------------------------------------------- 1 | ../outputs.tf -------------------------------------------------------------------------------- /terraform/ecr/art-id/id_apnortheast2/provider.tf: -------------------------------------------------------------------------------- 1 | ../provider.tf -------------------------------------------------------------------------------- /terraform/ecr/art-id/id_apnortheast2/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ecr/art-id/id_apnortheast2/requirements.txt -------------------------------------------------------------------------------- /terraform/ecr/art-id/id_apnortheast2/terraform.tfvars: -------------------------------------------------------------------------------- 1 | aws_region = "ap-northeast-2" 2 | -------------------------------------------------------------------------------- /terraform/ecr/art-id/id_apnortheast2/variables.tf: -------------------------------------------------------------------------------- 1 | ../variables.tf -------------------------------------------------------------------------------- /terraform/ecr/art-id/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terraform/ecr/art-id/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ecr/art-id/provider.tf -------------------------------------------------------------------------------- /terraform/ecr/art-id/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ecr/art-id/variables.tf -------------------------------------------------------------------------------- /terraform/ecr/art-prod/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terraform/ecr/art-prod/prod_apnortheast2/Dockerfile-art-build-amazon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ecr/art-prod/prod_apnortheast2/Dockerfile-art-build-amazon -------------------------------------------------------------------------------- /terraform/ecr/art-prod/prod_apnortheast2/art_build.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ecr/art-prod/prod_apnortheast2/art_build.tf -------------------------------------------------------------------------------- /terraform/ecr/art-prod/prod_apnortheast2/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ecr/art-prod/prod_apnortheast2/backend.tf -------------------------------------------------------------------------------- /terraform/ecr/art-prod/prod_apnortheast2/outputs.tf: -------------------------------------------------------------------------------- 1 | ../outputs.tf -------------------------------------------------------------------------------- /terraform/ecr/art-prod/prod_apnortheast2/provider.tf: -------------------------------------------------------------------------------- 1 | ../provider.tf -------------------------------------------------------------------------------- /terraform/ecr/art-prod/prod_apnortheast2/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ecr/art-prod/prod_apnortheast2/requirements.txt -------------------------------------------------------------------------------- /terraform/ecr/art-prod/prod_apnortheast2/terraform.tfvars: -------------------------------------------------------------------------------- 1 | aws_region = "ap-northeast-2" 2 | -------------------------------------------------------------------------------- /terraform/ecr/art-prod/prod_apnortheast2/variables.tf: -------------------------------------------------------------------------------- 1 | ../variables.tf -------------------------------------------------------------------------------- /terraform/ecr/art-prod/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ecr/art-prod/provider.tf -------------------------------------------------------------------------------- /terraform/ecr/art-prod/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ecr/art-prod/variables.tf -------------------------------------------------------------------------------- /terraform/eks/_module/addons.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/_module/addons.tf -------------------------------------------------------------------------------- /terraform/eks/_module/aws_auth.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/_module/aws_auth.tf -------------------------------------------------------------------------------- /terraform/eks/_module/aws_loadbalancer_controller.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/_module/aws_loadbalancer_controller.tf -------------------------------------------------------------------------------- /terraform/eks/_module/aws_node_termination_handler_queue.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/_module/aws_node_termination_handler_queue.tf -------------------------------------------------------------------------------- /terraform/eks/_module/cluster.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/_module/cluster.tf -------------------------------------------------------------------------------- /terraform/eks/_module/external_dns.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/_module/external_dns.tf -------------------------------------------------------------------------------- /terraform/eks/_module/external_secrets.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/_module/external_secrets.tf -------------------------------------------------------------------------------- /terraform/eks/_module/fargate_profile.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/_module/fargate_profile.tf -------------------------------------------------------------------------------- /terraform/eks/_module/fis.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/_module/fis.tf -------------------------------------------------------------------------------- /terraform/eks/_module/karpenter.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/_module/karpenter.tf -------------------------------------------------------------------------------- /terraform/eks/_module/node_group.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/_module/node_group.tf -------------------------------------------------------------------------------- /terraform/eks/_module/openid_connect_provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/_module/openid_connect_provider.tf -------------------------------------------------------------------------------- /terraform/eks/_module/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/_module/outputs.tf -------------------------------------------------------------------------------- /terraform/eks/_module/service/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/_module/service/outputs.tf -------------------------------------------------------------------------------- /terraform/eks/_module/service/sg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/_module/service/sg.tf -------------------------------------------------------------------------------- /terraform/eks/_module/service/var_sg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/_module/service/var_sg.tf -------------------------------------------------------------------------------- /terraform/eks/_module/service/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/_module/service/variables.tf -------------------------------------------------------------------------------- /terraform/eks/_module/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/_module/variables.tf -------------------------------------------------------------------------------- /terraform/eks/_module/vpc_tags/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/_module/vpc_tags/main.tf -------------------------------------------------------------------------------- /terraform/eks/_module/vpc_tags/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/_module/vpc_tags/variables.tf -------------------------------------------------------------------------------- /terraform/eks/eksd_apnortheast2/eksdapne2-fvrr/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/eksd_apnortheast2/eksdapne2-fvrr/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/eks/eksd_apnortheast2/eksdapne2-fvrr/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/eksd_apnortheast2/eksdapne2-fvrr/backend.tf -------------------------------------------------------------------------------- /terraform/eks/eksd_apnortheast2/eksdapne2-fvrr/cluster.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/eksd_apnortheast2/eksdapne2-fvrr/cluster.tf -------------------------------------------------------------------------------- /terraform/eks/eksd_apnortheast2/eksdapne2-fvrr/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/eksd_apnortheast2/eksdapne2-fvrr/locals.tf -------------------------------------------------------------------------------- /terraform/eks/eksd_apnortheast2/eksdapne2-fvrr/netshoot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/eksd_apnortheast2/eksdapne2-fvrr/netshoot.yaml -------------------------------------------------------------------------------- /terraform/eks/eksd_apnortheast2/eksdapne2-fvrr/outputs.tf: -------------------------------------------------------------------------------- 1 | ../outputs.tf -------------------------------------------------------------------------------- /terraform/eks/eksd_apnortheast2/eksdapne2-fvrr/provider.tf: -------------------------------------------------------------------------------- 1 | ../provider.tf -------------------------------------------------------------------------------- /terraform/eks/eksd_apnortheast2/eksdapne2-fvrr/remote_state.tf: -------------------------------------------------------------------------------- 1 | ../remote_state.tf -------------------------------------------------------------------------------- /terraform/eks/eksd_apnortheast2/eksdapne2-fvrr/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/eksd_apnortheast2/eksdapne2-fvrr/terraform.tfvars -------------------------------------------------------------------------------- /terraform/eks/eksd_apnortheast2/eksdapne2-fvrr/var_global.tf: -------------------------------------------------------------------------------- 1 | ../../../variables/var_global.tf -------------------------------------------------------------------------------- /terraform/eks/eksd_apnortheast2/eksdapne2-fvrr/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/eksd_apnortheast2/eksdapne2-fvrr/variables.tf -------------------------------------------------------------------------------- /terraform/eks/eksd_apnortheast2/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/eksd_apnortheast2/outputs.tf -------------------------------------------------------------------------------- /terraform/eks/eksd_apnortheast2/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/eksd_apnortheast2/provider.tf -------------------------------------------------------------------------------- /terraform/eks/eksd_apnortheast2/remote_state.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/eksd_apnortheast2/remote_state.tf -------------------------------------------------------------------------------- /terraform/eks/eksd_useast1/eksduse1-tvjq/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/eksd_useast1/eksduse1-tvjq/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/eks/eksd_useast1/eksduse1-tvjq/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/eksd_useast1/eksduse1-tvjq/backend.tf -------------------------------------------------------------------------------- /terraform/eks/eksd_useast1/eksduse1-tvjq/cluster.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/eksd_useast1/eksduse1-tvjq/cluster.tf -------------------------------------------------------------------------------- /terraform/eks/eksd_useast1/eksduse1-tvjq/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/eksd_useast1/eksduse1-tvjq/locals.tf -------------------------------------------------------------------------------- /terraform/eks/eksd_useast1/eksduse1-tvjq/netshoot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/eksd_useast1/eksduse1-tvjq/netshoot.yaml -------------------------------------------------------------------------------- /terraform/eks/eksd_useast1/eksduse1-tvjq/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/eksd_useast1/eksduse1-tvjq/outputs.tf -------------------------------------------------------------------------------- /terraform/eks/eksd_useast1/eksduse1-tvjq/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/eksd_useast1/eksduse1-tvjq/provider.tf -------------------------------------------------------------------------------- /terraform/eks/eksd_useast1/eksduse1-tvjq/remote_state.tf: -------------------------------------------------------------------------------- 1 | ../remote_state.tf -------------------------------------------------------------------------------- /terraform/eks/eksd_useast1/eksduse1-tvjq/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/eksd_useast1/eksduse1-tvjq/terraform.tfvars -------------------------------------------------------------------------------- /terraform/eks/eksd_useast1/eksduse1-tvjq/var_global.tf: -------------------------------------------------------------------------------- 1 | ../../../variables/var_global.tf -------------------------------------------------------------------------------- /terraform/eks/eksd_useast1/eksduse1-tvjq/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/eksd_useast1/eksduse1-tvjq/variables.tf -------------------------------------------------------------------------------- /terraform/eks/eksd_useast1/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/eksd_useast1/outputs.tf -------------------------------------------------------------------------------- /terraform/eks/eksd_useast1/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/eksd_useast1/provider.tf -------------------------------------------------------------------------------- /terraform/eks/eksd_useast1/remote_state.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/eks/eksd_useast1/remote_state.tf -------------------------------------------------------------------------------- /terraform/examples/atlantis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/examples/atlantis/README.md -------------------------------------------------------------------------------- /terraform/examples/atlantis/atlantis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/examples/atlantis/atlantis.yaml -------------------------------------------------------------------------------- /terraform/examples/atlantis/repos.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/examples/atlantis/repos.yaml -------------------------------------------------------------------------------- /terraform/examples/atlantis/terraform/test/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/examples/atlantis/terraform/test/backend.tf -------------------------------------------------------------------------------- /terraform/examples/atlantis/terraform/test/init.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/examples/atlantis/terraform/test/init.tf -------------------------------------------------------------------------------- /terraform/iam/_modules/assume_role_policy/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/_modules/assume_role_policy/main.tf -------------------------------------------------------------------------------- /terraform/iam/_modules/assume_role_policy/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/_modules/assume_role_policy/output.tf -------------------------------------------------------------------------------- /terraform/iam/_modules/assume_role_policy/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/_modules/assume_role_policy/variables.tf -------------------------------------------------------------------------------- /terraform/iam/_modules/policy/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/_modules/policy/main.tf -------------------------------------------------------------------------------- /terraform/iam/_modules/policy/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/_modules/policy/output.tf -------------------------------------------------------------------------------- /terraform/iam/_modules/policy/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/_modules/policy/variables.tf -------------------------------------------------------------------------------- /terraform/iam/_modules/sops/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/_modules/sops/main.tf -------------------------------------------------------------------------------- /terraform/iam/_modules/sops/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/_modules/sops/output.tf -------------------------------------------------------------------------------- /terraform/iam/_modules/sops/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/_modules/sops/variables.tf -------------------------------------------------------------------------------- /terraform/iam/_modules/user/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/_modules/user/main.tf -------------------------------------------------------------------------------- /terraform/iam/_modules/user/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/_modules/user/output.tf -------------------------------------------------------------------------------- /terraform/iam/_modules/user/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/_modules/user/variables.tf -------------------------------------------------------------------------------- /terraform/iam/art-id/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-id/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/iam/art-id/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-id/README.md -------------------------------------------------------------------------------- /terraform/iam/art-id/_module_assume_policy/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-id/_module_assume_policy/main.tf -------------------------------------------------------------------------------- /terraform/iam/art-id/_module_assume_policy/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-id/_module_assume_policy/output.tf -------------------------------------------------------------------------------- /terraform/iam/art-id/_module_assume_policy/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-id/_module_assume_policy/variables.tf -------------------------------------------------------------------------------- /terraform/iam/art-id/admin.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-id/admin.tf -------------------------------------------------------------------------------- /terraform/iam/art-id/app-hello.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-id/app-hello.tf -------------------------------------------------------------------------------- /terraform/iam/art-id/app-hello2.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-id/app-hello2.tf -------------------------------------------------------------------------------- /terraform/iam/art-id/app-universal.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-id/app-universal.tf -------------------------------------------------------------------------------- /terraform/iam/art-id/assume_policy_prod.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-id/assume_policy_prod.tf -------------------------------------------------------------------------------- /terraform/iam/art-id/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-id/backend.tf -------------------------------------------------------------------------------- /terraform/iam/art-id/codebuild_deployment.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-id/codebuild_deployment.tf -------------------------------------------------------------------------------- /terraform/iam/art-id/deployment.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-id/deployment.tf -------------------------------------------------------------------------------- /terraform/iam/art-id/everyone_policy.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-id/everyone_policy.tf -------------------------------------------------------------------------------- /terraform/iam/art-id/group_devops_black.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-id/group_devops_black.tf -------------------------------------------------------------------------------- /terraform/iam/art-id/group_devops_white.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-id/group_devops_white.tf -------------------------------------------------------------------------------- /terraform/iam/art-id/jenkins_codebuild.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-id/jenkins_codebuild.tf -------------------------------------------------------------------------------- /terraform/iam/art-id/provider.tf: -------------------------------------------------------------------------------- 1 | provider "aws" { 2 | region = "us-east-1" # IAM is global 3 | } 4 | -------------------------------------------------------------------------------- /terraform/iam/art-id/remote_state.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-id/remote_state.tf -------------------------------------------------------------------------------- /terraform/iam/art-id/role_gitaction-idp.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-id/role_gitaction-idp.tf -------------------------------------------------------------------------------- /terraform/iam/art-id/role_gitaction.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-id/role_gitaction.tf -------------------------------------------------------------------------------- /terraform/iam/art-id/role_jenkins.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-id/role_jenkins.tf -------------------------------------------------------------------------------- /terraform/iam/art-id/role_sops_devart_id.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-id/role_sops_devart_id.tf -------------------------------------------------------------------------------- /terraform/iam/art-id/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-id/terraform.tfvars -------------------------------------------------------------------------------- /terraform/iam/art-id/user_asbubam.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-id/user_asbubam.tf -------------------------------------------------------------------------------- /terraform/iam/art-id/user_gslee.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-id/user_gslee.tf -------------------------------------------------------------------------------- /terraform/iam/art-id/user_jupiter_song.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-id/user_jupiter_song.tf -------------------------------------------------------------------------------- /terraform/iam/art-id/user_jwkang.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-id/user_jwkang.tf -------------------------------------------------------------------------------- /terraform/iam/art-id/user_samples.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-id/user_samples.tf -------------------------------------------------------------------------------- /terraform/iam/art-id/user_zerojin0312.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-id/user_zerojin0312.tf -------------------------------------------------------------------------------- /terraform/iam/art-id/var_global.tf: -------------------------------------------------------------------------------- 1 | ../../variables/var_global.tf -------------------------------------------------------------------------------- /terraform/iam/art-id/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-id/variables.tf -------------------------------------------------------------------------------- /terraform/iam/art-prod/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-prod/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/iam/art-prod/app-hello.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-prod/app-hello.tf -------------------------------------------------------------------------------- /terraform/iam/art-prod/app-universal.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-prod/app-universal.tf -------------------------------------------------------------------------------- /terraform/iam/art-prod/assume-art-prod-admin-with-art-id.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-prod/assume-art-prod-admin-with-art-id.tf -------------------------------------------------------------------------------- /terraform/iam/art-prod/assume-art-prod-readonly-with-art-id.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-prod/assume-art-prod-readonly-with-art-id.tf -------------------------------------------------------------------------------- /terraform/iam/art-prod/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-prod/backend.tf -------------------------------------------------------------------------------- /terraform/iam/art-prod/codebuild-deployment.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-prod/codebuild-deployment.tf -------------------------------------------------------------------------------- /terraform/iam/art-prod/deployment.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-prod/deployment.tf -------------------------------------------------------------------------------- /terraform/iam/art-prod/provider.tf: -------------------------------------------------------------------------------- 1 | ../provider.tf -------------------------------------------------------------------------------- /terraform/iam/art-prod/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/art-prod/terraform.tfvars -------------------------------------------------------------------------------- /terraform/iam/art-prod/variables.tf: -------------------------------------------------------------------------------- 1 | ../variables.tf -------------------------------------------------------------------------------- /terraform/iam/provider.tf: -------------------------------------------------------------------------------- 1 | provider "aws" { 2 | region = "us-east-1" 3 | } 4 | -------------------------------------------------------------------------------- /terraform/iam/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/iam/variables.tf -------------------------------------------------------------------------------- /terraform/init/art-id/init.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/init/art-id/init.tf -------------------------------------------------------------------------------- /terraform/init/art-prod/init.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/init/art-prod/init.tf -------------------------------------------------------------------------------- /terraform/init/devart-preprod/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/init/devart-preprod/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/init/devart-preprod/init.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/init/devart-preprod/init.tf -------------------------------------------------------------------------------- /terraform/kms/_modules/sops/sops_common.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/kms/_modules/sops/sops_common.tf -------------------------------------------------------------------------------- /terraform/kms/_modules/sops/sops_secure.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/kms/_modules/sops/sops_secure.tf -------------------------------------------------------------------------------- /terraform/kms/_modules/sops/var_global.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/kms/_modules/sops/var_global.tf -------------------------------------------------------------------------------- /terraform/kms/_modules/sops/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/kms/_modules/sops/variables.tf -------------------------------------------------------------------------------- /terraform/kms/art-id/id_apnortheast2/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/kms/art-id/id_apnortheast2/backend.tf -------------------------------------------------------------------------------- /terraform/kms/art-id/id_apnortheast2/deployment_common.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/kms/art-id/id_apnortheast2/deployment_common.tf -------------------------------------------------------------------------------- /terraform/kms/art-id/id_apnortheast2/outputs.tf: -------------------------------------------------------------------------------- 1 | ../outputs.tf -------------------------------------------------------------------------------- /terraform/kms/art-id/id_apnortheast2/provider.tf: -------------------------------------------------------------------------------- 1 | ../provider.tf -------------------------------------------------------------------------------- /terraform/kms/art-id/id_apnortheast2/terraform.tfvars: -------------------------------------------------------------------------------- 1 | aws_region = "ap-northeast-2" 2 | -------------------------------------------------------------------------------- /terraform/kms/art-id/id_apnortheast2/variables.tf: -------------------------------------------------------------------------------- 1 | ../variables.tf -------------------------------------------------------------------------------- /terraform/kms/art-id/id_apsoutheast1/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/kms/art-id/id_apsoutheast1/backend.tf -------------------------------------------------------------------------------- /terraform/kms/art-id/id_apsoutheast1/deployment_common.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/kms/art-id/id_apsoutheast1/deployment_common.tf -------------------------------------------------------------------------------- /terraform/kms/art-id/id_apsoutheast1/outputs.tf: -------------------------------------------------------------------------------- 1 | ../outputs.tf -------------------------------------------------------------------------------- /terraform/kms/art-id/id_apsoutheast1/provider.tf: -------------------------------------------------------------------------------- 1 | ../provider.tf -------------------------------------------------------------------------------- /terraform/kms/art-id/id_apsoutheast1/terraform.tfvars: -------------------------------------------------------------------------------- 1 | aws_region = "ap-southeast-1" 2 | -------------------------------------------------------------------------------- /terraform/kms/art-id/id_apsoutheast1/variables.tf: -------------------------------------------------------------------------------- 1 | ../variables.tf -------------------------------------------------------------------------------- /terraform/kms/art-id/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/kms/art-id/outputs.tf -------------------------------------------------------------------------------- /terraform/kms/art-id/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/kms/art-id/provider.tf -------------------------------------------------------------------------------- /terraform/kms/art-id/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/kms/art-id/variables.tf -------------------------------------------------------------------------------- /terraform/kms/art-prod/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/kms/art-prod/outputs.tf -------------------------------------------------------------------------------- /terraform/kms/art-prod/prod_apnortheast2/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/kms/art-prod/prod_apnortheast2/backend.tf -------------------------------------------------------------------------------- /terraform/kms/art-prod/prod_apnortheast2/deployment_common.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/kms/art-prod/prod_apnortheast2/deployment_common.tf -------------------------------------------------------------------------------- /terraform/kms/art-prod/prod_apnortheast2/outputs.tf: -------------------------------------------------------------------------------- 1 | ../outputs.tf -------------------------------------------------------------------------------- /terraform/kms/art-prod/prod_apnortheast2/provider.tf: -------------------------------------------------------------------------------- 1 | ../provider.tf -------------------------------------------------------------------------------- /terraform/kms/art-prod/prod_apnortheast2/terraform.tfvars: -------------------------------------------------------------------------------- 1 | aws_region = "ap-northeast-2" 2 | -------------------------------------------------------------------------------- /terraform/kms/art-prod/prod_apnortheast2/variables.tf: -------------------------------------------------------------------------------- 1 | ../variables.tf -------------------------------------------------------------------------------- /terraform/kms/art-prod/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/kms/art-prod/provider.tf -------------------------------------------------------------------------------- /terraform/kms/art-prod/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/kms/art-prod/variables.tf -------------------------------------------------------------------------------- /terraform/kms/devart-id/ap-northeast-2/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/kms/devart-id/ap-northeast-2/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/kms/devart-id/ap-northeast-2/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/kms/devart-id/ap-northeast-2/backend.tf -------------------------------------------------------------------------------- /terraform/kms/devart-id/ap-northeast-2/deployment_common.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/kms/devart-id/ap-northeast-2/deployment_common.tf -------------------------------------------------------------------------------- /terraform/kms/devart-id/ap-northeast-2/outputs.tf: -------------------------------------------------------------------------------- 1 | ../outputs.tf -------------------------------------------------------------------------------- /terraform/kms/devart-id/ap-northeast-2/provider.tf: -------------------------------------------------------------------------------- 1 | ../provider.tf -------------------------------------------------------------------------------- /terraform/kms/devart-id/ap-northeast-2/remote_state.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/kms/devart-id/ap-northeast-2/remote_state.tf -------------------------------------------------------------------------------- /terraform/kms/devart-id/ap-northeast-2/sops_devart_id.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/kms/devart-id/ap-northeast-2/sops_devart_id.tf -------------------------------------------------------------------------------- /terraform/kms/devart-id/ap-northeast-2/terraform.tfvars: -------------------------------------------------------------------------------- 1 | aws_region = "ap-northeast-2" 2 | -------------------------------------------------------------------------------- /terraform/kms/devart-id/ap-northeast-2/var_global.tf: -------------------------------------------------------------------------------- 1 | ../../../variables/var_global.tf -------------------------------------------------------------------------------- /terraform/kms/devart-id/ap-northeast-2/variables.tf: -------------------------------------------------------------------------------- 1 | ../variables.tf -------------------------------------------------------------------------------- /terraform/kms/devart-id/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/kms/devart-id/outputs.tf -------------------------------------------------------------------------------- /terraform/kms/devart-id/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/kms/devart-id/provider.tf -------------------------------------------------------------------------------- /terraform/kms/devart-id/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/kms/devart-id/variables.tf -------------------------------------------------------------------------------- /terraform/platform/atlantis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/platform/atlantis/README.md -------------------------------------------------------------------------------- /terraform/platform/atlantis/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/platform/atlantis/backend.tf -------------------------------------------------------------------------------- /terraform/platform/atlantis/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/platform/atlantis/main.tf -------------------------------------------------------------------------------- /terraform/platform/atlantis/modules/github-repository-webhook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/platform/atlantis/modules/github-repository-webhook/README.md -------------------------------------------------------------------------------- /terraform/platform/atlantis/modules/github-repository-webhook/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/platform/atlantis/modules/github-repository-webhook/main.tf -------------------------------------------------------------------------------- /terraform/platform/atlantis/modules/github-repository-webhook/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/platform/atlantis/modules/github-repository-webhook/outputs.tf -------------------------------------------------------------------------------- /terraform/platform/atlantis/modules/github-repository-webhook/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/platform/atlantis/modules/github-repository-webhook/variables.tf -------------------------------------------------------------------------------- /terraform/platform/atlantis/modules/gitlab-repository-webhook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/platform/atlantis/modules/gitlab-repository-webhook/README.md -------------------------------------------------------------------------------- /terraform/platform/atlantis/modules/gitlab-repository-webhook/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/platform/atlantis/modules/gitlab-repository-webhook/main.tf -------------------------------------------------------------------------------- /terraform/platform/atlantis/modules/gitlab-repository-webhook/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/platform/atlantis/modules/gitlab-repository-webhook/outputs.tf -------------------------------------------------------------------------------- /terraform/platform/atlantis/modules/gitlab-repository-webhook/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/platform/atlantis/modules/gitlab-repository-webhook/variables.tf -------------------------------------------------------------------------------- /terraform/platform/atlantis/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/platform/atlantis/outputs.tf -------------------------------------------------------------------------------- /terraform/platform/atlantis/provider.tf: -------------------------------------------------------------------------------- 1 | provider "aws" { 2 | region = "ap-northeast-2" 3 | 4 | } 5 | -------------------------------------------------------------------------------- /terraform/platform/atlantis/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/platform/atlantis/terraform.tfvars -------------------------------------------------------------------------------- /terraform/platform/atlantis/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/platform/atlantis/variables.tf -------------------------------------------------------------------------------- /terraform/platform/jenkins/_modules/jenkins/efs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/platform/jenkins/_modules/jenkins/efs.tf -------------------------------------------------------------------------------- /terraform/platform/jenkins/_modules/jenkins/jenkins.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/platform/jenkins/_modules/jenkins/jenkins.tf -------------------------------------------------------------------------------- /terraform/platform/jenkins/_modules/jenkins/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/platform/jenkins/_modules/jenkins/variables.tf -------------------------------------------------------------------------------- /terraform/platform/jenkins/eksd_apnortheast2/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/platform/jenkins/eksd_apnortheast2/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/platform/jenkins/eksd_apnortheast2/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/platform/jenkins/eksd_apnortheast2/backend.tf -------------------------------------------------------------------------------- /terraform/platform/jenkins/eksd_apnortheast2/jenkins.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/platform/jenkins/eksd_apnortheast2/jenkins.tf -------------------------------------------------------------------------------- /terraform/platform/jenkins/eksd_apnortheast2/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/platform/jenkins/eksd_apnortheast2/provider.tf -------------------------------------------------------------------------------- /terraform/platform/jenkins/eksd_apnortheast2/remote_state.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/platform/jenkins/eksd_apnortheast2/remote_state.tf -------------------------------------------------------------------------------- /terraform/platform/jenkins/eksd_apnortheast2/var_global.tf: -------------------------------------------------------------------------------- 1 | ../../../variables/var_global.tf -------------------------------------------------------------------------------- /terraform/platform/jenkins/eksd_apnortheast2/var_route53.tf: -------------------------------------------------------------------------------- 1 | ../../../variables/var_route53.tf -------------------------------------------------------------------------------- /terraform/platform/jenkins/eksd_apnortheast2/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/platform/jenkins/eksd_apnortheast2/variables.tf -------------------------------------------------------------------------------- /terraform/platform/jenkins/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/platform/jenkins/provider.tf -------------------------------------------------------------------------------- /terraform/platform/jenkins/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/platform/jenkins/variables.tf -------------------------------------------------------------------------------- /terraform/route53/art-id/devops-art-factory.com/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/route53/art-id/devops-art-factory.com/backend.tf -------------------------------------------------------------------------------- /terraform/route53/art-id/devops-art-factory.com/provider.tf: -------------------------------------------------------------------------------- 1 | ../provider.tf -------------------------------------------------------------------------------- /terraform/route53/art-id/devops-art-factory.com/route53.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/route53/art-id/devops-art-factory.com/route53.tf -------------------------------------------------------------------------------- /terraform/route53/art-id/devops-art-factory.com/var_global.tf: -------------------------------------------------------------------------------- 1 | ../../../variables/var_global.tf -------------------------------------------------------------------------------- /terraform/route53/art-id/devops-art-factory.com/variables.tf: -------------------------------------------------------------------------------- 1 | ../variables.tf -------------------------------------------------------------------------------- /terraform/route53/art-id/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/route53/art-id/provider.tf -------------------------------------------------------------------------------- /terraform/route53/art-id/remote_state.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/route53/art-id/remote_state.tf -------------------------------------------------------------------------------- /terraform/route53/art-id/variables.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terraform/route53/art-prod/prod.devops-art-factory.com/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/route53/art-prod/prod.devops-art-factory.com/backend.tf -------------------------------------------------------------------------------- /terraform/route53/art-prod/prod.devops-art-factory.com/provider.tf: -------------------------------------------------------------------------------- 1 | ../provider.tf -------------------------------------------------------------------------------- /terraform/route53/art-prod/prod.devops-art-factory.com/route53.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/route53/art-prod/prod.devops-art-factory.com/route53.tf -------------------------------------------------------------------------------- /terraform/route53/art-prod/prod.devops-art-factory.com/variables.tf: -------------------------------------------------------------------------------- 1 | ../variables.tf -------------------------------------------------------------------------------- /terraform/route53/art-prod/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/route53/art-prod/provider.tf -------------------------------------------------------------------------------- /terraform/route53/art-prod/remote_state.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/route53/art-prod/remote_state.tf -------------------------------------------------------------------------------- /terraform/route53/art-prod/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/route53/art-prod/variables.tf -------------------------------------------------------------------------------- /terraform/s3/art-id/id_apnortheast2/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/s3/art-id/id_apnortheast2/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/s3/art-id/id_apnortheast2/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/s3/art-id/id_apnortheast2/backend.tf -------------------------------------------------------------------------------- /terraform/s3/art-id/id_apnortheast2/contents-devart_with_domain.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/s3/art-id/id_apnortheast2/contents-devart_with_domain.tf -------------------------------------------------------------------------------- /terraform/s3/art-id/id_apnortheast2/contents-devart_without_domain.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/s3/art-id/id_apnortheast2/contents-devart_without_domain.tf -------------------------------------------------------------------------------- /terraform/s3/art-id/id_apnortheast2/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terraform/s3/art-id/id_apnortheast2/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/s3/art-id/id_apnortheast2/provider.tf -------------------------------------------------------------------------------- /terraform/s3/art-id/id_apnortheast2/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/s3/art-id/id_apnortheast2/terraform.tfvars -------------------------------------------------------------------------------- /terraform/s3/art-id/id_apnortheast2/var_route53.tf: -------------------------------------------------------------------------------- 1 | ../../../variables/var_route53.tf -------------------------------------------------------------------------------- /terraform/s3/art-id/id_apnortheast2/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/s3/art-id/id_apnortheast2/variables.tf -------------------------------------------------------------------------------- /terraform/s3/dayone-prod/prod_apnortheast2/application-log.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/s3/dayone-prod/prod_apnortheast2/application-log.tf -------------------------------------------------------------------------------- /terraform/s3/dayone-prod/prod_apnortheast2/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/s3/dayone-prod/prod_apnortheast2/backend.tf -------------------------------------------------------------------------------- /terraform/s3/dayone-prod/prod_apnortheast2/contents-dayone-without-domain.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/s3/dayone-prod/prod_apnortheast2/contents-dayone-without-domain.tf -------------------------------------------------------------------------------- /terraform/s3/dayone-prod/prod_apnortheast2/contents-dayone.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/s3/dayone-prod/prod_apnortheast2/contents-dayone.tf -------------------------------------------------------------------------------- /terraform/s3/dayone-prod/prod_apnortheast2/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/s3/dayone-prod/prod_apnortheast2/outputs.tf -------------------------------------------------------------------------------- /terraform/s3/dayone-prod/prod_apnortheast2/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/s3/dayone-prod/prod_apnortheast2/provider.tf -------------------------------------------------------------------------------- /terraform/s3/dayone-prod/prod_apnortheast2/session-manager-logs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/s3/dayone-prod/prod_apnortheast2/session-manager-logs.tf -------------------------------------------------------------------------------- /terraform/s3/dayone-prod/prod_apnortheast2/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/s3/dayone-prod/prod_apnortheast2/terraform.tfvars -------------------------------------------------------------------------------- /terraform/s3/dayone-prod/prod_apnortheast2/var_route53.tf: -------------------------------------------------------------------------------- 1 | ../../../variables/var_route53.tf -------------------------------------------------------------------------------- /terraform/s3/dayone-prod/prod_apnortheast2/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/s3/dayone-prod/prod_apnortheast2/variables.tf -------------------------------------------------------------------------------- /terraform/securitygroup/devart-id/eksd_apnortheast2/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/securitygroup/devart-id/eksd_apnortheast2/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/securitygroup/devart-id/eksd_apnortheast2/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/securitygroup/devart-id/eksd_apnortheast2/backend.tf -------------------------------------------------------------------------------- /terraform/securitygroup/devart-id/eksd_apnortheast2/codebuild_deployment.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/securitygroup/devart-id/eksd_apnortheast2/codebuild_deployment.tf -------------------------------------------------------------------------------- /terraform/securitygroup/devart-id/eksd_apnortheast2/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/securitygroup/devart-id/eksd_apnortheast2/output.tf -------------------------------------------------------------------------------- /terraform/securitygroup/devart-id/eksd_apnortheast2/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/securitygroup/devart-id/eksd_apnortheast2/provider.tf -------------------------------------------------------------------------------- /terraform/securitygroup/devart-id/eksd_apnortheast2/remote_state.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/securitygroup/devart-id/eksd_apnortheast2/remote_state.tf -------------------------------------------------------------------------------- /terraform/securitygroup/devart-id/eksd_apnortheast2/terraform.tfvars: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terraform/securitygroup/devart-id/eksd_apnortheast2/var_global.tf: -------------------------------------------------------------------------------- 1 | ../../../variables/var_global.tf -------------------------------------------------------------------------------- /terraform/securitygroup/devart-id/eksd_apnortheast2/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/securitygroup/devart-id/eksd_apnortheast2/variables.tf -------------------------------------------------------------------------------- /terraform/securitygroup/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/securitygroup/provider.tf -------------------------------------------------------------------------------- /terraform/services/hello/_module/hello/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/hello/_module/hello/outputs.tf -------------------------------------------------------------------------------- /terraform/services/hello/_module/hello/service.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/hello/_module/hello/service.tf -------------------------------------------------------------------------------- /terraform/services/hello/_module/hello/var_lb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/hello/_module/hello/var_lb.tf -------------------------------------------------------------------------------- /terraform/services/hello/_module/hello/var_sg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/hello/_module/hello/var_sg.tf -------------------------------------------------------------------------------- /terraform/services/hello/_module/hello/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/hello/_module/hello/variables.tf -------------------------------------------------------------------------------- /terraform/services/hello/artp_apnortheast2/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/hello/artp_apnortheast2/backend.tf -------------------------------------------------------------------------------- /terraform/services/hello/artp_apnortheast2/output.tf: -------------------------------------------------------------------------------- 1 | ../output.tf -------------------------------------------------------------------------------- /terraform/services/hello/artp_apnortheast2/provider.tf: -------------------------------------------------------------------------------- 1 | ../provider.tf -------------------------------------------------------------------------------- /terraform/services/hello/artp_apnortheast2/remote_state.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/hello/artp_apnortheast2/remote_state.tf -------------------------------------------------------------------------------- /terraform/services/hello/artp_apnortheast2/service.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/hello/artp_apnortheast2/service.tf -------------------------------------------------------------------------------- /terraform/services/hello/artp_apnortheast2/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/hello/artp_apnortheast2/terraform.tfvars -------------------------------------------------------------------------------- /terraform/services/hello/artp_apnortheast2/var_global.tf: -------------------------------------------------------------------------------- 1 | ../../../variables/var_global.tf -------------------------------------------------------------------------------- /terraform/services/hello/artp_apnortheast2/var_lb.tf: -------------------------------------------------------------------------------- 1 | ../variables/var_lb.tf -------------------------------------------------------------------------------- /terraform/services/hello/artp_apnortheast2/var_route53.tf: -------------------------------------------------------------------------------- 1 | ../../../variables/var_route53.tf -------------------------------------------------------------------------------- /terraform/services/hello/artp_apnortheast2/var_sg.tf: -------------------------------------------------------------------------------- 1 | ../variables/var_sg.tf -------------------------------------------------------------------------------- /terraform/services/hello/artp_apnortheast2/variables.tf: -------------------------------------------------------------------------------- 1 | ../variables.tf -------------------------------------------------------------------------------- /terraform/services/hello/devartd_apnortheast2/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/hello/devartd_apnortheast2/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/services/hello/devartd_apnortheast2/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/hello/devartd_apnortheast2/backend.tf -------------------------------------------------------------------------------- /terraform/services/hello/devartd_apnortheast2/output.tf: -------------------------------------------------------------------------------- 1 | ../output.tf -------------------------------------------------------------------------------- /terraform/services/hello/devartd_apnortheast2/provider.tf: -------------------------------------------------------------------------------- 1 | ../provider.tf -------------------------------------------------------------------------------- /terraform/services/hello/devartd_apnortheast2/remote_state.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/hello/devartd_apnortheast2/remote_state.tf -------------------------------------------------------------------------------- /terraform/services/hello/devartd_apnortheast2/service.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/hello/devartd_apnortheast2/service.tf -------------------------------------------------------------------------------- /terraform/services/hello/devartd_apnortheast2/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/hello/devartd_apnortheast2/terraform.tfvars -------------------------------------------------------------------------------- /terraform/services/hello/devartd_apnortheast2/var_global.tf: -------------------------------------------------------------------------------- 1 | ../../../variables/var_global.tf -------------------------------------------------------------------------------- /terraform/services/hello/devartd_apnortheast2/var_lb.tf: -------------------------------------------------------------------------------- 1 | ../variables/var_lb.tf -------------------------------------------------------------------------------- /terraform/services/hello/devartd_apnortheast2/var_route53.tf: -------------------------------------------------------------------------------- 1 | ../../../variables/var_route53.tf -------------------------------------------------------------------------------- /terraform/services/hello/devartd_apnortheast2/var_sg.tf: -------------------------------------------------------------------------------- 1 | ../variables/var_sg.tf -------------------------------------------------------------------------------- /terraform/services/hello/devartd_apnortheast2/variables.tf: -------------------------------------------------------------------------------- 1 | ../variables.tf -------------------------------------------------------------------------------- /terraform/services/hello/devarts_apnortheast2/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/hello/devarts_apnortheast2/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/services/hello/devarts_apnortheast2/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/hello/devarts_apnortheast2/backend.tf -------------------------------------------------------------------------------- /terraform/services/hello/devarts_apnortheast2/output.tf: -------------------------------------------------------------------------------- 1 | ../output.tf -------------------------------------------------------------------------------- /terraform/services/hello/devarts_apnortheast2/provider.tf: -------------------------------------------------------------------------------- 1 | ../provider.tf -------------------------------------------------------------------------------- /terraform/services/hello/devarts_apnortheast2/remote_state.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/hello/devarts_apnortheast2/remote_state.tf -------------------------------------------------------------------------------- /terraform/services/hello/devarts_apnortheast2/service.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/hello/devarts_apnortheast2/service.tf -------------------------------------------------------------------------------- /terraform/services/hello/devarts_apnortheast2/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/hello/devarts_apnortheast2/terraform.tfvars -------------------------------------------------------------------------------- /terraform/services/hello/devarts_apnortheast2/var_global.tf: -------------------------------------------------------------------------------- 1 | ../../../variables/var_global.tf -------------------------------------------------------------------------------- /terraform/services/hello/devarts_apnortheast2/var_lb.tf: -------------------------------------------------------------------------------- 1 | ../variables/var_lb.tf -------------------------------------------------------------------------------- /terraform/services/hello/devarts_apnortheast2/var_route53.tf: -------------------------------------------------------------------------------- 1 | ../../../variables/var_route53.tf -------------------------------------------------------------------------------- /terraform/services/hello/devarts_apnortheast2/var_sg.tf: -------------------------------------------------------------------------------- 1 | ../variables/var_sg.tf -------------------------------------------------------------------------------- /terraform/services/hello/devarts_apnortheast2/variables.tf: -------------------------------------------------------------------------------- 1 | ../variables.tf -------------------------------------------------------------------------------- /terraform/services/hello/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/hello/output.tf -------------------------------------------------------------------------------- /terraform/services/hello/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/hello/provider.tf -------------------------------------------------------------------------------- /terraform/services/hello/variables.tf: -------------------------------------------------------------------------------- 1 | variable "aws_region" { 2 | default = "ap-northeast-2" 3 | } 4 | 5 | -------------------------------------------------------------------------------- /terraform/services/hello/variables/var_lb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/hello/variables/var_lb.tf -------------------------------------------------------------------------------- /terraform/services/hello/variables/var_sg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/hello/variables/var_sg.tf -------------------------------------------------------------------------------- /terraform/services/helloapi/_module/helloapi/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/helloapi/_module/helloapi/outputs.tf -------------------------------------------------------------------------------- /terraform/services/helloapi/_module/helloapi/service.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/helloapi/_module/helloapi/service.tf -------------------------------------------------------------------------------- /terraform/services/helloapi/_module/helloapi/var_lb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/helloapi/_module/helloapi/var_lb.tf -------------------------------------------------------------------------------- /terraform/services/helloapi/_module/helloapi/var_sg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/helloapi/_module/helloapi/var_sg.tf -------------------------------------------------------------------------------- /terraform/services/helloapi/_module/helloapi/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/helloapi/_module/helloapi/variables.tf -------------------------------------------------------------------------------- /terraform/services/helloapi/devartd_apnortheast2/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/helloapi/devartd_apnortheast2/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/services/helloapi/devartd_apnortheast2/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/helloapi/devartd_apnortheast2/backend.tf -------------------------------------------------------------------------------- /terraform/services/helloapi/devartd_apnortheast2/output.tf: -------------------------------------------------------------------------------- 1 | ../output.tf -------------------------------------------------------------------------------- /terraform/services/helloapi/devartd_apnortheast2/provider.tf: -------------------------------------------------------------------------------- 1 | ../provider.tf -------------------------------------------------------------------------------- /terraform/services/helloapi/devartd_apnortheast2/remote_state.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/helloapi/devartd_apnortheast2/remote_state.tf -------------------------------------------------------------------------------- /terraform/services/helloapi/devartd_apnortheast2/service.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/helloapi/devartd_apnortheast2/service.tf -------------------------------------------------------------------------------- /terraform/services/helloapi/devartd_apnortheast2/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/helloapi/devartd_apnortheast2/terraform.tfvars -------------------------------------------------------------------------------- /terraform/services/helloapi/devartd_apnortheast2/var_global.tf: -------------------------------------------------------------------------------- 1 | ../../../variables/var_global.tf -------------------------------------------------------------------------------- /terraform/services/helloapi/devartd_apnortheast2/var_lb.tf: -------------------------------------------------------------------------------- 1 | ../variables/var_lb.tf -------------------------------------------------------------------------------- /terraform/services/helloapi/devartd_apnortheast2/var_route53.tf: -------------------------------------------------------------------------------- 1 | ../../../variables/var_route53.tf -------------------------------------------------------------------------------- /terraform/services/helloapi/devartd_apnortheast2/var_sg.tf: -------------------------------------------------------------------------------- 1 | ../variables/var_sg.tf -------------------------------------------------------------------------------- /terraform/services/helloapi/devartd_apnortheast2/variables.tf: -------------------------------------------------------------------------------- 1 | ../variables.tf -------------------------------------------------------------------------------- /terraform/services/helloapi/devarts_apnortheast2/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/helloapi/devarts_apnortheast2/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/services/helloapi/devarts_apnortheast2/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/helloapi/devarts_apnortheast2/backend.tf -------------------------------------------------------------------------------- /terraform/services/helloapi/devarts_apnortheast2/output.tf: -------------------------------------------------------------------------------- 1 | ../output.tf -------------------------------------------------------------------------------- /terraform/services/helloapi/devarts_apnortheast2/provider.tf: -------------------------------------------------------------------------------- 1 | ../provider.tf -------------------------------------------------------------------------------- /terraform/services/helloapi/devarts_apnortheast2/remote_state.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/helloapi/devarts_apnortheast2/remote_state.tf -------------------------------------------------------------------------------- /terraform/services/helloapi/devarts_apnortheast2/service.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/helloapi/devarts_apnortheast2/service.tf -------------------------------------------------------------------------------- /terraform/services/helloapi/devarts_apnortheast2/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/helloapi/devarts_apnortheast2/terraform.tfvars -------------------------------------------------------------------------------- /terraform/services/helloapi/devarts_apnortheast2/var_global.tf: -------------------------------------------------------------------------------- 1 | ../../../variables/var_global.tf -------------------------------------------------------------------------------- /terraform/services/helloapi/devarts_apnortheast2/var_lb.tf: -------------------------------------------------------------------------------- 1 | ../variables/var_lb.tf -------------------------------------------------------------------------------- /terraform/services/helloapi/devarts_apnortheast2/var_route53.tf: -------------------------------------------------------------------------------- 1 | ../../../variables/var_route53.tf -------------------------------------------------------------------------------- /terraform/services/helloapi/devarts_apnortheast2/var_sg.tf: -------------------------------------------------------------------------------- 1 | ../variables/var_sg.tf -------------------------------------------------------------------------------- /terraform/services/helloapi/devarts_apnortheast2/variables.tf: -------------------------------------------------------------------------------- 1 | ../variables.tf -------------------------------------------------------------------------------- /terraform/services/helloapi/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/helloapi/output.tf -------------------------------------------------------------------------------- /terraform/services/helloapi/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/helloapi/provider.tf -------------------------------------------------------------------------------- /terraform/services/helloapi/variables.tf: -------------------------------------------------------------------------------- 1 | variable "aws_region" { 2 | default = "ap-northeast-2" 3 | } 4 | 5 | -------------------------------------------------------------------------------- /terraform/services/helloapi/variables/var_lb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/helloapi/variables/var_lb.tf -------------------------------------------------------------------------------- /terraform/services/helloapi/variables/var_sg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/helloapi/variables/var_sg.tf -------------------------------------------------------------------------------- /terraform/services/helloworker/_module/helloworker/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/helloworker/_module/helloworker/outputs.tf -------------------------------------------------------------------------------- /terraform/services/helloworker/_module/helloworker/service.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/helloworker/_module/helloworker/service.tf -------------------------------------------------------------------------------- /terraform/services/helloworker/_module/helloworker/var_lb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/helloworker/_module/helloworker/var_lb.tf -------------------------------------------------------------------------------- /terraform/services/helloworker/_module/helloworker/var_sg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/helloworker/_module/helloworker/var_sg.tf -------------------------------------------------------------------------------- /terraform/services/helloworker/_module/helloworker/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/helloworker/_module/helloworker/variables.tf -------------------------------------------------------------------------------- /terraform/services/helloworker/devartd_apnortheast2/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/helloworker/devartd_apnortheast2/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/services/helloworker/devartd_apnortheast2/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/helloworker/devartd_apnortheast2/backend.tf -------------------------------------------------------------------------------- /terraform/services/helloworker/devartd_apnortheast2/output.tf: -------------------------------------------------------------------------------- 1 | ../output.tf -------------------------------------------------------------------------------- /terraform/services/helloworker/devartd_apnortheast2/provider.tf: -------------------------------------------------------------------------------- 1 | ../provider.tf -------------------------------------------------------------------------------- /terraform/services/helloworker/devartd_apnortheast2/remote_state.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/helloworker/devartd_apnortheast2/remote_state.tf -------------------------------------------------------------------------------- /terraform/services/helloworker/devartd_apnortheast2/service.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/helloworker/devartd_apnortheast2/service.tf -------------------------------------------------------------------------------- /terraform/services/helloworker/devartd_apnortheast2/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/helloworker/devartd_apnortheast2/terraform.tfvars -------------------------------------------------------------------------------- /terraform/services/helloworker/devartd_apnortheast2/var_global.tf: -------------------------------------------------------------------------------- 1 | ../../../variables/var_global.tf -------------------------------------------------------------------------------- /terraform/services/helloworker/devartd_apnortheast2/var_lb.tf: -------------------------------------------------------------------------------- 1 | ../variables/var_lb.tf -------------------------------------------------------------------------------- /terraform/services/helloworker/devartd_apnortheast2/var_route53.tf: -------------------------------------------------------------------------------- 1 | ../../../variables/var_route53.tf -------------------------------------------------------------------------------- /terraform/services/helloworker/devartd_apnortheast2/var_sg.tf: -------------------------------------------------------------------------------- 1 | ../variables/var_sg.tf -------------------------------------------------------------------------------- /terraform/services/helloworker/devartd_apnortheast2/variables.tf: -------------------------------------------------------------------------------- 1 | ../variables.tf -------------------------------------------------------------------------------- /terraform/services/helloworker/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/helloworker/output.tf -------------------------------------------------------------------------------- /terraform/services/helloworker/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/helloworker/provider.tf -------------------------------------------------------------------------------- /terraform/services/helloworker/variables.tf: -------------------------------------------------------------------------------- 1 | variable "aws_region" { 2 | default = "ap-northeast-2" 3 | } 4 | 5 | -------------------------------------------------------------------------------- /terraform/services/helloworker/variables/var_lb.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/helloworker/variables/var_lb.tf -------------------------------------------------------------------------------- /terraform/services/helloworker/variables/var_sg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/services/helloworker/variables/var_sg.tf -------------------------------------------------------------------------------- /terraform/ssm/art-id/_modules/aws_ssm_parameter/ssm.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ssm/art-id/_modules/aws_ssm_parameter/ssm.tf -------------------------------------------------------------------------------- /terraform/ssm/art-id/_modules/aws_ssm_parameter/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ssm/art-id/_modules/aws_ssm_parameter/variables.tf -------------------------------------------------------------------------------- /terraform/ssm/art-id/id_apnortheast2/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ssm/art-id/id_apnortheast2/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/ssm/art-id/id_apnortheast2/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ssm/art-id/id_apnortheast2/backend.tf -------------------------------------------------------------------------------- /terraform/ssm/art-id/id_apnortheast2/codebuild_github_token.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ssm/art-id/id_apnortheast2/codebuild_github_token.tf -------------------------------------------------------------------------------- /terraform/ssm/art-id/id_apnortheast2/data.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ssm/art-id/id_apnortheast2/data.tf -------------------------------------------------------------------------------- /terraform/ssm/art-id/id_apnortheast2/github_token.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ssm/art-id/id_apnortheast2/github_token.tf -------------------------------------------------------------------------------- /terraform/ssm/art-id/id_apnortheast2/jenkins_client_id.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ssm/art-id/id_apnortheast2/jenkins_client_id.tf -------------------------------------------------------------------------------- /terraform/ssm/art-id/id_apnortheast2/jenkins_client_secret.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ssm/art-id/id_apnortheast2/jenkins_client_secret.tf -------------------------------------------------------------------------------- /terraform/ssm/art-id/id_apnortheast2/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ssm/art-id/id_apnortheast2/locals.tf -------------------------------------------------------------------------------- /terraform/ssm/art-id/id_apnortheast2/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ssm/art-id/id_apnortheast2/provider.tf -------------------------------------------------------------------------------- /terraform/ssm/art-id/id_apnortheast2/remote_state.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ssm/art-id/id_apnortheast2/remote_state.tf -------------------------------------------------------------------------------- /terraform/ssm/art-id/id_apnortheast2/secrets.sops.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ssm/art-id/id_apnortheast2/secrets.sops.yaml -------------------------------------------------------------------------------- /terraform/ssm/art-id/id_apnortheast2/terraform.tfvars: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /terraform/ssm/art-id/id_apnortheast2/var_global.tf: -------------------------------------------------------------------------------- 1 | ../../../variables/var_global.tf -------------------------------------------------------------------------------- /terraform/ssm/art-id/id_apnortheast2/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/ssm/art-id/id_apnortheast2/variables.tf -------------------------------------------------------------------------------- /terraform/variables/var_global.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/variables/var_global.tf -------------------------------------------------------------------------------- /terraform/variables/var_route53.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/variables/var_route53.tf -------------------------------------------------------------------------------- /terraform/vpc/devartd_apnortheast2/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/devartd_apnortheast2/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/vpc/devartd_apnortheast2/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/devartd_apnortheast2/backend.tf -------------------------------------------------------------------------------- /terraform/vpc/devartd_apnortheast2/bastion_sg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/devartd_apnortheast2/bastion_sg.tf -------------------------------------------------------------------------------- /terraform/vpc/devartd_apnortheast2/default_sg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/devartd_apnortheast2/default_sg.tf -------------------------------------------------------------------------------- /terraform/vpc/devartd_apnortheast2/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/devartd_apnortheast2/outputs.tf -------------------------------------------------------------------------------- /terraform/vpc/devartd_apnortheast2/peering.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/devartd_apnortheast2/peering.tf -------------------------------------------------------------------------------- /terraform/vpc/devartd_apnortheast2/peering_routes.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/devartd_apnortheast2/peering_routes.tf -------------------------------------------------------------------------------- /terraform/vpc/devartd_apnortheast2/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/devartd_apnortheast2/provider.tf -------------------------------------------------------------------------------- /terraform/vpc/devartd_apnortheast2/route53.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/devartd_apnortheast2/route53.tf -------------------------------------------------------------------------------- /terraform/vpc/devartd_apnortheast2/route_table_routes.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/devartd_apnortheast2/route_table_routes.tf -------------------------------------------------------------------------------- /terraform/vpc/devartd_apnortheast2/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/devartd_apnortheast2/terraform.tfvars -------------------------------------------------------------------------------- /terraform/vpc/devartd_apnortheast2/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/devartd_apnortheast2/variables.tf -------------------------------------------------------------------------------- /terraform/vpc/devartd_apnortheast2/vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/devartd_apnortheast2/vpc.tf -------------------------------------------------------------------------------- /terraform/vpc/devartd_apnortheast2/vpc_endpoints.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/devartd_apnortheast2/vpc_endpoints.tf -------------------------------------------------------------------------------- /terraform/vpc/devarts_apnortheast2/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/devarts_apnortheast2/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/vpc/devarts_apnortheast2/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/devarts_apnortheast2/backend.tf -------------------------------------------------------------------------------- /terraform/vpc/devarts_apnortheast2/bastion_sg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/devarts_apnortheast2/bastion_sg.tf -------------------------------------------------------------------------------- /terraform/vpc/devarts_apnortheast2/default_sg.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/devarts_apnortheast2/default_sg.tf -------------------------------------------------------------------------------- /terraform/vpc/devarts_apnortheast2/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/devarts_apnortheast2/outputs.tf -------------------------------------------------------------------------------- /terraform/vpc/devarts_apnortheast2/peering.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/devarts_apnortheast2/peering.tf -------------------------------------------------------------------------------- /terraform/vpc/devarts_apnortheast2/peering_routes.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/devarts_apnortheast2/peering_routes.tf -------------------------------------------------------------------------------- /terraform/vpc/devarts_apnortheast2/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/devarts_apnortheast2/provider.tf -------------------------------------------------------------------------------- /terraform/vpc/devarts_apnortheast2/route53.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/devarts_apnortheast2/route53.tf -------------------------------------------------------------------------------- /terraform/vpc/devarts_apnortheast2/route_table_routes.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/devarts_apnortheast2/route_table_routes.tf -------------------------------------------------------------------------------- /terraform/vpc/devarts_apnortheast2/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/devarts_apnortheast2/terraform.tfvars -------------------------------------------------------------------------------- /terraform/vpc/devarts_apnortheast2/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/devarts_apnortheast2/variables.tf -------------------------------------------------------------------------------- /terraform/vpc/devarts_apnortheast2/vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/devarts_apnortheast2/vpc.tf -------------------------------------------------------------------------------- /terraform/vpc/devarts_apnortheast2/vpc_endpoints.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/devarts_apnortheast2/vpc_endpoints.tf -------------------------------------------------------------------------------- /terraform/vpc/eksd_apnortheast2/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/eksd_apnortheast2/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/vpc/eksd_apnortheast2/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/eksd_apnortheast2/backend.tf -------------------------------------------------------------------------------- /terraform/vpc/eksd_apnortheast2/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/eksd_apnortheast2/locals.tf -------------------------------------------------------------------------------- /terraform/vpc/eksd_apnortheast2/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/eksd_apnortheast2/outputs.tf -------------------------------------------------------------------------------- /terraform/vpc/eksd_apnortheast2/peering.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/eksd_apnortheast2/peering.tf -------------------------------------------------------------------------------- /terraform/vpc/eksd_apnortheast2/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/eksd_apnortheast2/provider.tf -------------------------------------------------------------------------------- /terraform/vpc/eksd_apnortheast2/route53.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/eksd_apnortheast2/route53.tf -------------------------------------------------------------------------------- /terraform/vpc/eksd_apnortheast2/route_table_route.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/eksd_apnortheast2/route_table_route.tf -------------------------------------------------------------------------------- /terraform/vpc/eksd_apnortheast2/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/eksd_apnortheast2/terraform.tfvars -------------------------------------------------------------------------------- /terraform/vpc/eksd_apnortheast2/var_global.tf: -------------------------------------------------------------------------------- 1 | ../../variables/var_global.tf -------------------------------------------------------------------------------- /terraform/vpc/eksd_apnortheast2/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/eksd_apnortheast2/variables.tf -------------------------------------------------------------------------------- /terraform/vpc/eksd_apnortheast2/vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/eksd_apnortheast2/vpc.tf -------------------------------------------------------------------------------- /terraform/vpc/eksd_useast1/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/eksd_useast1/.terraform.lock.hcl -------------------------------------------------------------------------------- /terraform/vpc/eksd_useast1/backend.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/eksd_useast1/backend.tf -------------------------------------------------------------------------------- /terraform/vpc/eksd_useast1/locals.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/eksd_useast1/locals.tf -------------------------------------------------------------------------------- /terraform/vpc/eksd_useast1/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/eksd_useast1/outputs.tf -------------------------------------------------------------------------------- /terraform/vpc/eksd_useast1/peering.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/eksd_useast1/peering.tf -------------------------------------------------------------------------------- /terraform/vpc/eksd_useast1/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/eksd_useast1/provider.tf -------------------------------------------------------------------------------- /terraform/vpc/eksd_useast1/route53.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/eksd_useast1/route53.tf -------------------------------------------------------------------------------- /terraform/vpc/eksd_useast1/route_table_route.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/eksd_useast1/route_table_route.tf -------------------------------------------------------------------------------- /terraform/vpc/eksd_useast1/terraform.tfvars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/eksd_useast1/terraform.tfvars -------------------------------------------------------------------------------- /terraform/vpc/eksd_useast1/var_global.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/eksd_useast1/var_global.tf -------------------------------------------------------------------------------- /terraform/vpc/eksd_useast1/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/eksd_useast1/variables.tf -------------------------------------------------------------------------------- /terraform/vpc/eksd_useast1/vpc.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/eksd_useast1/vpc.tf -------------------------------------------------------------------------------- /terraform/vpc/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/outputs.tf -------------------------------------------------------------------------------- /terraform/vpc/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DevopsArtFactory/aws-provisioning/HEAD/terraform/vpc/provider.tf --------------------------------------------------------------------------------