We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Following the Terraform module for AWS Landing Zone (one component: AWS Organization).
main.tf contains the following:
module "landing_zone" { source = "MitocGroup/landing-zone/aws" version = "0.2.4" landing_zone_providers = { default = { account_id = var.account_id region = var.region } } landing_zone_components = { landing_zone_organization = "s3://terraform-aws-landing-zone/components/landing_zone_organization/default.tfvars" } terraform_backend = { backend = "s3" bucket = "tf-remote-state" key = "landing_zone/terraform.tfstate" region = "us-east-1" encrypt = true kms_key_id = "**************" } }
Executed terraform plan -out tfplan.out then terrform apply tfplan.out
terraform plan -out tfplan.out
terrform apply tfplan.out
An AWS Organization is created.
My next step was to try installing globally with: npm -i -g aws-sdk with same result.
npm -i -g aws-sdk
I noticed this npm warning: npm WARN saveError ENOENT: no such file or directory, open '/Users/john/package.json' so I tried the following: cp .terraform/modules/landing_zone/package.json ~/ to place the package.json into my $HOME directory and finally the apply worked.
npm WARN saveError ENOENT: no such file or directory, open '/Users/john/package.json'
cp .terraform/modules/landing_zone/package.json ~/
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the Bug
Following the Terraform module for AWS Landing Zone (one component: AWS Organization).
To Reproduce
main.tf contains the following:
Executed
terraform plan -out tfplan.out
thenterrform apply tfplan.out
Expected Behavior
An AWS Organization is created.
Screenshots
Desktop
Additional context
My next step was to try installing globally with:
npm -i -g aws-sdk
with same result.I noticed this npm warning:
npm WARN saveError ENOENT: no such file or directory, open '/Users/john/package.json'
so I tried the following:cp .terraform/modules/landing_zone/package.json ~/
to place the package.json into my $HOME directory and finally the apply worked.
The text was updated successfully, but these errors were encountered: