-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterraform2.txt
83 lines (74 loc) · 3.32 KB
/
terraform2.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
Terraform used the selected providers to generate the following execution
plan. Resource actions are indicated with the following symbols:
+ create
Terraform will perform the following actions:
# aws_s3_bucket.this will be created
+ resource "aws_s3_bucket" "this" {
+ acceleration_status = (known after apply)
+ acl = (known after apply)
+ arn = (known after apply)
+ bucket = (known after apply)
+ bucket_domain_name = (known after apply)
+ bucket_prefix = (known after apply)
+ bucket_regional_domain_name = (known after apply)
+ force_destroy = false
+ hosted_zone_id = (known after apply)
+ id = (known after apply)
+ object_lock_enabled = (known after apply)
+ policy = (known after apply)
+ region = (known after apply)
+ request_payer = (known after apply)
+ tags = (known after apply)
+ tags_all = (known after apply)
+ website_domain = (known after apply)
+ website_endpoint = (known after apply)
pipiska
}
# aws_s3_object.this will be created
+ resource "aws_s3_object" "this" {
+ acl = (known after apply)pushpu
+ bucket = (known after apply)
+ bucket_key_enabled = (known after apply)
+ checksum_crc32 = (known after apply)
+ checksum_crc32c = (known after apply)
+ checksum_sha1 = (known after apply)
+ checksum_sha256 = (known after apply)
+ content_type = (known after apply)
+ etag = "3243442234234f4f4f3f98938448"
+ force_destroy = false
+ id = (known after apply)
+ key = "data.txt"
+ kms_key_id = (known after apply)
+ server_side_encryption = (known after apply)
+ storage_class = (known after apply)
+ tags_all = {
+ "aws_account_alias" = "aws"
+ "github_repo" = "catalog"
+ "infrastructure" = "dataplatform"
+ "namespace" = "prod"
+ "tf_path" = "pet-project/iac-tf/terraform/s3"
+ "tg_path" = "pet-project/iac-tf/terragrunt/aws/prod/s3"
}
+ version_id = (known after apply)
}
# random_string.this will be created
+ resource "random_string" "this" {
+ id = (known after apply)
+ length = 16
+ lower = true
+ min_lower = 0
+ min_numeric = 0
+ min_special = 0
+ min_upper = 0
+ number = true
+ numeric = true
+ result = (known after apply)
+ special = false
+ upper = false
}
Plan: 3 to add, 0 to change, 0 to destroy.
─────────────────────────────────────────────────────────────────────────────
Saved the plan to:
/home/runner/iac-tf_terragrunt_aws_prod_s3.tfplan
To perform exactly these actions, run the following command to apply:
terraform apply "/home/runner/iac-tf_terragrunt_aws_prod_s3.tfplan"