lohalogos.blogg.se

Driven workspaces
Driven workspaces











Your workspace can now use your AWS credentials. Select your AWS Credentials variable set, then click Apply variable set. Navigate to your new learn-terraform-cloud workspace. If you are not using a global variable set with your AWSĬredentials in your Terraform Cloud organization, assign the Organization name in the top left corner of the Terraform Cloud UI.Īs part of the initialization process, Terraform created the new learn-terraform-cloud workspace in your Terraform Cloud organization, configured for CLI-driven runs.

Driven workspaces update#

Open the versions.tf file and update the name of the organization in theĬloud block to your own Terraform Cloud organization. versions.tf defines version constraints for Terraform and the AWS provider and the cloud block for the Terraform Cloud integration.outputs.tf defines the information about your infrastructure that Terraform Cloud will display to you when it makes changes.You will define these variables in the Terraform Cloud UI later on in this tutorial.

driven workspaces

  • variables.tf defines the input variables that are referenced in main.tf, which make the configuration customizable.
  • driven workspaces

    The configuration defines an EC2 instance and uses a Terraform data source to access a machine image to use for the instance.

    driven workspaces

    main.tf specifies the AWS provider, a provider plugin that Terraform will use to manage your AWS resources.It contains Terraform configuration files, which define and expose information about your infrastructure: Open the configuration in your code editor to review it.











    Driven workspaces