index.html 154 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344
  1. <!doctype html>
  2. <html lang="en" class="no-js">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1">
  6. <link rel="icon" href="../assets/images/favicon.png">
  7. <meta name="generator" content="mkdocs-1.4.3, mkdocs-material-9.1.9">
  8. <title>Spec - External Secrets Operator</title>
  9. <link rel="stylesheet" href="../assets/stylesheets/main.85bb2934.min.css">
  10. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  11. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,700,700i%7CRoboto+Mono:400,400i,700,700i&display=fallback">
  12. <style>:root{--md-text-font:"Roboto";--md-code-font:"Roboto Mono"}</style>
  13. <script>__md_scope=new URL("..",location),__md_hash=e=>[...e].reduce((e,_)=>(e<<5)-e+_.charCodeAt(0),0),__md_get=(e,_=localStorage,t=__md_scope)=>JSON.parse(_.getItem(t.pathname+"."+e)),__md_set=(e,_,t=localStorage,a=__md_scope)=>{try{t.setItem(a.pathname+"."+e,JSON.stringify(_))}catch(e){}}</script>
  14. <script id="__analytics">function __md_analytics(){function n(){dataLayer.push(arguments)}window.dataLayer=window.dataLayer||[],n("js",new Date),n("config","G-QP38TD8K7V"),document.addEventListener("DOMContentLoaded",function(){document.forms.search&&document.forms.search.query.addEventListener("blur",function(){this.value&&n("event","search",{search_term:this.value})}),document$.subscribe(function(){var a=document.forms.feedback;if(void 0!==a)for(var e of a.querySelectorAll("[type=submit]"))e.addEventListener("click",function(e){e.preventDefault();var t=document.location.pathname,e=this.getAttribute("data-md-value");n("event","feedback",{page:t,data:e}),a.firstElementChild.disabled=!0;e=a.querySelector(".md-feedback__note [data-md-value='"+e+"']");e&&(e.hidden=!1)}),a.hidden=!1}),location$.subscribe(function(e){n("config","G-QP38TD8K7V",{page_path:e.pathname})})});var e=document.createElement("script");e.async=!0,e.src="https://www.googletagmanager.com/gtag/js?id=G-QP38TD8K7V",document.getElementById("__analytics").insertAdjacentElement("afterEnd",e)}</script>
  15. <script>"undefined"!=typeof __md_analytics&&__md_analytics()</script>
  16. </head>
  17. <body dir="ltr">
  18. <script>var palette=__md_get("__palette");if(palette&&"object"==typeof palette.color)for(var key of Object.keys(palette.color))document.body.setAttribute("data-md-color-"+key,palette.color[key])</script>
  19. <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off">
  20. <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off">
  21. <label class="md-overlay" for="__drawer"></label>
  22. <div data-md-component="skip">
  23. </div>
  24. <div data-md-component="announce">
  25. </div>
  26. <div data-md-color-scheme="default" data-md-component="outdated" hidden>
  27. <aside class="md-banner md-banner--warning">
  28. <div class="md-banner__inner md-grid md-typeset">
  29. You're not viewing the latest version.
  30. <a href="../..">
  31. <strong>Click here to go to latest.</strong>
  32. </a>
  33. </div>
  34. <script>var el=document.querySelector("[data-md-component=outdated]"),outdated=__md_get("__outdated",sessionStorage);!0===outdated&&el&&(el.hidden=!1)</script>
  35. </aside>
  36. </div>
  37. <header class="md-header" data-md-component="header">
  38. <nav class="md-header__inner md-grid" aria-label="Header">
  39. <a href=".." title="External Secrets Operator" class="md-header__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  40. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3m0 3.54C9.64 9.35 6.5 8 3 8v11c3.5 0 6.64 1.35 9 3.54 2.36-2.19 5.5-3.54 9-3.54V8c-3.5 0-6.64 1.35-9 3.54Z"/></svg>
  41. </a>
  42. <label class="md-header__button md-icon" for="__drawer">
  43. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v2H3V6m0 5h18v2H3v-2m0 5h18v2H3v-2Z"/></svg>
  44. </label>
  45. <div class="md-header__title" data-md-component="header-title">
  46. <div class="md-header__ellipsis">
  47. <div class="md-header__topic">
  48. <span class="md-ellipsis">
  49. External Secrets Operator
  50. </span>
  51. </div>
  52. <div class="md-header__topic" data-md-component="header-topic">
  53. <span class="md-ellipsis">
  54. Spec
  55. </span>
  56. </div>
  57. </div>
  58. </div>
  59. <label class="md-header__button md-icon" for="__search">
  60. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.516 6.516 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5Z"/></svg>
  61. </label>
  62. <div class="md-search" data-md-component="search" role="dialog">
  63. <label class="md-search__overlay" for="__search"></label>
  64. <div class="md-search__inner" role="search">
  65. <form class="md-search__form" name="search">
  66. <input type="text" class="md-search__input" name="query" aria-label="Search" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="search-query" required>
  67. <label class="md-search__icon md-icon" for="__search">
  68. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0 1 16 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.516 6.516 0 0 1 9.5 16 6.5 6.5 0 0 1 3 9.5 6.5 6.5 0 0 1 9.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5Z"/></svg>
  69. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11h12Z"/></svg>
  70. </label>
  71. <nav class="md-search__options" aria-label="Search">
  72. <button type="reset" class="md-search__icon md-icon" title="Clear" aria-label="Clear" tabindex="-1">
  73. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41 17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41Z"/></svg>
  74. </button>
  75. </nav>
  76. </form>
  77. <div class="md-search__output">
  78. <div class="md-search__scrollwrap" data-md-scrollfix>
  79. <div class="md-search-result" data-md-component="search-result">
  80. <div class="md-search-result__meta">
  81. Initializing search
  82. </div>
  83. <ol class="md-search-result__list" role="presentation"></ol>
  84. </div>
  85. </div>
  86. </div>
  87. </div>
  88. </div>
  89. <div class="md-header__source">
  90. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  91. <div class="md-source__icon md-icon">
  92. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z"/></svg>
  93. </div>
  94. <div class="md-source__repository">
  95. External Secrets Operator
  96. </div>
  97. </a>
  98. </div>
  99. </nav>
  100. </header>
  101. <div class="md-container" data-md-component="container">
  102. <nav class="md-tabs" aria-label="Tabs" data-md-component="tabs">
  103. <div class="md-grid">
  104. <ul class="md-tabs__list">
  105. <li class="md-tabs__item">
  106. <a href=".." class="md-tabs__link">
  107. Introduction
  108. </a>
  109. </li>
  110. <li class="md-tabs__item">
  111. <a href="../api/components/" class="md-tabs__link">
  112. API
  113. </a>
  114. </li>
  115. <li class="md-tabs__item">
  116. <a href="../guides/introduction/" class="md-tabs__link">
  117. Guides
  118. </a>
  119. </li>
  120. <li class="md-tabs__item">
  121. <a href="../provider/aws-secrets-manager/" class="md-tabs__link">
  122. Provider
  123. </a>
  124. </li>
  125. <li class="md-tabs__item">
  126. <a href="../examples/gitops-using-fluxcd/" class="md-tabs__link">
  127. Examples
  128. </a>
  129. </li>
  130. <li class="md-tabs__item">
  131. <a href="../contributing/devguide/" class="md-tabs__link">
  132. Community
  133. </a>
  134. </li>
  135. </ul>
  136. </div>
  137. </nav>
  138. <main class="md-main" data-md-component="main">
  139. <div class="md-main__inner md-grid">
  140. <div class="md-sidebar md-sidebar--primary" data-md-component="sidebar" data-md-type="navigation" >
  141. <div class="md-sidebar__scrollwrap">
  142. <div class="md-sidebar__inner">
  143. <nav class="md-nav md-nav--primary md-nav--lifted" aria-label="Navigation" data-md-level="0">
  144. <label class="md-nav__title" for="__drawer">
  145. <a href=".." title="External Secrets Operator" class="md-nav__button md-logo" aria-label="External Secrets Operator" data-md-component="logo">
  146. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a3 3 0 0 0 3-3 3 3 0 0 0-3-3 3 3 0 0 0-3 3 3 3 0 0 0 3 3m0 3.54C9.64 9.35 6.5 8 3 8v11c3.5 0 6.64 1.35 9 3.54 2.36-2.19 5.5-3.54 9-3.54V8c-3.5 0-6.64 1.35-9 3.54Z"/></svg>
  147. </a>
  148. External Secrets Operator
  149. </label>
  150. <div class="md-nav__source">
  151. <a href="https://github.com/external-secrets/external-secrets" title="Go to repository" class="md-source" data-md-component="source">
  152. <div class="md-source__icon md-icon">
  153. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M439.55 236.05 244 40.45a28.87 28.87 0 0 0-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 0 1-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 0 0 0 40.81l195.61 195.6a28.86 28.86 0 0 0 40.8 0l194.69-194.69a28.86 28.86 0 0 0 0-40.81z"/></svg>
  154. </div>
  155. <div class="md-source__repository">
  156. External Secrets Operator
  157. </div>
  158. </a>
  159. </div>
  160. <ul class="md-nav__list" data-md-scrollfix>
  161. <li class="md-nav__item md-nav__item--nested">
  162. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_1" >
  163. <div class="md-nav__link md-nav__link--index ">
  164. <a href="..">Introduction</a>
  165. <label for="__nav_1">
  166. <span class="md-nav__icon md-icon"></span>
  167. </label>
  168. </div>
  169. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_1_label" aria-expanded="false">
  170. <label class="md-nav__title" for="__nav_1">
  171. <span class="md-nav__icon md-icon"></span>
  172. Introduction
  173. </label>
  174. <ul class="md-nav__list" data-md-scrollfix>
  175. <li class="md-nav__item">
  176. <a href="../introduction/overview/" class="md-nav__link">
  177. Overview
  178. </a>
  179. </li>
  180. <li class="md-nav__item">
  181. <a href="../introduction/getting-started/" class="md-nav__link">
  182. Getting started
  183. </a>
  184. </li>
  185. <li class="md-nav__item">
  186. <a href="../introduction/faq/" class="md-nav__link">
  187. FAQ
  188. </a>
  189. </li>
  190. <li class="md-nav__item">
  191. <a href="../introduction/stability-support/" class="md-nav__link">
  192. Stability and Support
  193. </a>
  194. </li>
  195. <li class="md-nav__item">
  196. <a href="../introduction/deprecation-policy/" class="md-nav__link">
  197. Deprecation Policy
  198. </a>
  199. </li>
  200. </ul>
  201. </nav>
  202. </li>
  203. <li class="md-nav__item md-nav__item--nested">
  204. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2" >
  205. <label class="md-nav__link" for="__nav_2" id="__nav_2_label" tabindex="0">
  206. API
  207. <span class="md-nav__icon md-icon"></span>
  208. </label>
  209. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_2_label" aria-expanded="false">
  210. <label class="md-nav__title" for="__nav_2">
  211. <span class="md-nav__icon md-icon"></span>
  212. API
  213. </label>
  214. <ul class="md-nav__list" data-md-scrollfix>
  215. <li class="md-nav__item">
  216. <a href="../api/components/" class="md-nav__link">
  217. Components
  218. </a>
  219. </li>
  220. <li class="md-nav__item md-nav__item--nested">
  221. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_2" >
  222. <label class="md-nav__link" for="__nav_2_2" id="__nav_2_2_label" tabindex="0">
  223. Core Resources
  224. <span class="md-nav__icon md-icon"></span>
  225. </label>
  226. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_2_label" aria-expanded="false">
  227. <label class="md-nav__title" for="__nav_2_2">
  228. <span class="md-nav__icon md-icon"></span>
  229. Core Resources
  230. </label>
  231. <ul class="md-nav__list" data-md-scrollfix>
  232. <li class="md-nav__item">
  233. <a href="../api/externalsecret/" class="md-nav__link">
  234. ExternalSecret
  235. </a>
  236. </li>
  237. <li class="md-nav__item">
  238. <a href="../api/secretstore/" class="md-nav__link">
  239. SecretStore
  240. </a>
  241. </li>
  242. <li class="md-nav__item">
  243. <a href="../api/clustersecretstore/" class="md-nav__link">
  244. ClusterSecretStore
  245. </a>
  246. </li>
  247. <li class="md-nav__item">
  248. <a href="../api/clusterexternalsecret/" class="md-nav__link">
  249. ClusterExternalSecret
  250. </a>
  251. </li>
  252. <li class="md-nav__item">
  253. <a href="../api/pushsecret/" class="md-nav__link">
  254. PushSecret
  255. </a>
  256. </li>
  257. </ul>
  258. </nav>
  259. </li>
  260. <li class="md-nav__item md-nav__item--nested">
  261. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_3" >
  262. <div class="md-nav__link md-nav__link--index ">
  263. <a href="../api/generator/">Generators</a>
  264. <label for="__nav_2_3">
  265. <span class="md-nav__icon md-icon"></span>
  266. </label>
  267. </div>
  268. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_3_label" aria-expanded="false">
  269. <label class="md-nav__title" for="__nav_2_3">
  270. <span class="md-nav__icon md-icon"></span>
  271. Generators
  272. </label>
  273. <ul class="md-nav__list" data-md-scrollfix>
  274. <li class="md-nav__item">
  275. <a href="../api/generator/acr/" class="md-nav__link">
  276. Azure Container Registry
  277. </a>
  278. </li>
  279. <li class="md-nav__item">
  280. <a href="../api/generator/ecr/" class="md-nav__link">
  281. AWS Elastic Container Registry
  282. </a>
  283. </li>
  284. <li class="md-nav__item">
  285. <a href="../api/generator/gcr/" class="md-nav__link">
  286. Google Container Registry
  287. </a>
  288. </li>
  289. <li class="md-nav__item">
  290. <a href="../api/generator/vault/" class="md-nav__link">
  291. Vault Dynamic Secret
  292. </a>
  293. </li>
  294. <li class="md-nav__item">
  295. <a href="../api/generator/password/" class="md-nav__link">
  296. Password
  297. </a>
  298. </li>
  299. <li class="md-nav__item">
  300. <a href="../api/generator/fake/" class="md-nav__link">
  301. Fake
  302. </a>
  303. </li>
  304. </ul>
  305. </nav>
  306. </li>
  307. <li class="md-nav__item md-nav__item--nested">
  308. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_2_4" >
  309. <label class="md-nav__link" for="__nav_2_4" id="__nav_2_4_label" tabindex="0">
  310. Reference Docs
  311. <span class="md-nav__icon md-icon"></span>
  312. </label>
  313. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_2_4_label" aria-expanded="false">
  314. <label class="md-nav__title" for="__nav_2_4">
  315. <span class="md-nav__icon md-icon"></span>
  316. Reference Docs
  317. </label>
  318. <ul class="md-nav__list" data-md-scrollfix>
  319. <li class="md-nav__item">
  320. <a href="../api/spec/" class="md-nav__link">
  321. API specification
  322. </a>
  323. </li>
  324. <li class="md-nav__item">
  325. <a href="../api/controller-options/" class="md-nav__link">
  326. Controller Options
  327. </a>
  328. </li>
  329. <li class="md-nav__item">
  330. <a href="../api/metrics/" class="md-nav__link">
  331. Metrics
  332. </a>
  333. </li>
  334. </ul>
  335. </nav>
  336. </li>
  337. </ul>
  338. </nav>
  339. </li>
  340. <li class="md-nav__item md-nav__item--nested">
  341. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3" >
  342. <label class="md-nav__link" for="__nav_3" id="__nav_3_label" tabindex="0">
  343. Guides
  344. <span class="md-nav__icon md-icon"></span>
  345. </label>
  346. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_3_label" aria-expanded="false">
  347. <label class="md-nav__title" for="__nav_3">
  348. <span class="md-nav__icon md-icon"></span>
  349. Guides
  350. </label>
  351. <ul class="md-nav__list" data-md-scrollfix>
  352. <li class="md-nav__item">
  353. <a href="../guides/introduction/" class="md-nav__link">
  354. Introduction
  355. </a>
  356. </li>
  357. <li class="md-nav__item md-nav__item--nested">
  358. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2" >
  359. <label class="md-nav__link" for="__nav_3_2" id="__nav_3_2_label" tabindex="0">
  360. External Secrets
  361. <span class="md-nav__icon md-icon"></span>
  362. </label>
  363. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_2_label" aria-expanded="false">
  364. <label class="md-nav__title" for="__nav_3_2">
  365. <span class="md-nav__icon md-icon"></span>
  366. External Secrets
  367. </label>
  368. <ul class="md-nav__list" data-md-scrollfix>
  369. <li class="md-nav__item">
  370. <a href="../guides/all-keys-one-secret/" class="md-nav__link">
  371. Extract structured data
  372. </a>
  373. </li>
  374. <li class="md-nav__item">
  375. <a href="../guides/getallsecrets/" class="md-nav__link">
  376. Find Secrets by Name or Metadata
  377. </a>
  378. </li>
  379. <li class="md-nav__item">
  380. <a href="../guides/datafrom-rewrite/" class="md-nav__link">
  381. Rewriting Keys
  382. </a>
  383. </li>
  384. <li class="md-nav__item md-nav__item--nested">
  385. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_2_4" >
  386. <label class="md-nav__link" for="__nav_3_2_4" id="__nav_3_2_4_label" tabindex="0">
  387. Advanced Templating
  388. <span class="md-nav__icon md-icon"></span>
  389. </label>
  390. <nav class="md-nav" data-md-level="3" aria-labelledby="__nav_3_2_4_label" aria-expanded="false">
  391. <label class="md-nav__title" for="__nav_3_2_4">
  392. <span class="md-nav__icon md-icon"></span>
  393. Advanced Templating
  394. </label>
  395. <ul class="md-nav__list" data-md-scrollfix>
  396. <li class="md-nav__item">
  397. <a href="../guides/templating/" class="md-nav__link">
  398. v2
  399. </a>
  400. </li>
  401. <li class="md-nav__item">
  402. <a href="../guides/templating-v1/" class="md-nav__link">
  403. v1
  404. </a>
  405. </li>
  406. </ul>
  407. </nav>
  408. </li>
  409. <li class="md-nav__item">
  410. <a href="../guides/common-k8s-secret-types/" class="md-nav__link">
  411. Kubernetes Secret Types
  412. </a>
  413. </li>
  414. <li class="md-nav__item">
  415. <a href="../guides/ownership-deletion-policy/" class="md-nav__link">
  416. Lifecycle: ownership & deletion
  417. </a>
  418. </li>
  419. <li class="md-nav__item">
  420. <a href="../guides/decoding-strategy/" class="md-nav__link">
  421. Decoding Strategies
  422. </a>
  423. </li>
  424. <li class="md-nav__item">
  425. <a href="../guides/controller-class/" class="md-nav__link">
  426. Controller Classes
  427. </a>
  428. </li>
  429. </ul>
  430. </nav>
  431. </li>
  432. <li class="md-nav__item">
  433. <a href="../guides/generator/" class="md-nav__link">
  434. Generators
  435. </a>
  436. </li>
  437. <li class="md-nav__item md-nav__item--nested">
  438. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_3_4" >
  439. <label class="md-nav__link" for="__nav_3_4" id="__nav_3_4_label" tabindex="0">
  440. Operations
  441. <span class="md-nav__icon md-icon"></span>
  442. </label>
  443. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_3_4_label" aria-expanded="false">
  444. <label class="md-nav__title" for="__nav_3_4">
  445. <span class="md-nav__icon md-icon"></span>
  446. Operations
  447. </label>
  448. <ul class="md-nav__list" data-md-scrollfix>
  449. <li class="md-nav__item">
  450. <a href="../guides/multi-tenancy/" class="md-nav__link">
  451. Multi Tenancy
  452. </a>
  453. </li>
  454. <li class="md-nav__item">
  455. <a href="../guides/security-best-practices/" class="md-nav__link">
  456. Security Best Practices
  457. </a>
  458. </li>
  459. <li class="md-nav__item">
  460. <a href="../guides/threat-model/" class="md-nav__link">
  461. Threat Model
  462. </a>
  463. </li>
  464. <li class="md-nav__item">
  465. <a href="../guides/v1beta1/" class="md-nav__link">
  466. Upgrading to v1beta1
  467. </a>
  468. </li>
  469. <li class="md-nav__item">
  470. <a href="../guides/using-latest-image/" class="md-nav__link">
  471. Using Latest Image
  472. </a>
  473. </li>
  474. <li class="md-nav__item">
  475. <a href="../guides/disable-cluster-features/" class="md-nav__link">
  476. Disable Cluster Features
  477. </a>
  478. </li>
  479. </ul>
  480. </nav>
  481. </li>
  482. </ul>
  483. </nav>
  484. </li>
  485. <li class="md-nav__item md-nav__item--nested">
  486. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_4" >
  487. <label class="md-nav__link" for="__nav_4" id="__nav_4_label" tabindex="0">
  488. Provider
  489. <span class="md-nav__icon md-icon"></span>
  490. </label>
  491. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_4_label" aria-expanded="false">
  492. <label class="md-nav__title" for="__nav_4">
  493. <span class="md-nav__icon md-icon"></span>
  494. Provider
  495. </label>
  496. <ul class="md-nav__list" data-md-scrollfix>
  497. <li class="md-nav__item">
  498. <a href="../provider/aws-secrets-manager/" class="md-nav__link">
  499. AWS Secrets Manager
  500. </a>
  501. </li>
  502. <li class="md-nav__item">
  503. <a href="../provider/aws-parameter-store/" class="md-nav__link">
  504. AWS Parameter Store
  505. </a>
  506. </li>
  507. <li class="md-nav__item">
  508. <a href="../provider/azure-key-vault/" class="md-nav__link">
  509. Azure Key Vault
  510. </a>
  511. </li>
  512. <li class="md-nav__item">
  513. <a href="../provider/conjur/" class="md-nav__link">
  514. CyberArk Conjur
  515. </a>
  516. </li>
  517. <li class="md-nav__item">
  518. <a href="../provider/google-secrets-manager/" class="md-nav__link">
  519. Google Cloud Secret Manager
  520. </a>
  521. </li>
  522. <li class="md-nav__item">
  523. <a href="../provider/hashicorp-vault/" class="md-nav__link">
  524. HashiCorp Vault
  525. </a>
  526. </li>
  527. <li class="md-nav__item">
  528. <a href="../provider/kubernetes/" class="md-nav__link">
  529. Kubernetes
  530. </a>
  531. </li>
  532. <li class="md-nav__item">
  533. <a href="../provider/ibm-secrets-manager/" class="md-nav__link">
  534. IBM Secrets Manager
  535. </a>
  536. </li>
  537. <li class="md-nav__item">
  538. <a href="../provider/akeyless/" class="md-nav__link">
  539. Akeyless
  540. </a>
  541. </li>
  542. <li class="md-nav__item">
  543. <a href="../provider/yandex-certificate-manager/" class="md-nav__link">
  544. Yandex Certificate Manager
  545. </a>
  546. </li>
  547. <li class="md-nav__item">
  548. <a href="../provider/yandex-lockbox/" class="md-nav__link">
  549. Yandex Lockbox
  550. </a>
  551. </li>
  552. <li class="md-nav__item">
  553. <a href="../provider/alibaba/" class="md-nav__link">
  554. Alibaba Cloud
  555. </a>
  556. </li>
  557. <li class="md-nav__item">
  558. <a href="../provider/gitlab-variables/" class="md-nav__link">
  559. GitLab Variables
  560. </a>
  561. </li>
  562. <li class="md-nav__item">
  563. <a href="../provider/oracle-vault/" class="md-nav__link">
  564. Oracle Vault
  565. </a>
  566. </li>
  567. <li class="md-nav__item">
  568. <a href="../provider/1password-automation/" class="md-nav__link">
  569. 1Password Secrets Automation
  570. </a>
  571. </li>
  572. <li class="md-nav__item">
  573. <a href="../provider/webhook/" class="md-nav__link">
  574. Webhook
  575. </a>
  576. </li>
  577. <li class="md-nav__item">
  578. <a href="../provider/fake/" class="md-nav__link">
  579. Fake
  580. </a>
  581. </li>
  582. <li class="md-nav__item">
  583. <a href="../provider/senhasegura-dsm/" class="md-nav__link">
  584. senhasegura DevOps Secrets Management (DSM)
  585. </a>
  586. </li>
  587. <li class="md-nav__item">
  588. <a href="../provider/doppler/" class="md-nav__link">
  589. Doppler
  590. </a>
  591. </li>
  592. <li class="md-nav__item">
  593. <a href="../provider/keeper-security/" class="md-nav__link">
  594. Keeper Security
  595. </a>
  596. </li>
  597. <li class="md-nav__item">
  598. <a href="../provider/cloak/" class="md-nav__link">
  599. Cloak End 2 End Encrypted Secrets
  600. </a>
  601. </li>
  602. <li class="md-nav__item">
  603. <a href="../provider/scaleway/" class="md-nav__link">
  604. Scaleway
  605. </a>
  606. </li>
  607. <li class="md-nav__item">
  608. <a href="../provider/delinea/" class="md-nav__link">
  609. Delinea
  610. </a>
  611. </li>
  612. </ul>
  613. </nav>
  614. </li>
  615. <li class="md-nav__item md-nav__item--nested">
  616. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_5" >
  617. <label class="md-nav__link" for="__nav_5" id="__nav_5_label" tabindex="0">
  618. Examples
  619. <span class="md-nav__icon md-icon"></span>
  620. </label>
  621. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_5_label" aria-expanded="false">
  622. <label class="md-nav__title" for="__nav_5">
  623. <span class="md-nav__icon md-icon"></span>
  624. Examples
  625. </label>
  626. <ul class="md-nav__list" data-md-scrollfix>
  627. <li class="md-nav__item">
  628. <a href="../examples/gitops-using-fluxcd/" class="md-nav__link">
  629. FluxCD
  630. </a>
  631. </li>
  632. <li class="md-nav__item">
  633. <a href="../examples/anchore-engine-credentials/" class="md-nav__link">
  634. Anchore Engine
  635. </a>
  636. </li>
  637. <li class="md-nav__item">
  638. <a href="../examples/jenkins-kubernetes-credentials/" class="md-nav__link">
  639. Jenkins
  640. </a>
  641. </li>
  642. <li class="md-nav__item">
  643. <a href="../examples/bitwarden/" class="md-nav__link">
  644. BitWarden
  645. </a>
  646. </li>
  647. </ul>
  648. </nav>
  649. </li>
  650. <li class="md-nav__item md-nav__item--nested">
  651. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6" >
  652. <label class="md-nav__link" for="__nav_6" id="__nav_6_label" tabindex="0">
  653. Community
  654. <span class="md-nav__icon md-icon"></span>
  655. </label>
  656. <nav class="md-nav" data-md-level="1" aria-labelledby="__nav_6_label" aria-expanded="false">
  657. <label class="md-nav__title" for="__nav_6">
  658. <span class="md-nav__icon md-icon"></span>
  659. Community
  660. </label>
  661. <ul class="md-nav__list" data-md-scrollfix>
  662. <li class="md-nav__item md-nav__item--nested">
  663. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_1" >
  664. <label class="md-nav__link" for="__nav_6_1" id="__nav_6_1_label" tabindex="0">
  665. Contributing
  666. <span class="md-nav__icon md-icon"></span>
  667. </label>
  668. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_1_label" aria-expanded="false">
  669. <label class="md-nav__title" for="__nav_6_1">
  670. <span class="md-nav__icon md-icon"></span>
  671. Contributing
  672. </label>
  673. <ul class="md-nav__list" data-md-scrollfix>
  674. <li class="md-nav__item">
  675. <a href="../contributing/devguide/" class="md-nav__link">
  676. Developer guide
  677. </a>
  678. </li>
  679. <li class="md-nav__item">
  680. <a href="../contributing/process/" class="md-nav__link">
  681. Contributing Process
  682. </a>
  683. </li>
  684. <li class="md-nav__item">
  685. <a href="../contributing/release/" class="md-nav__link">
  686. Release Process
  687. </a>
  688. </li>
  689. <li class="md-nav__item">
  690. <a href="../contributing/coc/" class="md-nav__link">
  691. Code of Conduct
  692. </a>
  693. </li>
  694. <li class="md-nav__item">
  695. <a href="../contributing/roadmap/" class="md-nav__link">
  696. Roadmap
  697. </a>
  698. </li>
  699. </ul>
  700. </nav>
  701. </li>
  702. <li class="md-nav__item md-nav__item--nested">
  703. <input class="md-nav__toggle md-toggle md-toggle--indeterminate" type="checkbox" id="__nav_6_2" >
  704. <label class="md-nav__link" for="__nav_6_2" id="__nav_6_2_label" tabindex="0">
  705. External Resources
  706. <span class="md-nav__icon md-icon"></span>
  707. </label>
  708. <nav class="md-nav" data-md-level="2" aria-labelledby="__nav_6_2_label" aria-expanded="false">
  709. <label class="md-nav__title" for="__nav_6_2">
  710. <span class="md-nav__icon md-icon"></span>
  711. External Resources
  712. </label>
  713. <ul class="md-nav__list" data-md-scrollfix>
  714. <li class="md-nav__item">
  715. <a href="../eso-talks/" class="md-nav__link">
  716. Talks
  717. </a>
  718. </li>
  719. <li class="md-nav__item">
  720. <a href="../eso-demos/" class="md-nav__link">
  721. Demos
  722. </a>
  723. </li>
  724. <li class="md-nav__item">
  725. <a href="../eso-blogs/" class="md-nav__link">
  726. Blogs
  727. </a>
  728. </li>
  729. </ul>
  730. </nav>
  731. </li>
  732. </ul>
  733. </nav>
  734. </li>
  735. </ul>
  736. </nav>
  737. </div>
  738. </div>
  739. </div>
  740. <div class="md-sidebar md-sidebar--secondary" data-md-component="sidebar" data-md-type="toc" >
  741. <div class="md-sidebar__scrollwrap">
  742. <div class="md-sidebar__inner">
  743. <nav class="md-nav md-nav--secondary" aria-label="Table of contents">
  744. </nav>
  745. </div>
  746. </div>
  747. </div>
  748. <div class="md-content" data-md-component="content">
  749. <article class="md-content__inner md-typeset">
  750. <h1>Spec</h1>
  751. <p>Packages:</p>
  752. <ul>
  753. <li>
  754. <a href="#external-secrets.io%2fv1beta1">external-secrets.io/v1beta1</a>
  755. </li>
  756. </ul>
  757. <h2 id="external-secrets.io/v1beta1">external-secrets.io/v1beta1</h2>
  758. <p>
  759. <p>Package v1beta1 contains resources for external-secrets</p>
  760. </p>
  761. <p>Resource Types:</p>
  762. <ul></ul>
  763. <h3 id="external-secrets.io/v1beta1.AWSAuth">AWSAuth
  764. </h3>
  765. <p>
  766. (<em>Appears on:</em>
  767. <a href="#external-secrets.io/v1beta1.AWSProvider">AWSProvider</a>)
  768. </p>
  769. <p>
  770. <p>AWSAuth tells the controller how to do authentication with aws.
  771. Only one of secretRef or jwt can be specified.
  772. if none is specified the controller will load credentials using the aws sdk defaults.</p>
  773. </p>
  774. <table>
  775. <thead>
  776. <tr>
  777. <th>Field</th>
  778. <th>Description</th>
  779. </tr>
  780. </thead>
  781. <tbody>
  782. <tr>
  783. <td>
  784. <code>secretRef</code></br>
  785. <em>
  786. <a href="#external-secrets.io/v1beta1.AWSAuthSecretRef">
  787. AWSAuthSecretRef
  788. </a>
  789. </em>
  790. </td>
  791. <td>
  792. <em>(Optional)</em>
  793. </td>
  794. </tr>
  795. <tr>
  796. <td>
  797. <code>jwt</code></br>
  798. <em>
  799. <a href="#external-secrets.io/v1beta1.AWSJWTAuth">
  800. AWSJWTAuth
  801. </a>
  802. </em>
  803. </td>
  804. <td>
  805. <em>(Optional)</em>
  806. </td>
  807. </tr>
  808. </tbody>
  809. </table>
  810. <h3 id="external-secrets.io/v1beta1.AWSAuthSecretRef">AWSAuthSecretRef
  811. </h3>
  812. <p>
  813. (<em>Appears on:</em>
  814. <a href="#external-secrets.io/v1beta1.AWSAuth">AWSAuth</a>)
  815. </p>
  816. <p>
  817. <p>AWSAuthSecretRef holds secret references for AWS credentials
  818. both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.</p>
  819. </p>
  820. <table>
  821. <thead>
  822. <tr>
  823. <th>Field</th>
  824. <th>Description</th>
  825. </tr>
  826. </thead>
  827. <tbody>
  828. <tr>
  829. <td>
  830. <code>accessKeyIDSecretRef</code></br>
  831. <em>
  832. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  833. </em>
  834. </td>
  835. <td>
  836. <p>The AccessKeyID is used for authentication</p>
  837. </td>
  838. </tr>
  839. <tr>
  840. <td>
  841. <code>secretAccessKeySecretRef</code></br>
  842. <em>
  843. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  844. </em>
  845. </td>
  846. <td>
  847. <p>The SecretAccessKey is used for authentication</p>
  848. </td>
  849. </tr>
  850. <tr>
  851. <td>
  852. <code>sessionTokenSecretRef</code></br>
  853. <em>
  854. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  855. </em>
  856. </td>
  857. <td>
  858. <p>The SessionToken used for authentication
  859. This must be defined if AccessKeyID and SecretAccessKey are temporary credentials
  860. see: <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html">https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html</a></p>
  861. </td>
  862. </tr>
  863. </tbody>
  864. </table>
  865. <h3 id="external-secrets.io/v1beta1.AWSJWTAuth">AWSJWTAuth
  866. </h3>
  867. <p>
  868. (<em>Appears on:</em>
  869. <a href="#external-secrets.io/v1beta1.AWSAuth">AWSAuth</a>)
  870. </p>
  871. <p>
  872. <p>Authenticate against AWS using service account tokens.</p>
  873. </p>
  874. <table>
  875. <thead>
  876. <tr>
  877. <th>Field</th>
  878. <th>Description</th>
  879. </tr>
  880. </thead>
  881. <tbody>
  882. <tr>
  883. <td>
  884. <code>serviceAccountRef</code></br>
  885. <em>
  886. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  887. </em>
  888. </td>
  889. <td>
  890. </td>
  891. </tr>
  892. </tbody>
  893. </table>
  894. <h3 id="external-secrets.io/v1beta1.AWSProvider">AWSProvider
  895. </h3>
  896. <p>
  897. (<em>Appears on:</em>
  898. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  899. </p>
  900. <p>
  901. <p>AWSProvider configures a store to sync secrets with AWS.</p>
  902. </p>
  903. <table>
  904. <thead>
  905. <tr>
  906. <th>Field</th>
  907. <th>Description</th>
  908. </tr>
  909. </thead>
  910. <tbody>
  911. <tr>
  912. <td>
  913. <code>service</code></br>
  914. <em>
  915. <a href="#external-secrets.io/v1beta1.AWSServiceType">
  916. AWSServiceType
  917. </a>
  918. </em>
  919. </td>
  920. <td>
  921. <p>Service defines which service should be used to fetch the secrets</p>
  922. </td>
  923. </tr>
  924. <tr>
  925. <td>
  926. <code>auth</code></br>
  927. <em>
  928. <a href="#external-secrets.io/v1beta1.AWSAuth">
  929. AWSAuth
  930. </a>
  931. </em>
  932. </td>
  933. <td>
  934. <em>(Optional)</em>
  935. <p>Auth defines the information necessary to authenticate against AWS
  936. if not set aws sdk will infer credentials from your environment
  937. see: <a href="https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials">https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials</a></p>
  938. </td>
  939. </tr>
  940. <tr>
  941. <td>
  942. <code>role</code></br>
  943. <em>
  944. string
  945. </em>
  946. </td>
  947. <td>
  948. <em>(Optional)</em>
  949. <p>Role is a Role ARN which the SecretManager provider will assume</p>
  950. </td>
  951. </tr>
  952. <tr>
  953. <td>
  954. <code>region</code></br>
  955. <em>
  956. string
  957. </em>
  958. </td>
  959. <td>
  960. <p>AWS Region to be used for the provider</p>
  961. </td>
  962. </tr>
  963. </tbody>
  964. </table>
  965. <h3 id="external-secrets.io/v1beta1.AWSServiceType">AWSServiceType
  966. (<code>string</code> alias)</p></h3>
  967. <p>
  968. (<em>Appears on:</em>
  969. <a href="#external-secrets.io/v1beta1.AWSProvider">AWSProvider</a>)
  970. </p>
  971. <p>
  972. <p>AWSServiceType is a enum that defines the service/API that is used to fetch the secrets.</p>
  973. </p>
  974. <table>
  975. <thead>
  976. <tr>
  977. <th>Value</th>
  978. <th>Description</th>
  979. </tr>
  980. </thead>
  981. <tbody><tr><td><p>&#34;ParameterStore&#34;</p></td>
  982. <td><p>AWSServiceParameterStore is the AWS SystemsManager ParameterStore.
  983. see: <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html">https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-parameter-store.html</a></p>
  984. </td>
  985. </tr><tr><td><p>&#34;SecretsManager&#34;</p></td>
  986. <td><p>AWSServiceSecretsManager is the AWS SecretsManager.
  987. see: <a href="https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html">https://docs.aws.amazon.com/secretsmanager/latest/userguide/intro.html</a></p>
  988. </td>
  989. </tr></tbody>
  990. </table>
  991. <h3 id="external-secrets.io/v1beta1.AkeylessAuth">AkeylessAuth
  992. </h3>
  993. <p>
  994. (<em>Appears on:</em>
  995. <a href="#external-secrets.io/v1beta1.AkeylessProvider">AkeylessProvider</a>)
  996. </p>
  997. <p>
  998. </p>
  999. <table>
  1000. <thead>
  1001. <tr>
  1002. <th>Field</th>
  1003. <th>Description</th>
  1004. </tr>
  1005. </thead>
  1006. <tbody>
  1007. <tr>
  1008. <td>
  1009. <code>secretRef</code></br>
  1010. <em>
  1011. <a href="#external-secrets.io/v1beta1.AkeylessAuthSecretRef">
  1012. AkeylessAuthSecretRef
  1013. </a>
  1014. </em>
  1015. </td>
  1016. <td>
  1017. <em>(Optional)</em>
  1018. <p>Reference to a Secret that contains the details
  1019. to authenticate with Akeyless.</p>
  1020. </td>
  1021. </tr>
  1022. <tr>
  1023. <td>
  1024. <code>kubernetesAuth</code></br>
  1025. <em>
  1026. <a href="#external-secrets.io/v1beta1.AkeylessKubernetesAuth">
  1027. AkeylessKubernetesAuth
  1028. </a>
  1029. </em>
  1030. </td>
  1031. <td>
  1032. <em>(Optional)</em>
  1033. <p>Kubernetes authenticates with Akeyless by passing the ServiceAccount
  1034. token stored in the named Secret resource.</p>
  1035. </td>
  1036. </tr>
  1037. </tbody>
  1038. </table>
  1039. <h3 id="external-secrets.io/v1beta1.AkeylessAuthSecretRef">AkeylessAuthSecretRef
  1040. </h3>
  1041. <p>
  1042. (<em>Appears on:</em>
  1043. <a href="#external-secrets.io/v1beta1.AkeylessAuth">AkeylessAuth</a>)
  1044. </p>
  1045. <p>
  1046. <p>AkeylessAuthSecretRef
  1047. AKEYLESS_ACCESS_TYPE_PARAM: AZURE_OBJ_ID OR GCP_AUDIENCE OR ACCESS_KEY OR KUB_CONFIG_NAME.</p>
  1048. </p>
  1049. <table>
  1050. <thead>
  1051. <tr>
  1052. <th>Field</th>
  1053. <th>Description</th>
  1054. </tr>
  1055. </thead>
  1056. <tbody>
  1057. <tr>
  1058. <td>
  1059. <code>accessID</code></br>
  1060. <em>
  1061. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1062. </em>
  1063. </td>
  1064. <td>
  1065. <p>The SecretAccessID is used for authentication</p>
  1066. </td>
  1067. </tr>
  1068. <tr>
  1069. <td>
  1070. <code>accessType</code></br>
  1071. <em>
  1072. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1073. </em>
  1074. </td>
  1075. <td>
  1076. </td>
  1077. </tr>
  1078. <tr>
  1079. <td>
  1080. <code>accessTypeParam</code></br>
  1081. <em>
  1082. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1083. </em>
  1084. </td>
  1085. <td>
  1086. </td>
  1087. </tr>
  1088. </tbody>
  1089. </table>
  1090. <h3 id="external-secrets.io/v1beta1.AkeylessKubernetesAuth">AkeylessKubernetesAuth
  1091. </h3>
  1092. <p>
  1093. (<em>Appears on:</em>
  1094. <a href="#external-secrets.io/v1beta1.AkeylessAuth">AkeylessAuth</a>)
  1095. </p>
  1096. <p>
  1097. <p>Authenticate with Kubernetes ServiceAccount token stored.</p>
  1098. </p>
  1099. <table>
  1100. <thead>
  1101. <tr>
  1102. <th>Field</th>
  1103. <th>Description</th>
  1104. </tr>
  1105. </thead>
  1106. <tbody>
  1107. <tr>
  1108. <td>
  1109. <code>accessID</code></br>
  1110. <em>
  1111. string
  1112. </em>
  1113. </td>
  1114. <td>
  1115. <p>the Akeyless Kubernetes auth-method access-id</p>
  1116. </td>
  1117. </tr>
  1118. <tr>
  1119. <td>
  1120. <code>k8sConfName</code></br>
  1121. <em>
  1122. string
  1123. </em>
  1124. </td>
  1125. <td>
  1126. <p>Kubernetes-auth configuration name in Akeyless-Gateway</p>
  1127. </td>
  1128. </tr>
  1129. <tr>
  1130. <td>
  1131. <code>serviceAccountRef</code></br>
  1132. <em>
  1133. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  1134. </em>
  1135. </td>
  1136. <td>
  1137. <em>(Optional)</em>
  1138. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  1139. If the service account is specified, the service account secret token JWT will be used
  1140. for authenticating with Akeyless. If the service account selector is not supplied,
  1141. the secretRef will be used instead.</p>
  1142. </td>
  1143. </tr>
  1144. <tr>
  1145. <td>
  1146. <code>secretRef</code></br>
  1147. <em>
  1148. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1149. </em>
  1150. </td>
  1151. <td>
  1152. <em>(Optional)</em>
  1153. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  1154. for authenticating with Akeyless. If a name is specified without a key,
  1155. <code>token</code> is the default. If one is not specified, the one bound to
  1156. the controller will be used.</p>
  1157. </td>
  1158. </tr>
  1159. </tbody>
  1160. </table>
  1161. <h3 id="external-secrets.io/v1beta1.AkeylessProvider">AkeylessProvider
  1162. </h3>
  1163. <p>
  1164. (<em>Appears on:</em>
  1165. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  1166. </p>
  1167. <p>
  1168. <p>AkeylessProvider Configures an store to sync secrets using Akeyless KV.</p>
  1169. </p>
  1170. <table>
  1171. <thead>
  1172. <tr>
  1173. <th>Field</th>
  1174. <th>Description</th>
  1175. </tr>
  1176. </thead>
  1177. <tbody>
  1178. <tr>
  1179. <td>
  1180. <code>akeylessGWApiURL</code></br>
  1181. <em>
  1182. string
  1183. </em>
  1184. </td>
  1185. <td>
  1186. <p>Akeyless GW API Url from which the secrets to be fetched from.</p>
  1187. </td>
  1188. </tr>
  1189. <tr>
  1190. <td>
  1191. <code>authSecretRef</code></br>
  1192. <em>
  1193. <a href="#external-secrets.io/v1beta1.AkeylessAuth">
  1194. AkeylessAuth
  1195. </a>
  1196. </em>
  1197. </td>
  1198. <td>
  1199. <p>Auth configures how the operator authenticates with Akeyless.</p>
  1200. </td>
  1201. </tr>
  1202. </tbody>
  1203. </table>
  1204. <h3 id="external-secrets.io/v1beta1.AlibabaAuth">AlibabaAuth
  1205. </h3>
  1206. <p>
  1207. (<em>Appears on:</em>
  1208. <a href="#external-secrets.io/v1beta1.AlibabaProvider">AlibabaProvider</a>)
  1209. </p>
  1210. <p>
  1211. <p>AlibabaAuth contains a secretRef for credentials.</p>
  1212. </p>
  1213. <table>
  1214. <thead>
  1215. <tr>
  1216. <th>Field</th>
  1217. <th>Description</th>
  1218. </tr>
  1219. </thead>
  1220. <tbody>
  1221. <tr>
  1222. <td>
  1223. <code>secretRef</code></br>
  1224. <em>
  1225. <a href="#external-secrets.io/v1beta1.AlibabaAuthSecretRef">
  1226. AlibabaAuthSecretRef
  1227. </a>
  1228. </em>
  1229. </td>
  1230. <td>
  1231. </td>
  1232. </tr>
  1233. </tbody>
  1234. </table>
  1235. <h3 id="external-secrets.io/v1beta1.AlibabaAuthSecretRef">AlibabaAuthSecretRef
  1236. </h3>
  1237. <p>
  1238. (<em>Appears on:</em>
  1239. <a href="#external-secrets.io/v1beta1.AlibabaAuth">AlibabaAuth</a>)
  1240. </p>
  1241. <p>
  1242. <p>AlibabaAuthSecretRef holds secret references for Alibaba credentials.</p>
  1243. </p>
  1244. <table>
  1245. <thead>
  1246. <tr>
  1247. <th>Field</th>
  1248. <th>Description</th>
  1249. </tr>
  1250. </thead>
  1251. <tbody>
  1252. <tr>
  1253. <td>
  1254. <code>accessKeyIDSecretRef</code></br>
  1255. <em>
  1256. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1257. </em>
  1258. </td>
  1259. <td>
  1260. <p>The AccessKeyID is used for authentication</p>
  1261. </td>
  1262. </tr>
  1263. <tr>
  1264. <td>
  1265. <code>accessKeySecretSecretRef</code></br>
  1266. <em>
  1267. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1268. </em>
  1269. </td>
  1270. <td>
  1271. <p>The AccessKeySecret is used for authentication</p>
  1272. </td>
  1273. </tr>
  1274. </tbody>
  1275. </table>
  1276. <h3 id="external-secrets.io/v1beta1.AlibabaProvider">AlibabaProvider
  1277. </h3>
  1278. <p>
  1279. (<em>Appears on:</em>
  1280. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  1281. </p>
  1282. <p>
  1283. <p>AlibabaProvider configures a store to sync secrets using the Alibaba Secret Manager provider.</p>
  1284. </p>
  1285. <table>
  1286. <thead>
  1287. <tr>
  1288. <th>Field</th>
  1289. <th>Description</th>
  1290. </tr>
  1291. </thead>
  1292. <tbody>
  1293. <tr>
  1294. <td>
  1295. <code>auth</code></br>
  1296. <em>
  1297. <a href="#external-secrets.io/v1beta1.AlibabaAuth">
  1298. AlibabaAuth
  1299. </a>
  1300. </em>
  1301. </td>
  1302. <td>
  1303. </td>
  1304. </tr>
  1305. <tr>
  1306. <td>
  1307. <code>endpoint</code></br>
  1308. <em>
  1309. string
  1310. </em>
  1311. </td>
  1312. <td>
  1313. <em>(Optional)</em>
  1314. </td>
  1315. </tr>
  1316. <tr>
  1317. <td>
  1318. <code>regionID</code></br>
  1319. <em>
  1320. string
  1321. </em>
  1322. </td>
  1323. <td>
  1324. <p>Alibaba Region to be used for the provider</p>
  1325. </td>
  1326. </tr>
  1327. </tbody>
  1328. </table>
  1329. <h3 id="external-secrets.io/v1beta1.AzureAuthType">AzureAuthType
  1330. (<code>string</code> alias)</p></h3>
  1331. <p>
  1332. (<em>Appears on:</em>
  1333. <a href="#external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider</a>)
  1334. </p>
  1335. <p>
  1336. <p>AuthType describes how to authenticate to the Azure Keyvault
  1337. Only one of the following auth types may be specified.
  1338. If none of the following auth type is specified, the default one
  1339. is ServicePrincipal.</p>
  1340. </p>
  1341. <table>
  1342. <thead>
  1343. <tr>
  1344. <th>Value</th>
  1345. <th>Description</th>
  1346. </tr>
  1347. </thead>
  1348. <tbody><tr><td><p>&#34;ManagedIdentity&#34;</p></td>
  1349. <td><p>Using Managed Identity to authenticate. Used with aad-pod-identity installed in the cluster.</p>
  1350. </td>
  1351. </tr><tr><td><p>&#34;ServicePrincipal&#34;</p></td>
  1352. <td><p>Using service principal to authenticate, which needs a tenantId, a clientId and a clientSecret.</p>
  1353. </td>
  1354. </tr><tr><td><p>&#34;WorkloadIdentity&#34;</p></td>
  1355. <td><p>Using Workload Identity service accounts to authenticate.</p>
  1356. </td>
  1357. </tr></tbody>
  1358. </table>
  1359. <h3 id="external-secrets.io/v1beta1.AzureEnvironmentType">AzureEnvironmentType
  1360. (<code>string</code> alias)</p></h3>
  1361. <p>
  1362. (<em>Appears on:</em>
  1363. <a href="#external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider</a>)
  1364. </p>
  1365. <p>
  1366. <p>AzureEnvironmentType specifies the Azure cloud environment endpoints to use for
  1367. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  1368. The following endpoints are available, also see here: <a href="https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152">https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152</a>
  1369. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud</p>
  1370. </p>
  1371. <table>
  1372. <thead>
  1373. <tr>
  1374. <th>Value</th>
  1375. <th>Description</th>
  1376. </tr>
  1377. </thead>
  1378. <tbody><tr><td><p>&#34;ChinaCloud&#34;</p></td>
  1379. <td></td>
  1380. </tr><tr><td><p>&#34;GermanCloud&#34;</p></td>
  1381. <td></td>
  1382. </tr><tr><td><p>&#34;PublicCloud&#34;</p></td>
  1383. <td></td>
  1384. </tr><tr><td><p>&#34;USGovernmentCloud&#34;</p></td>
  1385. <td></td>
  1386. </tr></tbody>
  1387. </table>
  1388. <h3 id="external-secrets.io/v1beta1.AzureKVAuth">AzureKVAuth
  1389. </h3>
  1390. <p>
  1391. (<em>Appears on:</em>
  1392. <a href="#external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider</a>)
  1393. </p>
  1394. <p>
  1395. <p>Configuration used to authenticate with Azure.</p>
  1396. </p>
  1397. <table>
  1398. <thead>
  1399. <tr>
  1400. <th>Field</th>
  1401. <th>Description</th>
  1402. </tr>
  1403. </thead>
  1404. <tbody>
  1405. <tr>
  1406. <td>
  1407. <code>clientId</code></br>
  1408. <em>
  1409. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1410. </em>
  1411. </td>
  1412. <td>
  1413. <em>(Optional)</em>
  1414. <p>The Azure clientId of the service principle used for authentication.</p>
  1415. </td>
  1416. </tr>
  1417. <tr>
  1418. <td>
  1419. <code>clientSecret</code></br>
  1420. <em>
  1421. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1422. </em>
  1423. </td>
  1424. <td>
  1425. <em>(Optional)</em>
  1426. <p>The Azure ClientSecret of the service principle used for authentication.</p>
  1427. </td>
  1428. </tr>
  1429. </tbody>
  1430. </table>
  1431. <h3 id="external-secrets.io/v1beta1.AzureKVProvider">AzureKVProvider
  1432. </h3>
  1433. <p>
  1434. (<em>Appears on:</em>
  1435. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  1436. </p>
  1437. <p>
  1438. <p>Configures an store to sync secrets using Azure KV.</p>
  1439. </p>
  1440. <table>
  1441. <thead>
  1442. <tr>
  1443. <th>Field</th>
  1444. <th>Description</th>
  1445. </tr>
  1446. </thead>
  1447. <tbody>
  1448. <tr>
  1449. <td>
  1450. <code>authType</code></br>
  1451. <em>
  1452. <a href="#external-secrets.io/v1beta1.AzureAuthType">
  1453. AzureAuthType
  1454. </a>
  1455. </em>
  1456. </td>
  1457. <td>
  1458. <em>(Optional)</em>
  1459. <p>Auth type defines how to authenticate to the keyvault service.
  1460. Valid values are:
  1461. - &ldquo;ServicePrincipal&rdquo; (default): Using a service principal (tenantId, clientId, clientSecret)
  1462. - &ldquo;ManagedIdentity&rdquo;: Using Managed Identity assigned to the pod (see aad-pod-identity)</p>
  1463. </td>
  1464. </tr>
  1465. <tr>
  1466. <td>
  1467. <code>vaultUrl</code></br>
  1468. <em>
  1469. string
  1470. </em>
  1471. </td>
  1472. <td>
  1473. <p>Vault Url from which the secrets to be fetched from.</p>
  1474. </td>
  1475. </tr>
  1476. <tr>
  1477. <td>
  1478. <code>tenantId</code></br>
  1479. <em>
  1480. string
  1481. </em>
  1482. </td>
  1483. <td>
  1484. <em>(Optional)</em>
  1485. <p>TenantID configures the Azure Tenant to send requests to. Required for ServicePrincipal auth type.</p>
  1486. </td>
  1487. </tr>
  1488. <tr>
  1489. <td>
  1490. <code>environmentType</code></br>
  1491. <em>
  1492. <a href="#external-secrets.io/v1beta1.AzureEnvironmentType">
  1493. AzureEnvironmentType
  1494. </a>
  1495. </em>
  1496. </td>
  1497. <td>
  1498. <p>EnvironmentType specifies the Azure cloud environment endpoints to use for
  1499. connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint.
  1500. The following endpoints are available, also see here: <a href="https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152">https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152</a>
  1501. PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud</p>
  1502. </td>
  1503. </tr>
  1504. <tr>
  1505. <td>
  1506. <code>authSecretRef</code></br>
  1507. <em>
  1508. <a href="#external-secrets.io/v1beta1.AzureKVAuth">
  1509. AzureKVAuth
  1510. </a>
  1511. </em>
  1512. </td>
  1513. <td>
  1514. <em>(Optional)</em>
  1515. <p>Auth configures how the operator authenticates with Azure. Required for ServicePrincipal auth type.</p>
  1516. </td>
  1517. </tr>
  1518. <tr>
  1519. <td>
  1520. <code>serviceAccountRef</code></br>
  1521. <em>
  1522. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  1523. </em>
  1524. </td>
  1525. <td>
  1526. <em>(Optional)</em>
  1527. <p>ServiceAccountRef specified the service account
  1528. that should be used when authenticating with WorkloadIdentity.</p>
  1529. </td>
  1530. </tr>
  1531. <tr>
  1532. <td>
  1533. <code>identityId</code></br>
  1534. <em>
  1535. string
  1536. </em>
  1537. </td>
  1538. <td>
  1539. <em>(Optional)</em>
  1540. <p>If multiple Managed Identity is assigned to the pod, you can select the one to be used</p>
  1541. </td>
  1542. </tr>
  1543. </tbody>
  1544. </table>
  1545. <h3 id="external-secrets.io/v1beta1.CAProvider">CAProvider
  1546. </h3>
  1547. <p>
  1548. (<em>Appears on:</em>
  1549. <a href="#external-secrets.io/v1beta1.KubernetesServer">KubernetesServer</a>,
  1550. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  1551. </p>
  1552. <p>
  1553. <p>Used to provide custom certificate authority (CA) certificates
  1554. for a secret store. The CAProvider points to a Secret or ConfigMap resource
  1555. that contains a PEM-encoded certificate.</p>
  1556. </p>
  1557. <table>
  1558. <thead>
  1559. <tr>
  1560. <th>Field</th>
  1561. <th>Description</th>
  1562. </tr>
  1563. </thead>
  1564. <tbody>
  1565. <tr>
  1566. <td>
  1567. <code>type</code></br>
  1568. <em>
  1569. <a href="#external-secrets.io/v1beta1.CAProviderType">
  1570. CAProviderType
  1571. </a>
  1572. </em>
  1573. </td>
  1574. <td>
  1575. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  1576. </td>
  1577. </tr>
  1578. <tr>
  1579. <td>
  1580. <code>name</code></br>
  1581. <em>
  1582. string
  1583. </em>
  1584. </td>
  1585. <td>
  1586. <p>The name of the object located at the provider type.</p>
  1587. </td>
  1588. </tr>
  1589. <tr>
  1590. <td>
  1591. <code>key</code></br>
  1592. <em>
  1593. string
  1594. </em>
  1595. </td>
  1596. <td>
  1597. <p>The key where the CA certificate can be found in the Secret or ConfigMap.</p>
  1598. </td>
  1599. </tr>
  1600. <tr>
  1601. <td>
  1602. <code>namespace</code></br>
  1603. <em>
  1604. string
  1605. </em>
  1606. </td>
  1607. <td>
  1608. <em>(Optional)</em>
  1609. <p>The namespace the Provider type is in.
  1610. Can only be defined when used in a ClusterSecretStore.</p>
  1611. </td>
  1612. </tr>
  1613. </tbody>
  1614. </table>
  1615. <h3 id="external-secrets.io/v1beta1.CAProviderType">CAProviderType
  1616. (<code>string</code> alias)</p></h3>
  1617. <p>
  1618. (<em>Appears on:</em>
  1619. <a href="#external-secrets.io/v1beta1.CAProvider">CAProvider</a>)
  1620. </p>
  1621. <p>
  1622. </p>
  1623. <table>
  1624. <thead>
  1625. <tr>
  1626. <th>Value</th>
  1627. <th>Description</th>
  1628. </tr>
  1629. </thead>
  1630. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  1631. <td></td>
  1632. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  1633. <td></td>
  1634. </tr></tbody>
  1635. </table>
  1636. <h3 id="external-secrets.io/v1beta1.CertAuth">CertAuth
  1637. </h3>
  1638. <p>
  1639. (<em>Appears on:</em>
  1640. <a href="#external-secrets.io/v1beta1.KubernetesAuth">KubernetesAuth</a>)
  1641. </p>
  1642. <p>
  1643. </p>
  1644. <table>
  1645. <thead>
  1646. <tr>
  1647. <th>Field</th>
  1648. <th>Description</th>
  1649. </tr>
  1650. </thead>
  1651. <tbody>
  1652. <tr>
  1653. <td>
  1654. <code>clientCert</code></br>
  1655. <em>
  1656. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1657. </em>
  1658. </td>
  1659. <td>
  1660. </td>
  1661. </tr>
  1662. <tr>
  1663. <td>
  1664. <code>clientKey</code></br>
  1665. <em>
  1666. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  1667. </em>
  1668. </td>
  1669. <td>
  1670. </td>
  1671. </tr>
  1672. </tbody>
  1673. </table>
  1674. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecret">ClusterExternalSecret
  1675. </h3>
  1676. <p>
  1677. <p>ClusterExternalSecret is the Schema for the clusterexternalsecrets API.</p>
  1678. </p>
  1679. <table>
  1680. <thead>
  1681. <tr>
  1682. <th>Field</th>
  1683. <th>Description</th>
  1684. </tr>
  1685. </thead>
  1686. <tbody>
  1687. <tr>
  1688. <td>
  1689. <code>metadata</code></br>
  1690. <em>
  1691. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#objectmeta-v1-meta">
  1692. Kubernetes meta/v1.ObjectMeta
  1693. </a>
  1694. </em>
  1695. </td>
  1696. <td>
  1697. Refer to the Kubernetes API documentation for the fields of the
  1698. <code>metadata</code> field.
  1699. </td>
  1700. </tr>
  1701. <tr>
  1702. <td>
  1703. <code>spec</code></br>
  1704. <em>
  1705. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretSpec">
  1706. ClusterExternalSecretSpec
  1707. </a>
  1708. </em>
  1709. </td>
  1710. <td>
  1711. <br/>
  1712. <br/>
  1713. <table>
  1714. <tr>
  1715. <td>
  1716. <code>externalSecretSpec</code></br>
  1717. <em>
  1718. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">
  1719. ExternalSecretSpec
  1720. </a>
  1721. </em>
  1722. </td>
  1723. <td>
  1724. <p>The spec for the ExternalSecrets to be created</p>
  1725. </td>
  1726. </tr>
  1727. <tr>
  1728. <td>
  1729. <code>externalSecretName</code></br>
  1730. <em>
  1731. string
  1732. </em>
  1733. </td>
  1734. <td>
  1735. <em>(Optional)</em>
  1736. <p>The name of the external secrets to be created defaults to the name of the ClusterExternalSecret</p>
  1737. </td>
  1738. </tr>
  1739. <tr>
  1740. <td>
  1741. <code>namespaceSelector</code></br>
  1742. <em>
  1743. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#labelselector-v1-meta">
  1744. Kubernetes meta/v1.LabelSelector
  1745. </a>
  1746. </em>
  1747. </td>
  1748. <td>
  1749. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.</p>
  1750. </td>
  1751. </tr>
  1752. <tr>
  1753. <td>
  1754. <code>refreshTime</code></br>
  1755. <em>
  1756. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#duration-v1-meta">
  1757. Kubernetes meta/v1.Duration
  1758. </a>
  1759. </em>
  1760. </td>
  1761. <td>
  1762. <p>The time in which the controller should reconcile it&rsquo;s objects and recheck namespaces for labels.</p>
  1763. </td>
  1764. </tr>
  1765. </table>
  1766. </td>
  1767. </tr>
  1768. <tr>
  1769. <td>
  1770. <code>status</code></br>
  1771. <em>
  1772. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatus">
  1773. ClusterExternalSecretStatus
  1774. </a>
  1775. </em>
  1776. </td>
  1777. <td>
  1778. </td>
  1779. </tr>
  1780. </tbody>
  1781. </table>
  1782. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretConditionType">ClusterExternalSecretConditionType
  1783. (<code>string</code> alias)</p></h3>
  1784. <p>
  1785. (<em>Appears on:</em>
  1786. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition</a>)
  1787. </p>
  1788. <p>
  1789. </p>
  1790. <table>
  1791. <thead>
  1792. <tr>
  1793. <th>Value</th>
  1794. <th>Description</th>
  1795. </tr>
  1796. </thead>
  1797. <tbody><tr><td><p>&#34;NotReady&#34;</p></td>
  1798. <td></td>
  1799. </tr><tr><td><p>&#34;PartiallyReady&#34;</p></td>
  1800. <td></td>
  1801. </tr><tr><td><p>&#34;Ready&#34;</p></td>
  1802. <td></td>
  1803. </tr></tbody>
  1804. </table>
  1805. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretNamespaceFailure">ClusterExternalSecretNamespaceFailure
  1806. </h3>
  1807. <p>
  1808. (<em>Appears on:</em>
  1809. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  1810. </p>
  1811. <p>
  1812. <p>ClusterExternalSecretNamespaceFailure represents a failed namespace deployment and it&rsquo;s reason.</p>
  1813. </p>
  1814. <table>
  1815. <thead>
  1816. <tr>
  1817. <th>Field</th>
  1818. <th>Description</th>
  1819. </tr>
  1820. </thead>
  1821. <tbody>
  1822. <tr>
  1823. <td>
  1824. <code>namespace</code></br>
  1825. <em>
  1826. string
  1827. </em>
  1828. </td>
  1829. <td>
  1830. <p>Namespace is the namespace that failed when trying to apply an ExternalSecret</p>
  1831. </td>
  1832. </tr>
  1833. <tr>
  1834. <td>
  1835. <code>reason</code></br>
  1836. <em>
  1837. string
  1838. </em>
  1839. </td>
  1840. <td>
  1841. <em>(Optional)</em>
  1842. <p>Reason is why the ExternalSecret failed to apply to the namespace</p>
  1843. </td>
  1844. </tr>
  1845. </tbody>
  1846. </table>
  1847. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretSpec">ClusterExternalSecretSpec
  1848. </h3>
  1849. <p>
  1850. (<em>Appears on:</em>
  1851. <a href="#external-secrets.io/v1beta1.ClusterExternalSecret">ClusterExternalSecret</a>)
  1852. </p>
  1853. <p>
  1854. <p>ClusterExternalSecretSpec defines the desired state of ClusterExternalSecret.</p>
  1855. </p>
  1856. <table>
  1857. <thead>
  1858. <tr>
  1859. <th>Field</th>
  1860. <th>Description</th>
  1861. </tr>
  1862. </thead>
  1863. <tbody>
  1864. <tr>
  1865. <td>
  1866. <code>externalSecretSpec</code></br>
  1867. <em>
  1868. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">
  1869. ExternalSecretSpec
  1870. </a>
  1871. </em>
  1872. </td>
  1873. <td>
  1874. <p>The spec for the ExternalSecrets to be created</p>
  1875. </td>
  1876. </tr>
  1877. <tr>
  1878. <td>
  1879. <code>externalSecretName</code></br>
  1880. <em>
  1881. string
  1882. </em>
  1883. </td>
  1884. <td>
  1885. <em>(Optional)</em>
  1886. <p>The name of the external secrets to be created defaults to the name of the ClusterExternalSecret</p>
  1887. </td>
  1888. </tr>
  1889. <tr>
  1890. <td>
  1891. <code>namespaceSelector</code></br>
  1892. <em>
  1893. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#labelselector-v1-meta">
  1894. Kubernetes meta/v1.LabelSelector
  1895. </a>
  1896. </em>
  1897. </td>
  1898. <td>
  1899. <p>The labels to select by to find the Namespaces to create the ExternalSecrets in.</p>
  1900. </td>
  1901. </tr>
  1902. <tr>
  1903. <td>
  1904. <code>refreshTime</code></br>
  1905. <em>
  1906. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#duration-v1-meta">
  1907. Kubernetes meta/v1.Duration
  1908. </a>
  1909. </em>
  1910. </td>
  1911. <td>
  1912. <p>The time in which the controller should reconcile it&rsquo;s objects and recheck namespaces for labels.</p>
  1913. </td>
  1914. </tr>
  1915. </tbody>
  1916. </table>
  1917. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretStatus">ClusterExternalSecretStatus
  1918. </h3>
  1919. <p>
  1920. (<em>Appears on:</em>
  1921. <a href="#external-secrets.io/v1beta1.ClusterExternalSecret">ClusterExternalSecret</a>)
  1922. </p>
  1923. <p>
  1924. <p>ClusterExternalSecretStatus defines the observed state of ClusterExternalSecret.</p>
  1925. </p>
  1926. <table>
  1927. <thead>
  1928. <tr>
  1929. <th>Field</th>
  1930. <th>Description</th>
  1931. </tr>
  1932. </thead>
  1933. <tbody>
  1934. <tr>
  1935. <td>
  1936. <code>failedNamespaces</code></br>
  1937. <em>
  1938. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretNamespaceFailure">
  1939. []ClusterExternalSecretNamespaceFailure
  1940. </a>
  1941. </em>
  1942. </td>
  1943. <td>
  1944. <em>(Optional)</em>
  1945. <p>Failed namespaces are the namespaces that failed to apply an ExternalSecret</p>
  1946. </td>
  1947. </tr>
  1948. <tr>
  1949. <td>
  1950. <code>provisionedNamespaces</code></br>
  1951. <em>
  1952. []string
  1953. </em>
  1954. </td>
  1955. <td>
  1956. <em>(Optional)</em>
  1957. <p>ProvisionedNamespaces are the namespaces where the ClusterExternalSecret has secrets</p>
  1958. </td>
  1959. </tr>
  1960. <tr>
  1961. <td>
  1962. <code>conditions</code></br>
  1963. <em>
  1964. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatusCondition">
  1965. []ClusterExternalSecretStatusCondition
  1966. </a>
  1967. </em>
  1968. </td>
  1969. <td>
  1970. <em>(Optional)</em>
  1971. </td>
  1972. </tr>
  1973. </tbody>
  1974. </table>
  1975. <h3 id="external-secrets.io/v1beta1.ClusterExternalSecretStatusCondition">ClusterExternalSecretStatusCondition
  1976. </h3>
  1977. <p>
  1978. (<em>Appears on:</em>
  1979. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretStatus">ClusterExternalSecretStatus</a>)
  1980. </p>
  1981. <p>
  1982. </p>
  1983. <table>
  1984. <thead>
  1985. <tr>
  1986. <th>Field</th>
  1987. <th>Description</th>
  1988. </tr>
  1989. </thead>
  1990. <tbody>
  1991. <tr>
  1992. <td>
  1993. <code>type</code></br>
  1994. <em>
  1995. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretConditionType">
  1996. ClusterExternalSecretConditionType
  1997. </a>
  1998. </em>
  1999. </td>
  2000. <td>
  2001. </td>
  2002. </tr>
  2003. <tr>
  2004. <td>
  2005. <code>status</code></br>
  2006. <em>
  2007. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#conditionstatus-v1-core">
  2008. Kubernetes core/v1.ConditionStatus
  2009. </a>
  2010. </em>
  2011. </td>
  2012. <td>
  2013. </td>
  2014. </tr>
  2015. <tr>
  2016. <td>
  2017. <code>message</code></br>
  2018. <em>
  2019. string
  2020. </em>
  2021. </td>
  2022. <td>
  2023. <em>(Optional)</em>
  2024. </td>
  2025. </tr>
  2026. </tbody>
  2027. </table>
  2028. <h3 id="external-secrets.io/v1beta1.ClusterSecretStore">ClusterSecretStore
  2029. </h3>
  2030. <p>
  2031. <p>ClusterSecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  2032. </p>
  2033. <table>
  2034. <thead>
  2035. <tr>
  2036. <th>Field</th>
  2037. <th>Description</th>
  2038. </tr>
  2039. </thead>
  2040. <tbody>
  2041. <tr>
  2042. <td>
  2043. <code>metadata</code></br>
  2044. <em>
  2045. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#objectmeta-v1-meta">
  2046. Kubernetes meta/v1.ObjectMeta
  2047. </a>
  2048. </em>
  2049. </td>
  2050. <td>
  2051. Refer to the Kubernetes API documentation for the fields of the
  2052. <code>metadata</code> field.
  2053. </td>
  2054. </tr>
  2055. <tr>
  2056. <td>
  2057. <code>spec</code></br>
  2058. <em>
  2059. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">
  2060. SecretStoreSpec
  2061. </a>
  2062. </em>
  2063. </td>
  2064. <td>
  2065. <br/>
  2066. <br/>
  2067. <table>
  2068. <tr>
  2069. <td>
  2070. <code>controller</code></br>
  2071. <em>
  2072. string
  2073. </em>
  2074. </td>
  2075. <td>
  2076. <em>(Optional)</em>
  2077. <p>Used to select the correct KES controller (think: ingress.ingressClassName)
  2078. The KES controller is instantiated with a specific controller name and filters ES based on this property</p>
  2079. </td>
  2080. </tr>
  2081. <tr>
  2082. <td>
  2083. <code>provider</code></br>
  2084. <em>
  2085. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">
  2086. SecretStoreProvider
  2087. </a>
  2088. </em>
  2089. </td>
  2090. <td>
  2091. <p>Used to configure the provider. Only one provider may be set</p>
  2092. </td>
  2093. </tr>
  2094. <tr>
  2095. <td>
  2096. <code>retrySettings</code></br>
  2097. <em>
  2098. <a href="#external-secrets.io/v1beta1.SecretStoreRetrySettings">
  2099. SecretStoreRetrySettings
  2100. </a>
  2101. </em>
  2102. </td>
  2103. <td>
  2104. <em>(Optional)</em>
  2105. <p>Used to configure http retries if failed</p>
  2106. </td>
  2107. </tr>
  2108. <tr>
  2109. <td>
  2110. <code>refreshInterval</code></br>
  2111. <em>
  2112. int
  2113. </em>
  2114. </td>
  2115. <td>
  2116. <em>(Optional)</em>
  2117. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  2118. </td>
  2119. </tr>
  2120. <tr>
  2121. <td>
  2122. <code>conditions</code></br>
  2123. <em>
  2124. <a href="#external-secrets.io/v1beta1.ClusterSecretStoreCondition">
  2125. []ClusterSecretStoreCondition
  2126. </a>
  2127. </em>
  2128. </td>
  2129. <td>
  2130. <em>(Optional)</em>
  2131. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  2132. </td>
  2133. </tr>
  2134. </table>
  2135. </td>
  2136. </tr>
  2137. <tr>
  2138. <td>
  2139. <code>status</code></br>
  2140. <em>
  2141. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">
  2142. SecretStoreStatus
  2143. </a>
  2144. </em>
  2145. </td>
  2146. <td>
  2147. </td>
  2148. </tr>
  2149. </tbody>
  2150. </table>
  2151. <h3 id="external-secrets.io/v1beta1.ClusterSecretStoreCondition">ClusterSecretStoreCondition
  2152. </h3>
  2153. <p>
  2154. (<em>Appears on:</em>
  2155. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec</a>)
  2156. </p>
  2157. <p>
  2158. <p>ClusterSecretStoreCondition describes a condition by which to choose namespaces to process ExternalSecrets in
  2159. for a ClusterSecretStore instance.</p>
  2160. </p>
  2161. <table>
  2162. <thead>
  2163. <tr>
  2164. <th>Field</th>
  2165. <th>Description</th>
  2166. </tr>
  2167. </thead>
  2168. <tbody>
  2169. <tr>
  2170. <td>
  2171. <code>namespaceSelector</code></br>
  2172. <em>
  2173. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#labelselector-v1-meta">
  2174. Kubernetes meta/v1.LabelSelector
  2175. </a>
  2176. </em>
  2177. </td>
  2178. <td>
  2179. <em>(Optional)</em>
  2180. <p>Choose namespace using a labelSelector</p>
  2181. </td>
  2182. </tr>
  2183. <tr>
  2184. <td>
  2185. <code>namespaces</code></br>
  2186. <em>
  2187. []string
  2188. </em>
  2189. </td>
  2190. <td>
  2191. <p>Choose namespaces by name</p>
  2192. </td>
  2193. </tr>
  2194. </tbody>
  2195. </table>
  2196. <h3 id="external-secrets.io/v1beta1.DopplerAuth">DopplerAuth
  2197. </h3>
  2198. <p>
  2199. (<em>Appears on:</em>
  2200. <a href="#external-secrets.io/v1beta1.DopplerProvider">DopplerProvider</a>)
  2201. </p>
  2202. <p>
  2203. </p>
  2204. <table>
  2205. <thead>
  2206. <tr>
  2207. <th>Field</th>
  2208. <th>Description</th>
  2209. </tr>
  2210. </thead>
  2211. <tbody>
  2212. <tr>
  2213. <td>
  2214. <code>secretRef</code></br>
  2215. <em>
  2216. <a href="#external-secrets.io/v1beta1.DopplerAuthSecretRef">
  2217. DopplerAuthSecretRef
  2218. </a>
  2219. </em>
  2220. </td>
  2221. <td>
  2222. </td>
  2223. </tr>
  2224. </tbody>
  2225. </table>
  2226. <h3 id="external-secrets.io/v1beta1.DopplerAuthSecretRef">DopplerAuthSecretRef
  2227. </h3>
  2228. <p>
  2229. (<em>Appears on:</em>
  2230. <a href="#external-secrets.io/v1beta1.DopplerAuth">DopplerAuth</a>)
  2231. </p>
  2232. <p>
  2233. </p>
  2234. <table>
  2235. <thead>
  2236. <tr>
  2237. <th>Field</th>
  2238. <th>Description</th>
  2239. </tr>
  2240. </thead>
  2241. <tbody>
  2242. <tr>
  2243. <td>
  2244. <code>dopplerToken</code></br>
  2245. <em>
  2246. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  2247. </em>
  2248. </td>
  2249. <td>
  2250. <p>The DopplerToken is used for authentication.
  2251. See <a href="https://docs.doppler.com/reference/api#authentication">https://docs.doppler.com/reference/api#authentication</a> for auth token types.
  2252. The Key attribute defaults to dopplerToken if not specified.</p>
  2253. </td>
  2254. </tr>
  2255. </tbody>
  2256. </table>
  2257. <h3 id="external-secrets.io/v1beta1.DopplerProvider">DopplerProvider
  2258. </h3>
  2259. <p>
  2260. (<em>Appears on:</em>
  2261. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  2262. </p>
  2263. <p>
  2264. <p>DopplerProvider configures a store to sync secrets using the Doppler provider.
  2265. Project and Config are required if not using a Service Token.</p>
  2266. </p>
  2267. <table>
  2268. <thead>
  2269. <tr>
  2270. <th>Field</th>
  2271. <th>Description</th>
  2272. </tr>
  2273. </thead>
  2274. <tbody>
  2275. <tr>
  2276. <td>
  2277. <code>auth</code></br>
  2278. <em>
  2279. <a href="#external-secrets.io/v1beta1.DopplerAuth">
  2280. DopplerAuth
  2281. </a>
  2282. </em>
  2283. </td>
  2284. <td>
  2285. <p>Auth configures how the Operator authenticates with the Doppler API</p>
  2286. </td>
  2287. </tr>
  2288. <tr>
  2289. <td>
  2290. <code>project</code></br>
  2291. <em>
  2292. string
  2293. </em>
  2294. </td>
  2295. <td>
  2296. <em>(Optional)</em>
  2297. <p>Doppler project (required if not using a Service Token)</p>
  2298. </td>
  2299. </tr>
  2300. <tr>
  2301. <td>
  2302. <code>config</code></br>
  2303. <em>
  2304. string
  2305. </em>
  2306. </td>
  2307. <td>
  2308. <em>(Optional)</em>
  2309. <p>Doppler config (required if not using a Service Token)</p>
  2310. </td>
  2311. </tr>
  2312. <tr>
  2313. <td>
  2314. <code>nameTransformer</code></br>
  2315. <em>
  2316. string
  2317. </em>
  2318. </td>
  2319. <td>
  2320. <em>(Optional)</em>
  2321. <p>Environment variable compatible name transforms that change secret names to a different format</p>
  2322. </td>
  2323. </tr>
  2324. <tr>
  2325. <td>
  2326. <code>format</code></br>
  2327. <em>
  2328. string
  2329. </em>
  2330. </td>
  2331. <td>
  2332. <em>(Optional)</em>
  2333. <p>Format enables the downloading of secrets as a file (string)</p>
  2334. </td>
  2335. </tr>
  2336. </tbody>
  2337. </table>
  2338. <h3 id="external-secrets.io/v1beta1.ExternalSecret">ExternalSecret
  2339. </h3>
  2340. <p>
  2341. <p>ExternalSecret is the Schema for the external-secrets API.</p>
  2342. </p>
  2343. <table>
  2344. <thead>
  2345. <tr>
  2346. <th>Field</th>
  2347. <th>Description</th>
  2348. </tr>
  2349. </thead>
  2350. <tbody>
  2351. <tr>
  2352. <td>
  2353. <code>metadata</code></br>
  2354. <em>
  2355. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#objectmeta-v1-meta">
  2356. Kubernetes meta/v1.ObjectMeta
  2357. </a>
  2358. </em>
  2359. </td>
  2360. <td>
  2361. Refer to the Kubernetes API documentation for the fields of the
  2362. <code>metadata</code> field.
  2363. </td>
  2364. </tr>
  2365. <tr>
  2366. <td>
  2367. <code>spec</code></br>
  2368. <em>
  2369. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">
  2370. ExternalSecretSpec
  2371. </a>
  2372. </em>
  2373. </td>
  2374. <td>
  2375. <br/>
  2376. <br/>
  2377. <table>
  2378. <tr>
  2379. <td>
  2380. <code>secretStoreRef</code></br>
  2381. <em>
  2382. <a href="#external-secrets.io/v1beta1.SecretStoreRef">
  2383. SecretStoreRef
  2384. </a>
  2385. </em>
  2386. </td>
  2387. <td>
  2388. <em>(Optional)</em>
  2389. </td>
  2390. </tr>
  2391. <tr>
  2392. <td>
  2393. <code>target</code></br>
  2394. <em>
  2395. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">
  2396. ExternalSecretTarget
  2397. </a>
  2398. </em>
  2399. </td>
  2400. <td>
  2401. <em>(Optional)</em>
  2402. </td>
  2403. </tr>
  2404. <tr>
  2405. <td>
  2406. <code>refreshInterval</code></br>
  2407. <em>
  2408. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#duration-v1-meta">
  2409. Kubernetes meta/v1.Duration
  2410. </a>
  2411. </em>
  2412. </td>
  2413. <td>
  2414. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider
  2415. Valid time units are &ldquo;ns&rdquo;, &ldquo;us&rdquo; (or &ldquo;µs&rdquo;), &ldquo;ms&rdquo;, &ldquo;s&rdquo;, &ldquo;m&rdquo;, &ldquo;h&rdquo;
  2416. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  2417. </td>
  2418. </tr>
  2419. <tr>
  2420. <td>
  2421. <code>data</code></br>
  2422. <em>
  2423. <a href="#external-secrets.io/v1beta1.ExternalSecretData">
  2424. []ExternalSecretData
  2425. </a>
  2426. </em>
  2427. </td>
  2428. <td>
  2429. <em>(Optional)</em>
  2430. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  2431. </td>
  2432. </tr>
  2433. <tr>
  2434. <td>
  2435. <code>dataFrom</code></br>
  2436. <em>
  2437. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">
  2438. []ExternalSecretDataFromRemoteRef
  2439. </a>
  2440. </em>
  2441. </td>
  2442. <td>
  2443. <em>(Optional)</em>
  2444. <p>DataFrom is used to fetch all properties from a specific Provider data
  2445. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  2446. </td>
  2447. </tr>
  2448. </table>
  2449. </td>
  2450. </tr>
  2451. <tr>
  2452. <td>
  2453. <code>status</code></br>
  2454. <em>
  2455. <a href="#external-secrets.io/v1beta1.ExternalSecretStatus">
  2456. ExternalSecretStatus
  2457. </a>
  2458. </em>
  2459. </td>
  2460. <td>
  2461. </td>
  2462. </tr>
  2463. </tbody>
  2464. </table>
  2465. <h3 id="external-secrets.io/v1beta1.ExternalSecretConditionType">ExternalSecretConditionType
  2466. (<code>string</code> alias)</p></h3>
  2467. <p>
  2468. (<em>Appears on:</em>
  2469. <a href="#external-secrets.io/v1beta1.ExternalSecretStatusCondition">ExternalSecretStatusCondition</a>)
  2470. </p>
  2471. <p>
  2472. </p>
  2473. <table>
  2474. <thead>
  2475. <tr>
  2476. <th>Value</th>
  2477. <th>Description</th>
  2478. </tr>
  2479. </thead>
  2480. <tbody><tr><td><p>&#34;Deleted&#34;</p></td>
  2481. <td></td>
  2482. </tr><tr><td><p>&#34;Ready&#34;</p></td>
  2483. <td></td>
  2484. </tr></tbody>
  2485. </table>
  2486. <h3 id="external-secrets.io/v1beta1.ExternalSecretConversionStrategy">ExternalSecretConversionStrategy
  2487. (<code>string</code> alias)</p></h3>
  2488. <p>
  2489. (<em>Appears on:</em>
  2490. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  2491. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind</a>)
  2492. </p>
  2493. <p>
  2494. </p>
  2495. <table>
  2496. <thead>
  2497. <tr>
  2498. <th>Value</th>
  2499. <th>Description</th>
  2500. </tr>
  2501. </thead>
  2502. <tbody><tr><td><p>&#34;Default&#34;</p></td>
  2503. <td></td>
  2504. </tr><tr><td><p>&#34;Unicode&#34;</p></td>
  2505. <td></td>
  2506. </tr></tbody>
  2507. </table>
  2508. <h3 id="external-secrets.io/v1beta1.ExternalSecretCreationPolicy">ExternalSecretCreationPolicy
  2509. (<code>string</code> alias)</p></h3>
  2510. <p>
  2511. (<em>Appears on:</em>
  2512. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget</a>)
  2513. </p>
  2514. <p>
  2515. <p>ExternalSecretCreationPolicy defines rules on how to create the resulting Secret.</p>
  2516. </p>
  2517. <table>
  2518. <thead>
  2519. <tr>
  2520. <th>Value</th>
  2521. <th>Description</th>
  2522. </tr>
  2523. </thead>
  2524. <tbody><tr><td><p>&#34;Merge&#34;</p></td>
  2525. <td><p>Merge does not create the Secret, but merges the data fields to the Secret.</p>
  2526. </td>
  2527. </tr><tr><td><p>&#34;None&#34;</p></td>
  2528. <td><p>None does not create a Secret (future use with injector).</p>
  2529. </td>
  2530. </tr><tr><td><p>&#34;Orphan&#34;</p></td>
  2531. <td><p>Orphan creates the Secret and does not set the ownerReference.
  2532. I.e. it will be orphaned after the deletion of the ExternalSecret.</p>
  2533. </td>
  2534. </tr><tr><td><p>&#34;Owner&#34;</p></td>
  2535. <td><p>Owner creates the Secret and sets .metadata.ownerReferences to the ExternalSecret resource.</p>
  2536. </td>
  2537. </tr></tbody>
  2538. </table>
  2539. <h3 id="external-secrets.io/v1beta1.ExternalSecretData">ExternalSecretData
  2540. </h3>
  2541. <p>
  2542. (<em>Appears on:</em>
  2543. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>)
  2544. </p>
  2545. <p>
  2546. <p>ExternalSecretData defines the connection between the Kubernetes Secret key (spec.data.<key>) and the Provider data.</p>
  2547. </p>
  2548. <table>
  2549. <thead>
  2550. <tr>
  2551. <th>Field</th>
  2552. <th>Description</th>
  2553. </tr>
  2554. </thead>
  2555. <tbody>
  2556. <tr>
  2557. <td>
  2558. <code>secretKey</code></br>
  2559. <em>
  2560. string
  2561. </em>
  2562. </td>
  2563. <td>
  2564. <p>SecretKey defines the key in which the controller stores
  2565. the value. This is the key in the Kind=Secret</p>
  2566. </td>
  2567. </tr>
  2568. <tr>
  2569. <td>
  2570. <code>remoteRef</code></br>
  2571. <em>
  2572. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">
  2573. ExternalSecretDataRemoteRef
  2574. </a>
  2575. </em>
  2576. </td>
  2577. <td>
  2578. <p>RemoteRef points to the remote secret and defines
  2579. which secret (version/property/..) to fetch.</p>
  2580. </td>
  2581. </tr>
  2582. <tr>
  2583. <td>
  2584. <code>sourceRef</code></br>
  2585. <em>
  2586. <a href="#external-secrets.io/v1beta1.SourceRef">
  2587. SourceRef
  2588. </a>
  2589. </em>
  2590. </td>
  2591. <td>
  2592. <p>SourceRef allows you to override the source
  2593. from which the value will pulled from.</p>
  2594. </td>
  2595. </tr>
  2596. </tbody>
  2597. </table>
  2598. <h3 id="external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef
  2599. </h3>
  2600. <p>
  2601. (<em>Appears on:</em>
  2602. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>)
  2603. </p>
  2604. <p>
  2605. </p>
  2606. <table>
  2607. <thead>
  2608. <tr>
  2609. <th>Field</th>
  2610. <th>Description</th>
  2611. </tr>
  2612. </thead>
  2613. <tbody>
  2614. <tr>
  2615. <td>
  2616. <code>extract</code></br>
  2617. <em>
  2618. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">
  2619. ExternalSecretDataRemoteRef
  2620. </a>
  2621. </em>
  2622. </td>
  2623. <td>
  2624. <em>(Optional)</em>
  2625. <p>Used to extract multiple key/value pairs from one secret
  2626. Note: Extract does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  2627. </td>
  2628. </tr>
  2629. <tr>
  2630. <td>
  2631. <code>find</code></br>
  2632. <em>
  2633. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">
  2634. ExternalSecretFind
  2635. </a>
  2636. </em>
  2637. </td>
  2638. <td>
  2639. <em>(Optional)</em>
  2640. <p>Used to find secrets based on tags or regular expressions
  2641. Note: Find does not support sourceRef.Generator or sourceRef.GeneratorRef.</p>
  2642. </td>
  2643. </tr>
  2644. <tr>
  2645. <td>
  2646. <code>rewrite</code></br>
  2647. <em>
  2648. <a href="#external-secrets.io/v1beta1.ExternalSecretRewrite">
  2649. []ExternalSecretRewrite
  2650. </a>
  2651. </em>
  2652. </td>
  2653. <td>
  2654. <em>(Optional)</em>
  2655. <p>Used to rewrite secret Keys after getting them from the secret Provider
  2656. Multiple Rewrite operations can be provided. They are applied in a layered order (first to last)</p>
  2657. </td>
  2658. </tr>
  2659. <tr>
  2660. <td>
  2661. <code>sourceRef</code></br>
  2662. <em>
  2663. <a href="#external-secrets.io/v1beta1.SourceRef">
  2664. SourceRef
  2665. </a>
  2666. </em>
  2667. </td>
  2668. <td>
  2669. <p>SourceRef points to a store or generator
  2670. which contains secret values ready to use.
  2671. Use this in combination with Extract or Find pull values out of
  2672. a specific SecretStore.
  2673. When sourceRef points to a generator Extract or Find is not supported.
  2674. The generator returns a static map of values</p>
  2675. </td>
  2676. </tr>
  2677. </tbody>
  2678. </table>
  2679. <h3 id="external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef
  2680. </h3>
  2681. <p>
  2682. (<em>Appears on:</em>
  2683. <a href="#external-secrets.io/v1beta1.ExternalSecretData">ExternalSecretData</a>,
  2684. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  2685. </p>
  2686. <p>
  2687. <p>ExternalSecretDataRemoteRef defines Provider data location.</p>
  2688. </p>
  2689. <table>
  2690. <thead>
  2691. <tr>
  2692. <th>Field</th>
  2693. <th>Description</th>
  2694. </tr>
  2695. </thead>
  2696. <tbody>
  2697. <tr>
  2698. <td>
  2699. <code>key</code></br>
  2700. <em>
  2701. string
  2702. </em>
  2703. </td>
  2704. <td>
  2705. <p>Key is the key used in the Provider, mandatory</p>
  2706. </td>
  2707. </tr>
  2708. <tr>
  2709. <td>
  2710. <code>metadataPolicy</code></br>
  2711. <em>
  2712. <a href="#external-secrets.io/v1beta1.ExternalSecretMetadataPolicy">
  2713. ExternalSecretMetadataPolicy
  2714. </a>
  2715. </em>
  2716. </td>
  2717. <td>
  2718. <em>(Optional)</em>
  2719. <p>Policy for fetching tags/labels from provider secrets, possible options are Fetch, None. Defaults to None</p>
  2720. </td>
  2721. </tr>
  2722. <tr>
  2723. <td>
  2724. <code>property</code></br>
  2725. <em>
  2726. string
  2727. </em>
  2728. </td>
  2729. <td>
  2730. <em>(Optional)</em>
  2731. <p>Used to select a specific property of the Provider value (if a map), if supported</p>
  2732. </td>
  2733. </tr>
  2734. <tr>
  2735. <td>
  2736. <code>version</code></br>
  2737. <em>
  2738. string
  2739. </em>
  2740. </td>
  2741. <td>
  2742. <em>(Optional)</em>
  2743. <p>Used to select a specific version of the Provider value, if supported</p>
  2744. </td>
  2745. </tr>
  2746. <tr>
  2747. <td>
  2748. <code>conversionStrategy</code></br>
  2749. <em>
  2750. <a href="#external-secrets.io/v1beta1.ExternalSecretConversionStrategy">
  2751. ExternalSecretConversionStrategy
  2752. </a>
  2753. </em>
  2754. </td>
  2755. <td>
  2756. <em>(Optional)</em>
  2757. <p>Used to define a conversion Strategy</p>
  2758. </td>
  2759. </tr>
  2760. <tr>
  2761. <td>
  2762. <code>decodingStrategy</code></br>
  2763. <em>
  2764. <a href="#external-secrets.io/v1beta1.ExternalSecretDecodingStrategy">
  2765. ExternalSecretDecodingStrategy
  2766. </a>
  2767. </em>
  2768. </td>
  2769. <td>
  2770. <em>(Optional)</em>
  2771. <p>Used to define a decoding Strategy</p>
  2772. </td>
  2773. </tr>
  2774. </tbody>
  2775. </table>
  2776. <h3 id="external-secrets.io/v1beta1.ExternalSecretDecodingStrategy">ExternalSecretDecodingStrategy
  2777. (<code>string</code> alias)</p></h3>
  2778. <p>
  2779. (<em>Appears on:</em>
  2780. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>,
  2781. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind</a>)
  2782. </p>
  2783. <p>
  2784. </p>
  2785. <table>
  2786. <thead>
  2787. <tr>
  2788. <th>Value</th>
  2789. <th>Description</th>
  2790. </tr>
  2791. </thead>
  2792. <tbody><tr><td><p>&#34;Auto&#34;</p></td>
  2793. <td></td>
  2794. </tr><tr><td><p>&#34;Base64&#34;</p></td>
  2795. <td></td>
  2796. </tr><tr><td><p>&#34;Base64URL&#34;</p></td>
  2797. <td></td>
  2798. </tr><tr><td><p>&#34;None&#34;</p></td>
  2799. <td></td>
  2800. </tr></tbody>
  2801. </table>
  2802. <h3 id="external-secrets.io/v1beta1.ExternalSecretDeletionPolicy">ExternalSecretDeletionPolicy
  2803. (<code>string</code> alias)</p></h3>
  2804. <p>
  2805. (<em>Appears on:</em>
  2806. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget</a>)
  2807. </p>
  2808. <p>
  2809. <p>ExternalSecretDeletionPolicy defines rules on how to delete the resulting Secret.</p>
  2810. </p>
  2811. <table>
  2812. <thead>
  2813. <tr>
  2814. <th>Value</th>
  2815. <th>Description</th>
  2816. </tr>
  2817. </thead>
  2818. <tbody><tr><td><p>&#34;Delete&#34;</p></td>
  2819. <td><p>Delete deletes the secret if all provider secrets are deleted.
  2820. If a secret gets deleted on the provider side and is not accessible
  2821. anymore this is not considered an error and the ExternalSecret
  2822. does not go into SecretSyncedError status.</p>
  2823. </td>
  2824. </tr><tr><td><p>&#34;Merge&#34;</p></td>
  2825. <td><p>Merge removes keys in the secret, but not the secret itself.
  2826. If a secret gets deleted on the provider side and is not accessible
  2827. anymore this is not considered an error and the ExternalSecret
  2828. does not go into SecretSyncedError status.</p>
  2829. </td>
  2830. </tr><tr><td><p>&#34;Retain&#34;</p></td>
  2831. <td><p>Retain will retain the secret if all provider secrets have been deleted.
  2832. If a provider secret does not exist the ExternalSecret gets into the
  2833. SecretSyncedError status.</p>
  2834. </td>
  2835. </tr></tbody>
  2836. </table>
  2837. <h3 id="external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind
  2838. </h3>
  2839. <p>
  2840. (<em>Appears on:</em>
  2841. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  2842. </p>
  2843. <p>
  2844. </p>
  2845. <table>
  2846. <thead>
  2847. <tr>
  2848. <th>Field</th>
  2849. <th>Description</th>
  2850. </tr>
  2851. </thead>
  2852. <tbody>
  2853. <tr>
  2854. <td>
  2855. <code>path</code></br>
  2856. <em>
  2857. string
  2858. </em>
  2859. </td>
  2860. <td>
  2861. <em>(Optional)</em>
  2862. <p>A root path to start the find operations.</p>
  2863. </td>
  2864. </tr>
  2865. <tr>
  2866. <td>
  2867. <code>name</code></br>
  2868. <em>
  2869. <a href="#external-secrets.io/v1beta1.FindName">
  2870. FindName
  2871. </a>
  2872. </em>
  2873. </td>
  2874. <td>
  2875. <em>(Optional)</em>
  2876. <p>Finds secrets based on the name.</p>
  2877. </td>
  2878. </tr>
  2879. <tr>
  2880. <td>
  2881. <code>tags</code></br>
  2882. <em>
  2883. map[string]string
  2884. </em>
  2885. </td>
  2886. <td>
  2887. <em>(Optional)</em>
  2888. <p>Find secrets based on tags.</p>
  2889. </td>
  2890. </tr>
  2891. <tr>
  2892. <td>
  2893. <code>conversionStrategy</code></br>
  2894. <em>
  2895. <a href="#external-secrets.io/v1beta1.ExternalSecretConversionStrategy">
  2896. ExternalSecretConversionStrategy
  2897. </a>
  2898. </em>
  2899. </td>
  2900. <td>
  2901. <em>(Optional)</em>
  2902. <p>Used to define a conversion Strategy</p>
  2903. </td>
  2904. </tr>
  2905. <tr>
  2906. <td>
  2907. <code>decodingStrategy</code></br>
  2908. <em>
  2909. <a href="#external-secrets.io/v1beta1.ExternalSecretDecodingStrategy">
  2910. ExternalSecretDecodingStrategy
  2911. </a>
  2912. </em>
  2913. </td>
  2914. <td>
  2915. <em>(Optional)</em>
  2916. <p>Used to define a decoding Strategy</p>
  2917. </td>
  2918. </tr>
  2919. </tbody>
  2920. </table>
  2921. <h3 id="external-secrets.io/v1beta1.ExternalSecretMetadataPolicy">ExternalSecretMetadataPolicy
  2922. (<code>string</code> alias)</p></h3>
  2923. <p>
  2924. (<em>Appears on:</em>
  2925. <a href="#external-secrets.io/v1beta1.ExternalSecretDataRemoteRef">ExternalSecretDataRemoteRef</a>)
  2926. </p>
  2927. <p>
  2928. </p>
  2929. <table>
  2930. <thead>
  2931. <tr>
  2932. <th>Value</th>
  2933. <th>Description</th>
  2934. </tr>
  2935. </thead>
  2936. <tbody><tr><td><p>&#34;Fetch&#34;</p></td>
  2937. <td></td>
  2938. </tr><tr><td><p>&#34;None&#34;</p></td>
  2939. <td></td>
  2940. </tr></tbody>
  2941. </table>
  2942. <h3 id="external-secrets.io/v1beta1.ExternalSecretRewrite">ExternalSecretRewrite
  2943. </h3>
  2944. <p>
  2945. (<em>Appears on:</em>
  2946. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  2947. </p>
  2948. <p>
  2949. </p>
  2950. <table>
  2951. <thead>
  2952. <tr>
  2953. <th>Field</th>
  2954. <th>Description</th>
  2955. </tr>
  2956. </thead>
  2957. <tbody>
  2958. <tr>
  2959. <td>
  2960. <code>regexp</code></br>
  2961. <em>
  2962. <a href="#external-secrets.io/v1beta1.ExternalSecretRewriteRegexp">
  2963. ExternalSecretRewriteRegexp
  2964. </a>
  2965. </em>
  2966. </td>
  2967. <td>
  2968. <em>(Optional)</em>
  2969. <p>Used to rewrite with regular expressions.
  2970. The resulting key will be the output of a regexp.ReplaceAll operation.</p>
  2971. </td>
  2972. </tr>
  2973. </tbody>
  2974. </table>
  2975. <h3 id="external-secrets.io/v1beta1.ExternalSecretRewriteRegexp">ExternalSecretRewriteRegexp
  2976. </h3>
  2977. <p>
  2978. (<em>Appears on:</em>
  2979. <a href="#external-secrets.io/v1beta1.ExternalSecretRewrite">ExternalSecretRewrite</a>)
  2980. </p>
  2981. <p>
  2982. </p>
  2983. <table>
  2984. <thead>
  2985. <tr>
  2986. <th>Field</th>
  2987. <th>Description</th>
  2988. </tr>
  2989. </thead>
  2990. <tbody>
  2991. <tr>
  2992. <td>
  2993. <code>source</code></br>
  2994. <em>
  2995. string
  2996. </em>
  2997. </td>
  2998. <td>
  2999. <p>Used to define the regular expression of a re.Compiler.</p>
  3000. </td>
  3001. </tr>
  3002. <tr>
  3003. <td>
  3004. <code>target</code></br>
  3005. <em>
  3006. string
  3007. </em>
  3008. </td>
  3009. <td>
  3010. <p>Used to define the target pattern of a ReplaceAll operation.</p>
  3011. </td>
  3012. </tr>
  3013. </tbody>
  3014. </table>
  3015. <h3 id="external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec
  3016. </h3>
  3017. <p>
  3018. (<em>Appears on:</em>
  3019. <a href="#external-secrets.io/v1beta1.ClusterExternalSecretSpec">ClusterExternalSecretSpec</a>,
  3020. <a href="#external-secrets.io/v1beta1.ExternalSecret">ExternalSecret</a>)
  3021. </p>
  3022. <p>
  3023. <p>ExternalSecretSpec defines the desired state of ExternalSecret.</p>
  3024. </p>
  3025. <table>
  3026. <thead>
  3027. <tr>
  3028. <th>Field</th>
  3029. <th>Description</th>
  3030. </tr>
  3031. </thead>
  3032. <tbody>
  3033. <tr>
  3034. <td>
  3035. <code>secretStoreRef</code></br>
  3036. <em>
  3037. <a href="#external-secrets.io/v1beta1.SecretStoreRef">
  3038. SecretStoreRef
  3039. </a>
  3040. </em>
  3041. </td>
  3042. <td>
  3043. <em>(Optional)</em>
  3044. </td>
  3045. </tr>
  3046. <tr>
  3047. <td>
  3048. <code>target</code></br>
  3049. <em>
  3050. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">
  3051. ExternalSecretTarget
  3052. </a>
  3053. </em>
  3054. </td>
  3055. <td>
  3056. <em>(Optional)</em>
  3057. </td>
  3058. </tr>
  3059. <tr>
  3060. <td>
  3061. <code>refreshInterval</code></br>
  3062. <em>
  3063. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#duration-v1-meta">
  3064. Kubernetes meta/v1.Duration
  3065. </a>
  3066. </em>
  3067. </td>
  3068. <td>
  3069. <p>RefreshInterval is the amount of time before the values are read again from the SecretStore provider
  3070. Valid time units are &ldquo;ns&rdquo;, &ldquo;us&rdquo; (or &ldquo;µs&rdquo;), &ldquo;ms&rdquo;, &ldquo;s&rdquo;, &ldquo;m&rdquo;, &ldquo;h&rdquo;
  3071. May be set to zero to fetch and create it once. Defaults to 1h.</p>
  3072. </td>
  3073. </tr>
  3074. <tr>
  3075. <td>
  3076. <code>data</code></br>
  3077. <em>
  3078. <a href="#external-secrets.io/v1beta1.ExternalSecretData">
  3079. []ExternalSecretData
  3080. </a>
  3081. </em>
  3082. </td>
  3083. <td>
  3084. <em>(Optional)</em>
  3085. <p>Data defines the connection between the Kubernetes Secret keys and the Provider data</p>
  3086. </td>
  3087. </tr>
  3088. <tr>
  3089. <td>
  3090. <code>dataFrom</code></br>
  3091. <em>
  3092. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">
  3093. []ExternalSecretDataFromRemoteRef
  3094. </a>
  3095. </em>
  3096. </td>
  3097. <td>
  3098. <em>(Optional)</em>
  3099. <p>DataFrom is used to fetch all properties from a specific Provider data
  3100. If multiple entries are specified, the Secret keys are merged in the specified order</p>
  3101. </td>
  3102. </tr>
  3103. </tbody>
  3104. </table>
  3105. <h3 id="external-secrets.io/v1beta1.ExternalSecretStatus">ExternalSecretStatus
  3106. </h3>
  3107. <p>
  3108. (<em>Appears on:</em>
  3109. <a href="#external-secrets.io/v1beta1.ExternalSecret">ExternalSecret</a>)
  3110. </p>
  3111. <p>
  3112. </p>
  3113. <table>
  3114. <thead>
  3115. <tr>
  3116. <th>Field</th>
  3117. <th>Description</th>
  3118. </tr>
  3119. </thead>
  3120. <tbody>
  3121. <tr>
  3122. <td>
  3123. <code>refreshTime</code></br>
  3124. <em>
  3125. <a href="https://godoc.org/k8s.io/apimachinery/pkg/apis/meta/v1#Time">
  3126. Kubernetes meta/v1.Time
  3127. </a>
  3128. </em>
  3129. </td>
  3130. <td>
  3131. <p>refreshTime is the time and date the external secret was fetched and
  3132. the target secret updated</p>
  3133. </td>
  3134. </tr>
  3135. <tr>
  3136. <td>
  3137. <code>syncedResourceVersion</code></br>
  3138. <em>
  3139. string
  3140. </em>
  3141. </td>
  3142. <td>
  3143. <p>SyncedResourceVersion keeps track of the last synced version</p>
  3144. </td>
  3145. </tr>
  3146. <tr>
  3147. <td>
  3148. <code>conditions</code></br>
  3149. <em>
  3150. <a href="#external-secrets.io/v1beta1.ExternalSecretStatusCondition">
  3151. []ExternalSecretStatusCondition
  3152. </a>
  3153. </em>
  3154. </td>
  3155. <td>
  3156. <em>(Optional)</em>
  3157. </td>
  3158. </tr>
  3159. </tbody>
  3160. </table>
  3161. <h3 id="external-secrets.io/v1beta1.ExternalSecretStatusCondition">ExternalSecretStatusCondition
  3162. </h3>
  3163. <p>
  3164. (<em>Appears on:</em>
  3165. <a href="#external-secrets.io/v1beta1.ExternalSecretStatus">ExternalSecretStatus</a>)
  3166. </p>
  3167. <p>
  3168. </p>
  3169. <table>
  3170. <thead>
  3171. <tr>
  3172. <th>Field</th>
  3173. <th>Description</th>
  3174. </tr>
  3175. </thead>
  3176. <tbody>
  3177. <tr>
  3178. <td>
  3179. <code>type</code></br>
  3180. <em>
  3181. <a href="#external-secrets.io/v1beta1.ExternalSecretConditionType">
  3182. ExternalSecretConditionType
  3183. </a>
  3184. </em>
  3185. </td>
  3186. <td>
  3187. </td>
  3188. </tr>
  3189. <tr>
  3190. <td>
  3191. <code>status</code></br>
  3192. <em>
  3193. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#conditionstatus-v1-core">
  3194. Kubernetes core/v1.ConditionStatus
  3195. </a>
  3196. </em>
  3197. </td>
  3198. <td>
  3199. </td>
  3200. </tr>
  3201. <tr>
  3202. <td>
  3203. <code>reason</code></br>
  3204. <em>
  3205. string
  3206. </em>
  3207. </td>
  3208. <td>
  3209. <em>(Optional)</em>
  3210. </td>
  3211. </tr>
  3212. <tr>
  3213. <td>
  3214. <code>message</code></br>
  3215. <em>
  3216. string
  3217. </em>
  3218. </td>
  3219. <td>
  3220. <em>(Optional)</em>
  3221. </td>
  3222. </tr>
  3223. <tr>
  3224. <td>
  3225. <code>lastTransitionTime</code></br>
  3226. <em>
  3227. <a href="https://godoc.org/k8s.io/apimachinery/pkg/apis/meta/v1#Time">
  3228. Kubernetes meta/v1.Time
  3229. </a>
  3230. </em>
  3231. </td>
  3232. <td>
  3233. <em>(Optional)</em>
  3234. </td>
  3235. </tr>
  3236. </tbody>
  3237. </table>
  3238. <h3 id="external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget
  3239. </h3>
  3240. <p>
  3241. (<em>Appears on:</em>
  3242. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>)
  3243. </p>
  3244. <p>
  3245. <p>ExternalSecretTarget defines the Kubernetes Secret to be created
  3246. There can be only one target per ExternalSecret.</p>
  3247. </p>
  3248. <table>
  3249. <thead>
  3250. <tr>
  3251. <th>Field</th>
  3252. <th>Description</th>
  3253. </tr>
  3254. </thead>
  3255. <tbody>
  3256. <tr>
  3257. <td>
  3258. <code>name</code></br>
  3259. <em>
  3260. string
  3261. </em>
  3262. </td>
  3263. <td>
  3264. <em>(Optional)</em>
  3265. <p>Name defines the name of the Secret resource to be managed
  3266. This field is immutable
  3267. Defaults to the .metadata.name of the ExternalSecret resource</p>
  3268. </td>
  3269. </tr>
  3270. <tr>
  3271. <td>
  3272. <code>creationPolicy</code></br>
  3273. <em>
  3274. <a href="#external-secrets.io/v1beta1.ExternalSecretCreationPolicy">
  3275. ExternalSecretCreationPolicy
  3276. </a>
  3277. </em>
  3278. </td>
  3279. <td>
  3280. <em>(Optional)</em>
  3281. <p>CreationPolicy defines rules on how to create the resulting Secret
  3282. Defaults to &lsquo;Owner&rsquo;</p>
  3283. </td>
  3284. </tr>
  3285. <tr>
  3286. <td>
  3287. <code>deletionPolicy</code></br>
  3288. <em>
  3289. <a href="#external-secrets.io/v1beta1.ExternalSecretDeletionPolicy">
  3290. ExternalSecretDeletionPolicy
  3291. </a>
  3292. </em>
  3293. </td>
  3294. <td>
  3295. <em>(Optional)</em>
  3296. <p>DeletionPolicy defines rules on how to delete the resulting Secret
  3297. Defaults to &lsquo;Retain&rsquo;</p>
  3298. </td>
  3299. </tr>
  3300. <tr>
  3301. <td>
  3302. <code>template</code></br>
  3303. <em>
  3304. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">
  3305. ExternalSecretTemplate
  3306. </a>
  3307. </em>
  3308. </td>
  3309. <td>
  3310. <em>(Optional)</em>
  3311. <p>Template defines a blueprint for the created Secret resource.</p>
  3312. </td>
  3313. </tr>
  3314. <tr>
  3315. <td>
  3316. <code>immutable</code></br>
  3317. <em>
  3318. bool
  3319. </em>
  3320. </td>
  3321. <td>
  3322. <em>(Optional)</em>
  3323. <p>Immutable defines if the final secret will be immutable</p>
  3324. </td>
  3325. </tr>
  3326. </tbody>
  3327. </table>
  3328. <h3 id="external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate
  3329. </h3>
  3330. <p>
  3331. (<em>Appears on:</em>
  3332. <a href="#external-secrets.io/v1beta1.ExternalSecretTarget">ExternalSecretTarget</a>)
  3333. </p>
  3334. <p>
  3335. <p>ExternalSecretTemplate defines a blueprint for the created Secret resource.
  3336. we can not use native corev1.Secret, it will have empty ObjectMeta values: <a href="https://github.com/kubernetes-sigs/controller-tools/issues/448">https://github.com/kubernetes-sigs/controller-tools/issues/448</a></p>
  3337. </p>
  3338. <table>
  3339. <thead>
  3340. <tr>
  3341. <th>Field</th>
  3342. <th>Description</th>
  3343. </tr>
  3344. </thead>
  3345. <tbody>
  3346. <tr>
  3347. <td>
  3348. <code>type</code></br>
  3349. <em>
  3350. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#secrettype-v1-core">
  3351. Kubernetes core/v1.SecretType
  3352. </a>
  3353. </em>
  3354. </td>
  3355. <td>
  3356. <em>(Optional)</em>
  3357. </td>
  3358. </tr>
  3359. <tr>
  3360. <td>
  3361. <code>engineVersion</code></br>
  3362. <em>
  3363. <a href="#external-secrets.io/v1beta1.TemplateEngineVersion">
  3364. TemplateEngineVersion
  3365. </a>
  3366. </em>
  3367. </td>
  3368. <td>
  3369. </td>
  3370. </tr>
  3371. <tr>
  3372. <td>
  3373. <code>metadata</code></br>
  3374. <em>
  3375. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplateMetadata">
  3376. ExternalSecretTemplateMetadata
  3377. </a>
  3378. </em>
  3379. </td>
  3380. <td>
  3381. <em>(Optional)</em>
  3382. </td>
  3383. </tr>
  3384. <tr>
  3385. <td>
  3386. <code>data</code></br>
  3387. <em>
  3388. map[string]string
  3389. </em>
  3390. </td>
  3391. <td>
  3392. <em>(Optional)</em>
  3393. </td>
  3394. </tr>
  3395. <tr>
  3396. <td>
  3397. <code>templateFrom</code></br>
  3398. <em>
  3399. <a href="#external-secrets.io/v1beta1.TemplateFrom">
  3400. []TemplateFrom
  3401. </a>
  3402. </em>
  3403. </td>
  3404. <td>
  3405. <em>(Optional)</em>
  3406. </td>
  3407. </tr>
  3408. </tbody>
  3409. </table>
  3410. <h3 id="external-secrets.io/v1beta1.ExternalSecretTemplateMetadata">ExternalSecretTemplateMetadata
  3411. </h3>
  3412. <p>
  3413. (<em>Appears on:</em>
  3414. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  3415. </p>
  3416. <p>
  3417. <p>ExternalSecretTemplateMetadata defines metadata fields for the Secret blueprint.</p>
  3418. </p>
  3419. <table>
  3420. <thead>
  3421. <tr>
  3422. <th>Field</th>
  3423. <th>Description</th>
  3424. </tr>
  3425. </thead>
  3426. <tbody>
  3427. <tr>
  3428. <td>
  3429. <code>annotations</code></br>
  3430. <em>
  3431. map[string]string
  3432. </em>
  3433. </td>
  3434. <td>
  3435. <em>(Optional)</em>
  3436. </td>
  3437. </tr>
  3438. <tr>
  3439. <td>
  3440. <code>labels</code></br>
  3441. <em>
  3442. map[string]string
  3443. </em>
  3444. </td>
  3445. <td>
  3446. <em>(Optional)</em>
  3447. </td>
  3448. </tr>
  3449. </tbody>
  3450. </table>
  3451. <h3 id="external-secrets.io/v1beta1.ExternalSecretValidator">ExternalSecretValidator
  3452. </h3>
  3453. <p>
  3454. </p>
  3455. <h3 id="external-secrets.io/v1beta1.FakeProvider">FakeProvider
  3456. </h3>
  3457. <p>
  3458. (<em>Appears on:</em>
  3459. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3460. </p>
  3461. <p>
  3462. <p>FakeProvider configures a fake provider that returns static values.</p>
  3463. </p>
  3464. <table>
  3465. <thead>
  3466. <tr>
  3467. <th>Field</th>
  3468. <th>Description</th>
  3469. </tr>
  3470. </thead>
  3471. <tbody>
  3472. <tr>
  3473. <td>
  3474. <code>data</code></br>
  3475. <em>
  3476. <a href="#external-secrets.io/v1beta1.FakeProviderData">
  3477. []FakeProviderData
  3478. </a>
  3479. </em>
  3480. </td>
  3481. <td>
  3482. </td>
  3483. </tr>
  3484. </tbody>
  3485. </table>
  3486. <h3 id="external-secrets.io/v1beta1.FakeProviderData">FakeProviderData
  3487. </h3>
  3488. <p>
  3489. (<em>Appears on:</em>
  3490. <a href="#external-secrets.io/v1beta1.FakeProvider">FakeProvider</a>)
  3491. </p>
  3492. <p>
  3493. </p>
  3494. <table>
  3495. <thead>
  3496. <tr>
  3497. <th>Field</th>
  3498. <th>Description</th>
  3499. </tr>
  3500. </thead>
  3501. <tbody>
  3502. <tr>
  3503. <td>
  3504. <code>key</code></br>
  3505. <em>
  3506. string
  3507. </em>
  3508. </td>
  3509. <td>
  3510. </td>
  3511. </tr>
  3512. <tr>
  3513. <td>
  3514. <code>value</code></br>
  3515. <em>
  3516. string
  3517. </em>
  3518. </td>
  3519. <td>
  3520. </td>
  3521. </tr>
  3522. <tr>
  3523. <td>
  3524. <code>valueMap</code></br>
  3525. <em>
  3526. map[string]string
  3527. </em>
  3528. </td>
  3529. <td>
  3530. </td>
  3531. </tr>
  3532. <tr>
  3533. <td>
  3534. <code>version</code></br>
  3535. <em>
  3536. string
  3537. </em>
  3538. </td>
  3539. <td>
  3540. </td>
  3541. </tr>
  3542. </tbody>
  3543. </table>
  3544. <h3 id="external-secrets.io/v1beta1.FindName">FindName
  3545. </h3>
  3546. <p>
  3547. (<em>Appears on:</em>
  3548. <a href="#external-secrets.io/v1beta1.ExternalSecretFind">ExternalSecretFind</a>)
  3549. </p>
  3550. <p>
  3551. </p>
  3552. <table>
  3553. <thead>
  3554. <tr>
  3555. <th>Field</th>
  3556. <th>Description</th>
  3557. </tr>
  3558. </thead>
  3559. <tbody>
  3560. <tr>
  3561. <td>
  3562. <code>regexp</code></br>
  3563. <em>
  3564. string
  3565. </em>
  3566. </td>
  3567. <td>
  3568. <em>(Optional)</em>
  3569. <p>Finds secrets base</p>
  3570. </td>
  3571. </tr>
  3572. </tbody>
  3573. </table>
  3574. <h3 id="external-secrets.io/v1beta1.GCPSMAuth">GCPSMAuth
  3575. </h3>
  3576. <p>
  3577. (<em>Appears on:</em>
  3578. <a href="#external-secrets.io/v1beta1.GCPSMProvider">GCPSMProvider</a>)
  3579. </p>
  3580. <p>
  3581. </p>
  3582. <table>
  3583. <thead>
  3584. <tr>
  3585. <th>Field</th>
  3586. <th>Description</th>
  3587. </tr>
  3588. </thead>
  3589. <tbody>
  3590. <tr>
  3591. <td>
  3592. <code>secretRef</code></br>
  3593. <em>
  3594. <a href="#external-secrets.io/v1beta1.GCPSMAuthSecretRef">
  3595. GCPSMAuthSecretRef
  3596. </a>
  3597. </em>
  3598. </td>
  3599. <td>
  3600. <em>(Optional)</em>
  3601. </td>
  3602. </tr>
  3603. <tr>
  3604. <td>
  3605. <code>workloadIdentity</code></br>
  3606. <em>
  3607. <a href="#external-secrets.io/v1beta1.GCPWorkloadIdentity">
  3608. GCPWorkloadIdentity
  3609. </a>
  3610. </em>
  3611. </td>
  3612. <td>
  3613. <em>(Optional)</em>
  3614. </td>
  3615. </tr>
  3616. </tbody>
  3617. </table>
  3618. <h3 id="external-secrets.io/v1beta1.GCPSMAuthSecretRef">GCPSMAuthSecretRef
  3619. </h3>
  3620. <p>
  3621. (<em>Appears on:</em>
  3622. <a href="#external-secrets.io/v1beta1.GCPSMAuth">GCPSMAuth</a>)
  3623. </p>
  3624. <p>
  3625. </p>
  3626. <table>
  3627. <thead>
  3628. <tr>
  3629. <th>Field</th>
  3630. <th>Description</th>
  3631. </tr>
  3632. </thead>
  3633. <tbody>
  3634. <tr>
  3635. <td>
  3636. <code>secretAccessKeySecretRef</code></br>
  3637. <em>
  3638. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  3639. </em>
  3640. </td>
  3641. <td>
  3642. <em>(Optional)</em>
  3643. <p>The SecretAccessKey is used for authentication</p>
  3644. </td>
  3645. </tr>
  3646. </tbody>
  3647. </table>
  3648. <h3 id="external-secrets.io/v1beta1.GCPSMProvider">GCPSMProvider
  3649. </h3>
  3650. <p>
  3651. (<em>Appears on:</em>
  3652. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3653. </p>
  3654. <p>
  3655. <p>GCPSMProvider Configures a store to sync secrets using the GCP Secret Manager provider.</p>
  3656. </p>
  3657. <table>
  3658. <thead>
  3659. <tr>
  3660. <th>Field</th>
  3661. <th>Description</th>
  3662. </tr>
  3663. </thead>
  3664. <tbody>
  3665. <tr>
  3666. <td>
  3667. <code>auth</code></br>
  3668. <em>
  3669. <a href="#external-secrets.io/v1beta1.GCPSMAuth">
  3670. GCPSMAuth
  3671. </a>
  3672. </em>
  3673. </td>
  3674. <td>
  3675. <em>(Optional)</em>
  3676. <p>Auth defines the information necessary to authenticate against GCP</p>
  3677. </td>
  3678. </tr>
  3679. <tr>
  3680. <td>
  3681. <code>projectID</code></br>
  3682. <em>
  3683. string
  3684. </em>
  3685. </td>
  3686. <td>
  3687. <p>ProjectID project where secret is located</p>
  3688. </td>
  3689. </tr>
  3690. </tbody>
  3691. </table>
  3692. <h3 id="external-secrets.io/v1beta1.GCPWorkloadIdentity">GCPWorkloadIdentity
  3693. </h3>
  3694. <p>
  3695. (<em>Appears on:</em>
  3696. <a href="#external-secrets.io/v1beta1.GCPSMAuth">GCPSMAuth</a>)
  3697. </p>
  3698. <p>
  3699. </p>
  3700. <table>
  3701. <thead>
  3702. <tr>
  3703. <th>Field</th>
  3704. <th>Description</th>
  3705. </tr>
  3706. </thead>
  3707. <tbody>
  3708. <tr>
  3709. <td>
  3710. <code>serviceAccountRef</code></br>
  3711. <em>
  3712. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  3713. </em>
  3714. </td>
  3715. <td>
  3716. </td>
  3717. </tr>
  3718. <tr>
  3719. <td>
  3720. <code>clusterLocation</code></br>
  3721. <em>
  3722. string
  3723. </em>
  3724. </td>
  3725. <td>
  3726. </td>
  3727. </tr>
  3728. <tr>
  3729. <td>
  3730. <code>clusterName</code></br>
  3731. <em>
  3732. string
  3733. </em>
  3734. </td>
  3735. <td>
  3736. </td>
  3737. </tr>
  3738. <tr>
  3739. <td>
  3740. <code>clusterProjectID</code></br>
  3741. <em>
  3742. string
  3743. </em>
  3744. </td>
  3745. <td>
  3746. </td>
  3747. </tr>
  3748. </tbody>
  3749. </table>
  3750. <h3 id="external-secrets.io/v1beta1.GeneratorRef">GeneratorRef
  3751. </h3>
  3752. <p>
  3753. (<em>Appears on:</em>
  3754. <a href="#external-secrets.io/v1beta1.SourceRef">SourceRef</a>)
  3755. </p>
  3756. <p>
  3757. <p>GeneratorRef points to a generator custom resource.</p>
  3758. </p>
  3759. <table>
  3760. <thead>
  3761. <tr>
  3762. <th>Field</th>
  3763. <th>Description</th>
  3764. </tr>
  3765. </thead>
  3766. <tbody>
  3767. <tr>
  3768. <td>
  3769. <code>apiVersion</code></br>
  3770. <em>
  3771. string
  3772. </em>
  3773. </td>
  3774. <td>
  3775. <p>Specify the apiVersion of the generator resource</p>
  3776. </td>
  3777. </tr>
  3778. <tr>
  3779. <td>
  3780. <code>kind</code></br>
  3781. <em>
  3782. string
  3783. </em>
  3784. </td>
  3785. <td>
  3786. <p>Specify the Kind of the resource, e.g. Password, ACRAccessToken etc.</p>
  3787. </td>
  3788. </tr>
  3789. <tr>
  3790. <td>
  3791. <code>name</code></br>
  3792. <em>
  3793. string
  3794. </em>
  3795. </td>
  3796. <td>
  3797. <p>Specify the name of the generator resource</p>
  3798. </td>
  3799. </tr>
  3800. </tbody>
  3801. </table>
  3802. <h3 id="external-secrets.io/v1beta1.GenericStore">GenericStore
  3803. </h3>
  3804. <p>
  3805. <p>GenericStore is a common interface for interacting with ClusterSecretStore
  3806. or a namespaced SecretStore.</p>
  3807. </p>
  3808. <h3 id="external-secrets.io/v1beta1.GenericStoreValidator">GenericStoreValidator
  3809. </h3>
  3810. <p>
  3811. </p>
  3812. <h3 id="external-secrets.io/v1beta1.GitlabAuth">GitlabAuth
  3813. </h3>
  3814. <p>
  3815. (<em>Appears on:</em>
  3816. <a href="#external-secrets.io/v1beta1.GitlabProvider">GitlabProvider</a>)
  3817. </p>
  3818. <p>
  3819. </p>
  3820. <table>
  3821. <thead>
  3822. <tr>
  3823. <th>Field</th>
  3824. <th>Description</th>
  3825. </tr>
  3826. </thead>
  3827. <tbody>
  3828. <tr>
  3829. <td>
  3830. <code>SecretRef</code></br>
  3831. <em>
  3832. <a href="#external-secrets.io/v1beta1.GitlabSecretRef">
  3833. GitlabSecretRef
  3834. </a>
  3835. </em>
  3836. </td>
  3837. <td>
  3838. </td>
  3839. </tr>
  3840. </tbody>
  3841. </table>
  3842. <h3 id="external-secrets.io/v1beta1.GitlabProvider">GitlabProvider
  3843. </h3>
  3844. <p>
  3845. (<em>Appears on:</em>
  3846. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  3847. </p>
  3848. <p>
  3849. <p>Configures a store to sync secrets with a GitLab instance.</p>
  3850. </p>
  3851. <table>
  3852. <thead>
  3853. <tr>
  3854. <th>Field</th>
  3855. <th>Description</th>
  3856. </tr>
  3857. </thead>
  3858. <tbody>
  3859. <tr>
  3860. <td>
  3861. <code>url</code></br>
  3862. <em>
  3863. string
  3864. </em>
  3865. </td>
  3866. <td>
  3867. <p>URL configures the GitLab instance URL. Defaults to <a href="https://gitlab.com/">https://gitlab.com/</a>.</p>
  3868. </td>
  3869. </tr>
  3870. <tr>
  3871. <td>
  3872. <code>auth</code></br>
  3873. <em>
  3874. <a href="#external-secrets.io/v1beta1.GitlabAuth">
  3875. GitlabAuth
  3876. </a>
  3877. </em>
  3878. </td>
  3879. <td>
  3880. <p>Auth configures how secret-manager authenticates with a GitLab instance.</p>
  3881. </td>
  3882. </tr>
  3883. <tr>
  3884. <td>
  3885. <code>projectID</code></br>
  3886. <em>
  3887. string
  3888. </em>
  3889. </td>
  3890. <td>
  3891. <p>ProjectID specifies a project where secrets are located.</p>
  3892. </td>
  3893. </tr>
  3894. <tr>
  3895. <td>
  3896. <code>inheritFromGroups</code></br>
  3897. <em>
  3898. bool
  3899. </em>
  3900. </td>
  3901. <td>
  3902. <p>InheritFromGroups specifies whether parent groups should be discovered and checked for secrets.</p>
  3903. </td>
  3904. </tr>
  3905. <tr>
  3906. <td>
  3907. <code>groupIDs</code></br>
  3908. <em>
  3909. []string
  3910. </em>
  3911. </td>
  3912. <td>
  3913. <p>GroupIDs specify, which gitlab groups to pull secrets from. Group secrets are read from left to right followed by the project variables.</p>
  3914. </td>
  3915. </tr>
  3916. <tr>
  3917. <td>
  3918. <code>environment</code></br>
  3919. <em>
  3920. string
  3921. </em>
  3922. </td>
  3923. <td>
  3924. <p>Environment environment_scope of gitlab CI/CD variables (Please see <a href="https://docs.gitlab.com/ee/ci/environments/#create-a-static-environment">https://docs.gitlab.com/ee/ci/environments/#create-a-static-environment</a> on how to create environments)</p>
  3925. </td>
  3926. </tr>
  3927. </tbody>
  3928. </table>
  3929. <h3 id="external-secrets.io/v1beta1.GitlabSecretRef">GitlabSecretRef
  3930. </h3>
  3931. <p>
  3932. (<em>Appears on:</em>
  3933. <a href="#external-secrets.io/v1beta1.GitlabAuth">GitlabAuth</a>)
  3934. </p>
  3935. <p>
  3936. </p>
  3937. <table>
  3938. <thead>
  3939. <tr>
  3940. <th>Field</th>
  3941. <th>Description</th>
  3942. </tr>
  3943. </thead>
  3944. <tbody>
  3945. <tr>
  3946. <td>
  3947. <code>accessToken</code></br>
  3948. <em>
  3949. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  3950. </em>
  3951. </td>
  3952. <td>
  3953. <p>AccessToken is used for authentication.</p>
  3954. </td>
  3955. </tr>
  3956. </tbody>
  3957. </table>
  3958. <h3 id="external-secrets.io/v1beta1.IBMAuth">IBMAuth
  3959. </h3>
  3960. <p>
  3961. (<em>Appears on:</em>
  3962. <a href="#external-secrets.io/v1beta1.IBMProvider">IBMProvider</a>)
  3963. </p>
  3964. <p>
  3965. </p>
  3966. <table>
  3967. <thead>
  3968. <tr>
  3969. <th>Field</th>
  3970. <th>Description</th>
  3971. </tr>
  3972. </thead>
  3973. <tbody>
  3974. <tr>
  3975. <td>
  3976. <code>secretRef</code></br>
  3977. <em>
  3978. <a href="#external-secrets.io/v1beta1.IBMAuthSecretRef">
  3979. IBMAuthSecretRef
  3980. </a>
  3981. </em>
  3982. </td>
  3983. <td>
  3984. </td>
  3985. </tr>
  3986. <tr>
  3987. <td>
  3988. <code>containerAuth</code></br>
  3989. <em>
  3990. <a href="#external-secrets.io/v1beta1.IBMAuthContainerAuth">
  3991. IBMAuthContainerAuth
  3992. </a>
  3993. </em>
  3994. </td>
  3995. <td>
  3996. </td>
  3997. </tr>
  3998. </tbody>
  3999. </table>
  4000. <h3 id="external-secrets.io/v1beta1.IBMAuthContainerAuth">IBMAuthContainerAuth
  4001. </h3>
  4002. <p>
  4003. (<em>Appears on:</em>
  4004. <a href="#external-secrets.io/v1beta1.IBMAuth">IBMAuth</a>)
  4005. </p>
  4006. <p>
  4007. <p>IBM Container-based auth with IAM Trusted Profile.</p>
  4008. </p>
  4009. <table>
  4010. <thead>
  4011. <tr>
  4012. <th>Field</th>
  4013. <th>Description</th>
  4014. </tr>
  4015. </thead>
  4016. <tbody>
  4017. <tr>
  4018. <td>
  4019. <code>profile</code></br>
  4020. <em>
  4021. string
  4022. </em>
  4023. </td>
  4024. <td>
  4025. <p>the IBM Trusted Profile</p>
  4026. </td>
  4027. </tr>
  4028. <tr>
  4029. <td>
  4030. <code>tokenLocation</code></br>
  4031. <em>
  4032. string
  4033. </em>
  4034. </td>
  4035. <td>
  4036. <p>Location the token is mounted on the pod</p>
  4037. </td>
  4038. </tr>
  4039. <tr>
  4040. <td>
  4041. <code>iamEndpoint</code></br>
  4042. <em>
  4043. string
  4044. </em>
  4045. </td>
  4046. <td>
  4047. </td>
  4048. </tr>
  4049. </tbody>
  4050. </table>
  4051. <h3 id="external-secrets.io/v1beta1.IBMAuthSecretRef">IBMAuthSecretRef
  4052. </h3>
  4053. <p>
  4054. (<em>Appears on:</em>
  4055. <a href="#external-secrets.io/v1beta1.IBMAuth">IBMAuth</a>)
  4056. </p>
  4057. <p>
  4058. </p>
  4059. <table>
  4060. <thead>
  4061. <tr>
  4062. <th>Field</th>
  4063. <th>Description</th>
  4064. </tr>
  4065. </thead>
  4066. <tbody>
  4067. <tr>
  4068. <td>
  4069. <code>secretApiKeySecretRef</code></br>
  4070. <em>
  4071. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  4072. </em>
  4073. </td>
  4074. <td>
  4075. <p>The SecretAccessKey is used for authentication</p>
  4076. </td>
  4077. </tr>
  4078. </tbody>
  4079. </table>
  4080. <h3 id="external-secrets.io/v1beta1.IBMProvider">IBMProvider
  4081. </h3>
  4082. <p>
  4083. (<em>Appears on:</em>
  4084. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  4085. </p>
  4086. <p>
  4087. <p>Configures an store to sync secrets using a IBM Cloud Secrets Manager
  4088. backend.</p>
  4089. </p>
  4090. <table>
  4091. <thead>
  4092. <tr>
  4093. <th>Field</th>
  4094. <th>Description</th>
  4095. </tr>
  4096. </thead>
  4097. <tbody>
  4098. <tr>
  4099. <td>
  4100. <code>auth</code></br>
  4101. <em>
  4102. <a href="#external-secrets.io/v1beta1.IBMAuth">
  4103. IBMAuth
  4104. </a>
  4105. </em>
  4106. </td>
  4107. <td>
  4108. <p>Auth configures how secret-manager authenticates with the IBM secrets manager.</p>
  4109. </td>
  4110. </tr>
  4111. <tr>
  4112. <td>
  4113. <code>serviceUrl</code></br>
  4114. <em>
  4115. string
  4116. </em>
  4117. </td>
  4118. <td>
  4119. <p>ServiceURL is the Endpoint URL that is specific to the Secrets Manager service instance</p>
  4120. </td>
  4121. </tr>
  4122. </tbody>
  4123. </table>
  4124. <h3 id="external-secrets.io/v1beta1.KubernetesAuth">KubernetesAuth
  4125. </h3>
  4126. <p>
  4127. (<em>Appears on:</em>
  4128. <a href="#external-secrets.io/v1beta1.KubernetesProvider">KubernetesProvider</a>)
  4129. </p>
  4130. <p>
  4131. </p>
  4132. <table>
  4133. <thead>
  4134. <tr>
  4135. <th>Field</th>
  4136. <th>Description</th>
  4137. </tr>
  4138. </thead>
  4139. <tbody>
  4140. <tr>
  4141. <td>
  4142. <code>cert</code></br>
  4143. <em>
  4144. <a href="#external-secrets.io/v1beta1.CertAuth">
  4145. CertAuth
  4146. </a>
  4147. </em>
  4148. </td>
  4149. <td>
  4150. <em>(Optional)</em>
  4151. <p>has both clientCert and clientKey as secretKeySelector</p>
  4152. </td>
  4153. </tr>
  4154. <tr>
  4155. <td>
  4156. <code>token</code></br>
  4157. <em>
  4158. <a href="#external-secrets.io/v1beta1.TokenAuth">
  4159. TokenAuth
  4160. </a>
  4161. </em>
  4162. </td>
  4163. <td>
  4164. <em>(Optional)</em>
  4165. <p>use static token to authenticate with</p>
  4166. </td>
  4167. </tr>
  4168. <tr>
  4169. <td>
  4170. <code>serviceAccount</code></br>
  4171. <em>
  4172. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  4173. </em>
  4174. </td>
  4175. <td>
  4176. <em>(Optional)</em>
  4177. <p>points to a service account that should be used for authentication</p>
  4178. </td>
  4179. </tr>
  4180. </tbody>
  4181. </table>
  4182. <h3 id="external-secrets.io/v1beta1.KubernetesProvider">KubernetesProvider
  4183. </h3>
  4184. <p>
  4185. (<em>Appears on:</em>
  4186. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  4187. </p>
  4188. <p>
  4189. <p>Configures a store to sync secrets with a Kubernetes instance.</p>
  4190. </p>
  4191. <table>
  4192. <thead>
  4193. <tr>
  4194. <th>Field</th>
  4195. <th>Description</th>
  4196. </tr>
  4197. </thead>
  4198. <tbody>
  4199. <tr>
  4200. <td>
  4201. <code>server</code></br>
  4202. <em>
  4203. <a href="#external-secrets.io/v1beta1.KubernetesServer">
  4204. KubernetesServer
  4205. </a>
  4206. </em>
  4207. </td>
  4208. <td>
  4209. <p>configures the Kubernetes server Address.</p>
  4210. </td>
  4211. </tr>
  4212. <tr>
  4213. <td>
  4214. <code>auth</code></br>
  4215. <em>
  4216. <a href="#external-secrets.io/v1beta1.KubernetesAuth">
  4217. KubernetesAuth
  4218. </a>
  4219. </em>
  4220. </td>
  4221. <td>
  4222. <p>Auth configures how secret-manager authenticates with a Kubernetes instance.</p>
  4223. </td>
  4224. </tr>
  4225. <tr>
  4226. <td>
  4227. <code>remoteNamespace</code></br>
  4228. <em>
  4229. string
  4230. </em>
  4231. </td>
  4232. <td>
  4233. <em>(Optional)</em>
  4234. <p>Remote namespace to fetch the secrets from</p>
  4235. </td>
  4236. </tr>
  4237. </tbody>
  4238. </table>
  4239. <h3 id="external-secrets.io/v1beta1.KubernetesServer">KubernetesServer
  4240. </h3>
  4241. <p>
  4242. (<em>Appears on:</em>
  4243. <a href="#external-secrets.io/v1beta1.KubernetesProvider">KubernetesProvider</a>)
  4244. </p>
  4245. <p>
  4246. </p>
  4247. <table>
  4248. <thead>
  4249. <tr>
  4250. <th>Field</th>
  4251. <th>Description</th>
  4252. </tr>
  4253. </thead>
  4254. <tbody>
  4255. <tr>
  4256. <td>
  4257. <code>url</code></br>
  4258. <em>
  4259. string
  4260. </em>
  4261. </td>
  4262. <td>
  4263. <em>(Optional)</em>
  4264. <p>configures the Kubernetes server Address.</p>
  4265. </td>
  4266. </tr>
  4267. <tr>
  4268. <td>
  4269. <code>caBundle</code></br>
  4270. <em>
  4271. []byte
  4272. </em>
  4273. </td>
  4274. <td>
  4275. <em>(Optional)</em>
  4276. <p>CABundle is a base64-encoded CA certificate</p>
  4277. </td>
  4278. </tr>
  4279. <tr>
  4280. <td>
  4281. <code>caProvider</code></br>
  4282. <em>
  4283. <a href="#external-secrets.io/v1beta1.CAProvider">
  4284. CAProvider
  4285. </a>
  4286. </em>
  4287. </td>
  4288. <td>
  4289. <em>(Optional)</em>
  4290. <p>see: <a href="https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider">https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider</a></p>
  4291. </td>
  4292. </tr>
  4293. </tbody>
  4294. </table>
  4295. <h3 id="external-secrets.io/v1beta1.NoSecretError">NoSecretError
  4296. </h3>
  4297. <p>
  4298. <p>NoSecretError shall be returned when a GetSecret can not find the
  4299. desired secret. This is used for deletionPolicy.</p>
  4300. </p>
  4301. <h3 id="external-secrets.io/v1beta1.OnePasswordAuth">OnePasswordAuth
  4302. </h3>
  4303. <p>
  4304. (<em>Appears on:</em>
  4305. <a href="#external-secrets.io/v1beta1.OnePasswordProvider">OnePasswordProvider</a>)
  4306. </p>
  4307. <p>
  4308. <p>OnePasswordAuth contains a secretRef for credentials.</p>
  4309. </p>
  4310. <table>
  4311. <thead>
  4312. <tr>
  4313. <th>Field</th>
  4314. <th>Description</th>
  4315. </tr>
  4316. </thead>
  4317. <tbody>
  4318. <tr>
  4319. <td>
  4320. <code>secretRef</code></br>
  4321. <em>
  4322. <a href="#external-secrets.io/v1beta1.OnePasswordAuthSecretRef">
  4323. OnePasswordAuthSecretRef
  4324. </a>
  4325. </em>
  4326. </td>
  4327. <td>
  4328. </td>
  4329. </tr>
  4330. </tbody>
  4331. </table>
  4332. <h3 id="external-secrets.io/v1beta1.OnePasswordAuthSecretRef">OnePasswordAuthSecretRef
  4333. </h3>
  4334. <p>
  4335. (<em>Appears on:</em>
  4336. <a href="#external-secrets.io/v1beta1.OnePasswordAuth">OnePasswordAuth</a>)
  4337. </p>
  4338. <p>
  4339. <p>OnePasswordAuthSecretRef holds secret references for 1Password credentials.</p>
  4340. </p>
  4341. <table>
  4342. <thead>
  4343. <tr>
  4344. <th>Field</th>
  4345. <th>Description</th>
  4346. </tr>
  4347. </thead>
  4348. <tbody>
  4349. <tr>
  4350. <td>
  4351. <code>connectTokenSecretRef</code></br>
  4352. <em>
  4353. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  4354. </em>
  4355. </td>
  4356. <td>
  4357. <p>The ConnectToken is used for authentication to a 1Password Connect Server.</p>
  4358. </td>
  4359. </tr>
  4360. </tbody>
  4361. </table>
  4362. <h3 id="external-secrets.io/v1beta1.OnePasswordProvider">OnePasswordProvider
  4363. </h3>
  4364. <p>
  4365. (<em>Appears on:</em>
  4366. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  4367. </p>
  4368. <p>
  4369. <p>OnePasswordProvider configures a store to sync secrets using the 1Password Secret Manager provider.</p>
  4370. </p>
  4371. <table>
  4372. <thead>
  4373. <tr>
  4374. <th>Field</th>
  4375. <th>Description</th>
  4376. </tr>
  4377. </thead>
  4378. <tbody>
  4379. <tr>
  4380. <td>
  4381. <code>auth</code></br>
  4382. <em>
  4383. <a href="#external-secrets.io/v1beta1.OnePasswordAuth">
  4384. OnePasswordAuth
  4385. </a>
  4386. </em>
  4387. </td>
  4388. <td>
  4389. <p>Auth defines the information necessary to authenticate against OnePassword Connect Server</p>
  4390. </td>
  4391. </tr>
  4392. <tr>
  4393. <td>
  4394. <code>connectHost</code></br>
  4395. <em>
  4396. string
  4397. </em>
  4398. </td>
  4399. <td>
  4400. <p>ConnectHost defines the OnePassword Connect Server to connect to</p>
  4401. </td>
  4402. </tr>
  4403. <tr>
  4404. <td>
  4405. <code>vaults</code></br>
  4406. <em>
  4407. map[string]int
  4408. </em>
  4409. </td>
  4410. <td>
  4411. <p>Vaults defines which OnePassword vaults to search in which order</p>
  4412. </td>
  4413. </tr>
  4414. </tbody>
  4415. </table>
  4416. <h3 id="external-secrets.io/v1beta1.OracleAuth">OracleAuth
  4417. </h3>
  4418. <p>
  4419. (<em>Appears on:</em>
  4420. <a href="#external-secrets.io/v1beta1.OracleProvider">OracleProvider</a>)
  4421. </p>
  4422. <p>
  4423. </p>
  4424. <table>
  4425. <thead>
  4426. <tr>
  4427. <th>Field</th>
  4428. <th>Description</th>
  4429. </tr>
  4430. </thead>
  4431. <tbody>
  4432. <tr>
  4433. <td>
  4434. <code>tenancy</code></br>
  4435. <em>
  4436. string
  4437. </em>
  4438. </td>
  4439. <td>
  4440. <p>Tenancy is the tenancy OCID where user is located.</p>
  4441. </td>
  4442. </tr>
  4443. <tr>
  4444. <td>
  4445. <code>user</code></br>
  4446. <em>
  4447. string
  4448. </em>
  4449. </td>
  4450. <td>
  4451. <p>User is an access OCID specific to the account.</p>
  4452. </td>
  4453. </tr>
  4454. <tr>
  4455. <td>
  4456. <code>secretRef</code></br>
  4457. <em>
  4458. <a href="#external-secrets.io/v1beta1.OracleSecretRef">
  4459. OracleSecretRef
  4460. </a>
  4461. </em>
  4462. </td>
  4463. <td>
  4464. <p>SecretRef to pass through sensitive information.</p>
  4465. </td>
  4466. </tr>
  4467. </tbody>
  4468. </table>
  4469. <h3 id="external-secrets.io/v1beta1.OracleProvider">OracleProvider
  4470. </h3>
  4471. <p>
  4472. (<em>Appears on:</em>
  4473. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  4474. </p>
  4475. <p>
  4476. <p>Configures an store to sync secrets using a Oracle Vault
  4477. backend.</p>
  4478. </p>
  4479. <table>
  4480. <thead>
  4481. <tr>
  4482. <th>Field</th>
  4483. <th>Description</th>
  4484. </tr>
  4485. </thead>
  4486. <tbody>
  4487. <tr>
  4488. <td>
  4489. <code>region</code></br>
  4490. <em>
  4491. string
  4492. </em>
  4493. </td>
  4494. <td>
  4495. <p>Region is the region where vault is located.</p>
  4496. </td>
  4497. </tr>
  4498. <tr>
  4499. <td>
  4500. <code>vault</code></br>
  4501. <em>
  4502. string
  4503. </em>
  4504. </td>
  4505. <td>
  4506. <p>Vault is the vault&rsquo;s OCID of the specific vault where secret is located.</p>
  4507. </td>
  4508. </tr>
  4509. <tr>
  4510. <td>
  4511. <code>auth</code></br>
  4512. <em>
  4513. <a href="#external-secrets.io/v1beta1.OracleAuth">
  4514. OracleAuth
  4515. </a>
  4516. </em>
  4517. </td>
  4518. <td>
  4519. <em>(Optional)</em>
  4520. <p>Auth configures how secret-manager authenticates with the Oracle Vault.
  4521. If empty, use the instance principal, otherwise the user credentials specified in Auth.</p>
  4522. </td>
  4523. </tr>
  4524. </tbody>
  4525. </table>
  4526. <h3 id="external-secrets.io/v1beta1.OracleSecretRef">OracleSecretRef
  4527. </h3>
  4528. <p>
  4529. (<em>Appears on:</em>
  4530. <a href="#external-secrets.io/v1beta1.OracleAuth">OracleAuth</a>)
  4531. </p>
  4532. <p>
  4533. </p>
  4534. <table>
  4535. <thead>
  4536. <tr>
  4537. <th>Field</th>
  4538. <th>Description</th>
  4539. </tr>
  4540. </thead>
  4541. <tbody>
  4542. <tr>
  4543. <td>
  4544. <code>privatekey</code></br>
  4545. <em>
  4546. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  4547. </em>
  4548. </td>
  4549. <td>
  4550. <p>PrivateKey is the user&rsquo;s API Signing Key in PEM format, used for authentication.</p>
  4551. </td>
  4552. </tr>
  4553. <tr>
  4554. <td>
  4555. <code>fingerprint</code></br>
  4556. <em>
  4557. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  4558. </em>
  4559. </td>
  4560. <td>
  4561. <p>Fingerprint is the fingerprint of the API private key.</p>
  4562. </td>
  4563. </tr>
  4564. </tbody>
  4565. </table>
  4566. <h3 id="external-secrets.io/v1beta1.Provider">Provider
  4567. </h3>
  4568. <p>
  4569. <p>Provider is a common interface for interacting with secret backends.</p>
  4570. </p>
  4571. <h3 id="external-secrets.io/v1beta1.SecretStore">SecretStore
  4572. </h3>
  4573. <p>
  4574. <p>SecretStore represents a secure external location for storing secrets, which can be referenced as part of <code>storeRef</code> fields.</p>
  4575. </p>
  4576. <table>
  4577. <thead>
  4578. <tr>
  4579. <th>Field</th>
  4580. <th>Description</th>
  4581. </tr>
  4582. </thead>
  4583. <tbody>
  4584. <tr>
  4585. <td>
  4586. <code>metadata</code></br>
  4587. <em>
  4588. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#objectmeta-v1-meta">
  4589. Kubernetes meta/v1.ObjectMeta
  4590. </a>
  4591. </em>
  4592. </td>
  4593. <td>
  4594. Refer to the Kubernetes API documentation for the fields of the
  4595. <code>metadata</code> field.
  4596. </td>
  4597. </tr>
  4598. <tr>
  4599. <td>
  4600. <code>spec</code></br>
  4601. <em>
  4602. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">
  4603. SecretStoreSpec
  4604. </a>
  4605. </em>
  4606. </td>
  4607. <td>
  4608. <br/>
  4609. <br/>
  4610. <table>
  4611. <tr>
  4612. <td>
  4613. <code>controller</code></br>
  4614. <em>
  4615. string
  4616. </em>
  4617. </td>
  4618. <td>
  4619. <em>(Optional)</em>
  4620. <p>Used to select the correct KES controller (think: ingress.ingressClassName)
  4621. The KES controller is instantiated with a specific controller name and filters ES based on this property</p>
  4622. </td>
  4623. </tr>
  4624. <tr>
  4625. <td>
  4626. <code>provider</code></br>
  4627. <em>
  4628. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">
  4629. SecretStoreProvider
  4630. </a>
  4631. </em>
  4632. </td>
  4633. <td>
  4634. <p>Used to configure the provider. Only one provider may be set</p>
  4635. </td>
  4636. </tr>
  4637. <tr>
  4638. <td>
  4639. <code>retrySettings</code></br>
  4640. <em>
  4641. <a href="#external-secrets.io/v1beta1.SecretStoreRetrySettings">
  4642. SecretStoreRetrySettings
  4643. </a>
  4644. </em>
  4645. </td>
  4646. <td>
  4647. <em>(Optional)</em>
  4648. <p>Used to configure http retries if failed</p>
  4649. </td>
  4650. </tr>
  4651. <tr>
  4652. <td>
  4653. <code>refreshInterval</code></br>
  4654. <em>
  4655. int
  4656. </em>
  4657. </td>
  4658. <td>
  4659. <em>(Optional)</em>
  4660. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  4661. </td>
  4662. </tr>
  4663. <tr>
  4664. <td>
  4665. <code>conditions</code></br>
  4666. <em>
  4667. <a href="#external-secrets.io/v1beta1.ClusterSecretStoreCondition">
  4668. []ClusterSecretStoreCondition
  4669. </a>
  4670. </em>
  4671. </td>
  4672. <td>
  4673. <em>(Optional)</em>
  4674. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  4675. </td>
  4676. </tr>
  4677. </table>
  4678. </td>
  4679. </tr>
  4680. <tr>
  4681. <td>
  4682. <code>status</code></br>
  4683. <em>
  4684. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">
  4685. SecretStoreStatus
  4686. </a>
  4687. </em>
  4688. </td>
  4689. <td>
  4690. </td>
  4691. </tr>
  4692. </tbody>
  4693. </table>
  4694. <h3 id="external-secrets.io/v1beta1.SecretStoreConditionType">SecretStoreConditionType
  4695. (<code>string</code> alias)</p></h3>
  4696. <p>
  4697. (<em>Appears on:</em>
  4698. <a href="#external-secrets.io/v1beta1.SecretStoreStatusCondition">SecretStoreStatusCondition</a>)
  4699. </p>
  4700. <p>
  4701. </p>
  4702. <table>
  4703. <thead>
  4704. <tr>
  4705. <th>Value</th>
  4706. <th>Description</th>
  4707. </tr>
  4708. </thead>
  4709. <tbody><tr><td><p>&#34;Ready&#34;</p></td>
  4710. <td></td>
  4711. </tr></tbody>
  4712. </table>
  4713. <h3 id="external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider
  4714. </h3>
  4715. <p>
  4716. (<em>Appears on:</em>
  4717. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec</a>)
  4718. </p>
  4719. <p>
  4720. <p>SecretStoreProvider contains the provider-specific configuration.</p>
  4721. </p>
  4722. <table>
  4723. <thead>
  4724. <tr>
  4725. <th>Field</th>
  4726. <th>Description</th>
  4727. </tr>
  4728. </thead>
  4729. <tbody>
  4730. <tr>
  4731. <td>
  4732. <code>aws</code></br>
  4733. <em>
  4734. <a href="#external-secrets.io/v1beta1.AWSProvider">
  4735. AWSProvider
  4736. </a>
  4737. </em>
  4738. </td>
  4739. <td>
  4740. <em>(Optional)</em>
  4741. <p>AWS configures this store to sync secrets using AWS Secret Manager provider</p>
  4742. </td>
  4743. </tr>
  4744. <tr>
  4745. <td>
  4746. <code>azurekv</code></br>
  4747. <em>
  4748. <a href="#external-secrets.io/v1beta1.AzureKVProvider">
  4749. AzureKVProvider
  4750. </a>
  4751. </em>
  4752. </td>
  4753. <td>
  4754. <em>(Optional)</em>
  4755. <p>AzureKV configures this store to sync secrets using Azure Key Vault provider</p>
  4756. </td>
  4757. </tr>
  4758. <tr>
  4759. <td>
  4760. <code>akeyless</code></br>
  4761. <em>
  4762. <a href="#external-secrets.io/v1beta1.AkeylessProvider">
  4763. AkeylessProvider
  4764. </a>
  4765. </em>
  4766. </td>
  4767. <td>
  4768. <em>(Optional)</em>
  4769. <p>Akeyless configures this store to sync secrets using Akeyless Vault provider</p>
  4770. </td>
  4771. </tr>
  4772. <tr>
  4773. <td>
  4774. <code>vault</code></br>
  4775. <em>
  4776. <a href="#external-secrets.io/v1beta1.VaultProvider">
  4777. VaultProvider
  4778. </a>
  4779. </em>
  4780. </td>
  4781. <td>
  4782. <em>(Optional)</em>
  4783. <p>Vault configures this store to sync secrets using Hashi provider</p>
  4784. </td>
  4785. </tr>
  4786. <tr>
  4787. <td>
  4788. <code>gcpsm</code></br>
  4789. <em>
  4790. <a href="#external-secrets.io/v1beta1.GCPSMProvider">
  4791. GCPSMProvider
  4792. </a>
  4793. </em>
  4794. </td>
  4795. <td>
  4796. <em>(Optional)</em>
  4797. <p>GCPSM configures this store to sync secrets using Google Cloud Platform Secret Manager provider</p>
  4798. </td>
  4799. </tr>
  4800. <tr>
  4801. <td>
  4802. <code>oracle</code></br>
  4803. <em>
  4804. <a href="#external-secrets.io/v1beta1.OracleProvider">
  4805. OracleProvider
  4806. </a>
  4807. </em>
  4808. </td>
  4809. <td>
  4810. <em>(Optional)</em>
  4811. <p>Oracle configures this store to sync secrets using Oracle Vault provider</p>
  4812. </td>
  4813. </tr>
  4814. <tr>
  4815. <td>
  4816. <code>ibm</code></br>
  4817. <em>
  4818. <a href="#external-secrets.io/v1beta1.IBMProvider">
  4819. IBMProvider
  4820. </a>
  4821. </em>
  4822. </td>
  4823. <td>
  4824. <em>(Optional)</em>
  4825. <p>IBM configures this store to sync secrets using IBM Cloud provider</p>
  4826. </td>
  4827. </tr>
  4828. <tr>
  4829. <td>
  4830. <code>yandexcertificatemanager</code></br>
  4831. <em>
  4832. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerProvider">
  4833. YandexCertificateManagerProvider
  4834. </a>
  4835. </em>
  4836. </td>
  4837. <td>
  4838. <em>(Optional)</em>
  4839. <p>YandexCertificateManager configures this store to sync secrets using Yandex Certificate Manager provider</p>
  4840. </td>
  4841. </tr>
  4842. <tr>
  4843. <td>
  4844. <code>yandexlockbox</code></br>
  4845. <em>
  4846. <a href="#external-secrets.io/v1beta1.YandexLockboxProvider">
  4847. YandexLockboxProvider
  4848. </a>
  4849. </em>
  4850. </td>
  4851. <td>
  4852. <em>(Optional)</em>
  4853. <p>YandexLockbox configures this store to sync secrets using Yandex Lockbox provider</p>
  4854. </td>
  4855. </tr>
  4856. <tr>
  4857. <td>
  4858. <code>gitlab</code></br>
  4859. <em>
  4860. <a href="#external-secrets.io/v1beta1.GitlabProvider">
  4861. GitlabProvider
  4862. </a>
  4863. </em>
  4864. </td>
  4865. <td>
  4866. <em>(Optional)</em>
  4867. <p>GitLab configures this store to sync secrets using GitLab Variables provider</p>
  4868. </td>
  4869. </tr>
  4870. <tr>
  4871. <td>
  4872. <code>alibaba</code></br>
  4873. <em>
  4874. <a href="#external-secrets.io/v1beta1.AlibabaProvider">
  4875. AlibabaProvider
  4876. </a>
  4877. </em>
  4878. </td>
  4879. <td>
  4880. <em>(Optional)</em>
  4881. <p>Alibaba configures this store to sync secrets using Alibaba Cloud provider</p>
  4882. </td>
  4883. </tr>
  4884. <tr>
  4885. <td>
  4886. <code>onepassword</code></br>
  4887. <em>
  4888. <a href="#external-secrets.io/v1beta1.OnePasswordProvider">
  4889. OnePasswordProvider
  4890. </a>
  4891. </em>
  4892. </td>
  4893. <td>
  4894. <em>(Optional)</em>
  4895. <p>OnePassword configures this store to sync secrets using the 1Password Cloud provider</p>
  4896. </td>
  4897. </tr>
  4898. <tr>
  4899. <td>
  4900. <code>webhook</code></br>
  4901. <em>
  4902. <a href="#external-secrets.io/v1beta1.WebhookProvider">
  4903. WebhookProvider
  4904. </a>
  4905. </em>
  4906. </td>
  4907. <td>
  4908. <em>(Optional)</em>
  4909. <p>Webhook configures this store to sync secrets using a generic templated webhook</p>
  4910. </td>
  4911. </tr>
  4912. <tr>
  4913. <td>
  4914. <code>kubernetes</code></br>
  4915. <em>
  4916. <a href="#external-secrets.io/v1beta1.KubernetesProvider">
  4917. KubernetesProvider
  4918. </a>
  4919. </em>
  4920. </td>
  4921. <td>
  4922. <em>(Optional)</em>
  4923. <p>Kubernetes configures this store to sync secrets using a Kubernetes cluster provider</p>
  4924. </td>
  4925. </tr>
  4926. <tr>
  4927. <td>
  4928. <code>fake</code></br>
  4929. <em>
  4930. <a href="#external-secrets.io/v1beta1.FakeProvider">
  4931. FakeProvider
  4932. </a>
  4933. </em>
  4934. </td>
  4935. <td>
  4936. <em>(Optional)</em>
  4937. <p>Fake configures a store with static key/value pairs</p>
  4938. </td>
  4939. </tr>
  4940. <tr>
  4941. <td>
  4942. <code>senhasegura</code></br>
  4943. <em>
  4944. <a href="#external-secrets.io/v1beta1.SenhaseguraProvider">
  4945. SenhaseguraProvider
  4946. </a>
  4947. </em>
  4948. </td>
  4949. <td>
  4950. <em>(Optional)</em>
  4951. <p>Senhasegura configures this store to sync secrets using senhasegura provider</p>
  4952. </td>
  4953. </tr>
  4954. <tr>
  4955. <td>
  4956. <code>doppler</code></br>
  4957. <em>
  4958. <a href="#external-secrets.io/v1beta1.DopplerProvider">
  4959. DopplerProvider
  4960. </a>
  4961. </em>
  4962. </td>
  4963. <td>
  4964. <em>(Optional)</em>
  4965. <p>Doppler configures this store to sync secrets using the Doppler provider</p>
  4966. </td>
  4967. </tr>
  4968. </tbody>
  4969. </table>
  4970. <h3 id="external-secrets.io/v1beta1.SecretStoreRef">SecretStoreRef
  4971. </h3>
  4972. <p>
  4973. (<em>Appears on:</em>
  4974. <a href="#external-secrets.io/v1beta1.ExternalSecretSpec">ExternalSecretSpec</a>,
  4975. <a href="#external-secrets.io/v1beta1.SourceRef">SourceRef</a>)
  4976. </p>
  4977. <p>
  4978. <p>SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.</p>
  4979. </p>
  4980. <table>
  4981. <thead>
  4982. <tr>
  4983. <th>Field</th>
  4984. <th>Description</th>
  4985. </tr>
  4986. </thead>
  4987. <tbody>
  4988. <tr>
  4989. <td>
  4990. <code>name</code></br>
  4991. <em>
  4992. string
  4993. </em>
  4994. </td>
  4995. <td>
  4996. <p>Name of the SecretStore resource</p>
  4997. </td>
  4998. </tr>
  4999. <tr>
  5000. <td>
  5001. <code>kind</code></br>
  5002. <em>
  5003. string
  5004. </em>
  5005. </td>
  5006. <td>
  5007. <em>(Optional)</em>
  5008. <p>Kind of the SecretStore resource (SecretStore or ClusterSecretStore)
  5009. Defaults to <code>SecretStore</code></p>
  5010. </td>
  5011. </tr>
  5012. </tbody>
  5013. </table>
  5014. <h3 id="external-secrets.io/v1beta1.SecretStoreRetrySettings">SecretStoreRetrySettings
  5015. </h3>
  5016. <p>
  5017. (<em>Appears on:</em>
  5018. <a href="#external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec</a>)
  5019. </p>
  5020. <p>
  5021. </p>
  5022. <table>
  5023. <thead>
  5024. <tr>
  5025. <th>Field</th>
  5026. <th>Description</th>
  5027. </tr>
  5028. </thead>
  5029. <tbody>
  5030. <tr>
  5031. <td>
  5032. <code>maxRetries</code></br>
  5033. <em>
  5034. int32
  5035. </em>
  5036. </td>
  5037. <td>
  5038. </td>
  5039. </tr>
  5040. <tr>
  5041. <td>
  5042. <code>retryInterval</code></br>
  5043. <em>
  5044. string
  5045. </em>
  5046. </td>
  5047. <td>
  5048. </td>
  5049. </tr>
  5050. </tbody>
  5051. </table>
  5052. <h3 id="external-secrets.io/v1beta1.SecretStoreSpec">SecretStoreSpec
  5053. </h3>
  5054. <p>
  5055. (<em>Appears on:</em>
  5056. <a href="#external-secrets.io/v1beta1.ClusterSecretStore">ClusterSecretStore</a>,
  5057. <a href="#external-secrets.io/v1beta1.SecretStore">SecretStore</a>)
  5058. </p>
  5059. <p>
  5060. <p>SecretStoreSpec defines the desired state of SecretStore.</p>
  5061. </p>
  5062. <table>
  5063. <thead>
  5064. <tr>
  5065. <th>Field</th>
  5066. <th>Description</th>
  5067. </tr>
  5068. </thead>
  5069. <tbody>
  5070. <tr>
  5071. <td>
  5072. <code>controller</code></br>
  5073. <em>
  5074. string
  5075. </em>
  5076. </td>
  5077. <td>
  5078. <em>(Optional)</em>
  5079. <p>Used to select the correct KES controller (think: ingress.ingressClassName)
  5080. The KES controller is instantiated with a specific controller name and filters ES based on this property</p>
  5081. </td>
  5082. </tr>
  5083. <tr>
  5084. <td>
  5085. <code>provider</code></br>
  5086. <em>
  5087. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">
  5088. SecretStoreProvider
  5089. </a>
  5090. </em>
  5091. </td>
  5092. <td>
  5093. <p>Used to configure the provider. Only one provider may be set</p>
  5094. </td>
  5095. </tr>
  5096. <tr>
  5097. <td>
  5098. <code>retrySettings</code></br>
  5099. <em>
  5100. <a href="#external-secrets.io/v1beta1.SecretStoreRetrySettings">
  5101. SecretStoreRetrySettings
  5102. </a>
  5103. </em>
  5104. </td>
  5105. <td>
  5106. <em>(Optional)</em>
  5107. <p>Used to configure http retries if failed</p>
  5108. </td>
  5109. </tr>
  5110. <tr>
  5111. <td>
  5112. <code>refreshInterval</code></br>
  5113. <em>
  5114. int
  5115. </em>
  5116. </td>
  5117. <td>
  5118. <em>(Optional)</em>
  5119. <p>Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.</p>
  5120. </td>
  5121. </tr>
  5122. <tr>
  5123. <td>
  5124. <code>conditions</code></br>
  5125. <em>
  5126. <a href="#external-secrets.io/v1beta1.ClusterSecretStoreCondition">
  5127. []ClusterSecretStoreCondition
  5128. </a>
  5129. </em>
  5130. </td>
  5131. <td>
  5132. <em>(Optional)</em>
  5133. <p>Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore</p>
  5134. </td>
  5135. </tr>
  5136. </tbody>
  5137. </table>
  5138. <h3 id="external-secrets.io/v1beta1.SecretStoreStatus">SecretStoreStatus
  5139. </h3>
  5140. <p>
  5141. (<em>Appears on:</em>
  5142. <a href="#external-secrets.io/v1beta1.ClusterSecretStore">ClusterSecretStore</a>,
  5143. <a href="#external-secrets.io/v1beta1.SecretStore">SecretStore</a>)
  5144. </p>
  5145. <p>
  5146. <p>SecretStoreStatus defines the observed state of the SecretStore.</p>
  5147. </p>
  5148. <table>
  5149. <thead>
  5150. <tr>
  5151. <th>Field</th>
  5152. <th>Description</th>
  5153. </tr>
  5154. </thead>
  5155. <tbody>
  5156. <tr>
  5157. <td>
  5158. <code>conditions</code></br>
  5159. <em>
  5160. <a href="#external-secrets.io/v1beta1.SecretStoreStatusCondition">
  5161. []SecretStoreStatusCondition
  5162. </a>
  5163. </em>
  5164. </td>
  5165. <td>
  5166. <em>(Optional)</em>
  5167. </td>
  5168. </tr>
  5169. </tbody>
  5170. </table>
  5171. <h3 id="external-secrets.io/v1beta1.SecretStoreStatusCondition">SecretStoreStatusCondition
  5172. </h3>
  5173. <p>
  5174. (<em>Appears on:</em>
  5175. <a href="#external-secrets.io/v1beta1.SecretStoreStatus">SecretStoreStatus</a>)
  5176. </p>
  5177. <p>
  5178. </p>
  5179. <table>
  5180. <thead>
  5181. <tr>
  5182. <th>Field</th>
  5183. <th>Description</th>
  5184. </tr>
  5185. </thead>
  5186. <tbody>
  5187. <tr>
  5188. <td>
  5189. <code>type</code></br>
  5190. <em>
  5191. <a href="#external-secrets.io/v1beta1.SecretStoreConditionType">
  5192. SecretStoreConditionType
  5193. </a>
  5194. </em>
  5195. </td>
  5196. <td>
  5197. </td>
  5198. </tr>
  5199. <tr>
  5200. <td>
  5201. <code>status</code></br>
  5202. <em>
  5203. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#conditionstatus-v1-core">
  5204. Kubernetes core/v1.ConditionStatus
  5205. </a>
  5206. </em>
  5207. </td>
  5208. <td>
  5209. </td>
  5210. </tr>
  5211. <tr>
  5212. <td>
  5213. <code>reason</code></br>
  5214. <em>
  5215. string
  5216. </em>
  5217. </td>
  5218. <td>
  5219. <em>(Optional)</em>
  5220. </td>
  5221. </tr>
  5222. <tr>
  5223. <td>
  5224. <code>message</code></br>
  5225. <em>
  5226. string
  5227. </em>
  5228. </td>
  5229. <td>
  5230. <em>(Optional)</em>
  5231. </td>
  5232. </tr>
  5233. <tr>
  5234. <td>
  5235. <code>lastTransitionTime</code></br>
  5236. <em>
  5237. <a href="https://godoc.org/k8s.io/apimachinery/pkg/apis/meta/v1#Time">
  5238. Kubernetes meta/v1.Time
  5239. </a>
  5240. </em>
  5241. </td>
  5242. <td>
  5243. <em>(Optional)</em>
  5244. </td>
  5245. </tr>
  5246. </tbody>
  5247. </table>
  5248. <h3 id="external-secrets.io/v1beta1.SecretsClient">SecretsClient
  5249. </h3>
  5250. <p>
  5251. <p>SecretsClient provides access to secrets.</p>
  5252. </p>
  5253. <h3 id="external-secrets.io/v1beta1.SenhaseguraAuth">SenhaseguraAuth
  5254. </h3>
  5255. <p>
  5256. (<em>Appears on:</em>
  5257. <a href="#external-secrets.io/v1beta1.SenhaseguraProvider">SenhaseguraProvider</a>)
  5258. </p>
  5259. <p>
  5260. <p>SenhaseguraAuth tells the controller how to do auth in senhasegura.</p>
  5261. </p>
  5262. <table>
  5263. <thead>
  5264. <tr>
  5265. <th>Field</th>
  5266. <th>Description</th>
  5267. </tr>
  5268. </thead>
  5269. <tbody>
  5270. <tr>
  5271. <td>
  5272. <code>clientId</code></br>
  5273. <em>
  5274. string
  5275. </em>
  5276. </td>
  5277. <td>
  5278. </td>
  5279. </tr>
  5280. <tr>
  5281. <td>
  5282. <code>clientSecretSecretRef</code></br>
  5283. <em>
  5284. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5285. </em>
  5286. </td>
  5287. <td>
  5288. </td>
  5289. </tr>
  5290. </tbody>
  5291. </table>
  5292. <h3 id="external-secrets.io/v1beta1.SenhaseguraModuleType">SenhaseguraModuleType
  5293. (<code>string</code> alias)</p></h3>
  5294. <p>
  5295. (<em>Appears on:</em>
  5296. <a href="#external-secrets.io/v1beta1.SenhaseguraProvider">SenhaseguraProvider</a>)
  5297. </p>
  5298. <p>
  5299. <p>SenhaseguraModuleType enum defines senhasegura target module to fetch secrets</p>
  5300. </p>
  5301. <table>
  5302. <thead>
  5303. <tr>
  5304. <th>Value</th>
  5305. <th>Description</th>
  5306. </tr>
  5307. </thead>
  5308. <tbody><tr><td><p>&#34;DSM&#34;</p></td>
  5309. <td><pre><code> SenhaseguraModuleDSM is the senhasegura DevOps Secrets Management module
  5310. see: https://senhasegura.com/devops
  5311. </code></pre>
  5312. </td>
  5313. </tr></tbody>
  5314. </table>
  5315. <h3 id="external-secrets.io/v1beta1.SenhaseguraProvider">SenhaseguraProvider
  5316. </h3>
  5317. <p>
  5318. (<em>Appears on:</em>
  5319. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  5320. </p>
  5321. <p>
  5322. <p>SenhaseguraProvider setup a store to sync secrets with senhasegura.</p>
  5323. </p>
  5324. <table>
  5325. <thead>
  5326. <tr>
  5327. <th>Field</th>
  5328. <th>Description</th>
  5329. </tr>
  5330. </thead>
  5331. <tbody>
  5332. <tr>
  5333. <td>
  5334. <code>url</code></br>
  5335. <em>
  5336. string
  5337. </em>
  5338. </td>
  5339. <td>
  5340. <p>URL of senhasegura</p>
  5341. </td>
  5342. </tr>
  5343. <tr>
  5344. <td>
  5345. <code>module</code></br>
  5346. <em>
  5347. <a href="#external-secrets.io/v1beta1.SenhaseguraModuleType">
  5348. SenhaseguraModuleType
  5349. </a>
  5350. </em>
  5351. </td>
  5352. <td>
  5353. <p>Module defines which senhasegura module should be used to get secrets</p>
  5354. </td>
  5355. </tr>
  5356. <tr>
  5357. <td>
  5358. <code>auth</code></br>
  5359. <em>
  5360. <a href="#external-secrets.io/v1beta1.SenhaseguraAuth">
  5361. SenhaseguraAuth
  5362. </a>
  5363. </em>
  5364. </td>
  5365. <td>
  5366. <p>Auth defines parameters to authenticate in senhasegura</p>
  5367. </td>
  5368. </tr>
  5369. <tr>
  5370. <td>
  5371. <code>ignoreSslCertificate</code></br>
  5372. <em>
  5373. bool
  5374. </em>
  5375. </td>
  5376. <td>
  5377. <p>IgnoreSslCertificate defines if SSL certificate must be ignored</p>
  5378. </td>
  5379. </tr>
  5380. </tbody>
  5381. </table>
  5382. <h3 id="external-secrets.io/v1beta1.SourceRef">SourceRef
  5383. </h3>
  5384. <p>
  5385. (<em>Appears on:</em>
  5386. <a href="#external-secrets.io/v1beta1.ExternalSecretData">ExternalSecretData</a>,
  5387. <a href="#external-secrets.io/v1beta1.ExternalSecretDataFromRemoteRef">ExternalSecretDataFromRemoteRef</a>)
  5388. </p>
  5389. <p>
  5390. <p>SourceRef allows you to override the source
  5391. from which the secret will be pulled from.
  5392. You can define at maximum one property.</p>
  5393. </p>
  5394. <table>
  5395. <thead>
  5396. <tr>
  5397. <th>Field</th>
  5398. <th>Description</th>
  5399. </tr>
  5400. </thead>
  5401. <tbody>
  5402. <tr>
  5403. <td>
  5404. <code>storeRef</code></br>
  5405. <em>
  5406. <a href="#external-secrets.io/v1beta1.SecretStoreRef">
  5407. SecretStoreRef
  5408. </a>
  5409. </em>
  5410. </td>
  5411. <td>
  5412. <em>(Optional)</em>
  5413. </td>
  5414. </tr>
  5415. <tr>
  5416. <td>
  5417. <code>generatorRef</code></br>
  5418. <em>
  5419. <a href="#external-secrets.io/v1beta1.GeneratorRef">
  5420. GeneratorRef
  5421. </a>
  5422. </em>
  5423. </td>
  5424. <td>
  5425. <em>(Optional)</em>
  5426. <p>GeneratorRef points to a generator custom resource in</p>
  5427. </td>
  5428. </tr>
  5429. </tbody>
  5430. </table>
  5431. <h3 id="external-secrets.io/v1beta1.TemplateEngineVersion">TemplateEngineVersion
  5432. (<code>string</code> alias)</p></h3>
  5433. <p>
  5434. (<em>Appears on:</em>
  5435. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  5436. </p>
  5437. <p>
  5438. </p>
  5439. <table>
  5440. <thead>
  5441. <tr>
  5442. <th>Value</th>
  5443. <th>Description</th>
  5444. </tr>
  5445. </thead>
  5446. <tbody><tr><td><p>&#34;v1&#34;</p></td>
  5447. <td></td>
  5448. </tr><tr><td><p>&#34;v2&#34;</p></td>
  5449. <td></td>
  5450. </tr></tbody>
  5451. </table>
  5452. <h3 id="external-secrets.io/v1beta1.TemplateFrom">TemplateFrom
  5453. </h3>
  5454. <p>
  5455. (<em>Appears on:</em>
  5456. <a href="#external-secrets.io/v1beta1.ExternalSecretTemplate">ExternalSecretTemplate</a>)
  5457. </p>
  5458. <p>
  5459. </p>
  5460. <table>
  5461. <thead>
  5462. <tr>
  5463. <th>Field</th>
  5464. <th>Description</th>
  5465. </tr>
  5466. </thead>
  5467. <tbody>
  5468. <tr>
  5469. <td>
  5470. <code>configMap</code></br>
  5471. <em>
  5472. <a href="#external-secrets.io/v1beta1.TemplateRef">
  5473. TemplateRef
  5474. </a>
  5475. </em>
  5476. </td>
  5477. <td>
  5478. </td>
  5479. </tr>
  5480. <tr>
  5481. <td>
  5482. <code>secret</code></br>
  5483. <em>
  5484. <a href="#external-secrets.io/v1beta1.TemplateRef">
  5485. TemplateRef
  5486. </a>
  5487. </em>
  5488. </td>
  5489. <td>
  5490. </td>
  5491. </tr>
  5492. <tr>
  5493. <td>
  5494. <code>scope</code></br>
  5495. <em>
  5496. <a href="#external-secrets.io/v1beta1.TemplateScope">
  5497. TemplateScope
  5498. </a>
  5499. </em>
  5500. </td>
  5501. <td>
  5502. <em>(Optional)</em>
  5503. </td>
  5504. </tr>
  5505. <tr>
  5506. <td>
  5507. <code>target</code></br>
  5508. <em>
  5509. <a href="#external-secrets.io/v1beta1.TemplateTarget">
  5510. TemplateTarget
  5511. </a>
  5512. </em>
  5513. </td>
  5514. <td>
  5515. <em>(Optional)</em>
  5516. </td>
  5517. </tr>
  5518. <tr>
  5519. <td>
  5520. <code>literal</code></br>
  5521. <em>
  5522. string
  5523. </em>
  5524. </td>
  5525. <td>
  5526. <em>(Optional)</em>
  5527. </td>
  5528. </tr>
  5529. </tbody>
  5530. </table>
  5531. <h3 id="external-secrets.io/v1beta1.TemplateRef">TemplateRef
  5532. </h3>
  5533. <p>
  5534. (<em>Appears on:</em>
  5535. <a href="#external-secrets.io/v1beta1.TemplateFrom">TemplateFrom</a>)
  5536. </p>
  5537. <p>
  5538. </p>
  5539. <table>
  5540. <thead>
  5541. <tr>
  5542. <th>Field</th>
  5543. <th>Description</th>
  5544. </tr>
  5545. </thead>
  5546. <tbody>
  5547. <tr>
  5548. <td>
  5549. <code>name</code></br>
  5550. <em>
  5551. string
  5552. </em>
  5553. </td>
  5554. <td>
  5555. </td>
  5556. </tr>
  5557. <tr>
  5558. <td>
  5559. <code>items</code></br>
  5560. <em>
  5561. <a href="#external-secrets.io/v1beta1.TemplateRefItem">
  5562. []TemplateRefItem
  5563. </a>
  5564. </em>
  5565. </td>
  5566. <td>
  5567. </td>
  5568. </tr>
  5569. </tbody>
  5570. </table>
  5571. <h3 id="external-secrets.io/v1beta1.TemplateRefItem">TemplateRefItem
  5572. </h3>
  5573. <p>
  5574. (<em>Appears on:</em>
  5575. <a href="#external-secrets.io/v1beta1.TemplateRef">TemplateRef</a>)
  5576. </p>
  5577. <p>
  5578. </p>
  5579. <table>
  5580. <thead>
  5581. <tr>
  5582. <th>Field</th>
  5583. <th>Description</th>
  5584. </tr>
  5585. </thead>
  5586. <tbody>
  5587. <tr>
  5588. <td>
  5589. <code>key</code></br>
  5590. <em>
  5591. string
  5592. </em>
  5593. </td>
  5594. <td>
  5595. </td>
  5596. </tr>
  5597. </tbody>
  5598. </table>
  5599. <h3 id="external-secrets.io/v1beta1.TemplateScope">TemplateScope
  5600. (<code>string</code> alias)</p></h3>
  5601. <p>
  5602. (<em>Appears on:</em>
  5603. <a href="#external-secrets.io/v1beta1.TemplateFrom">TemplateFrom</a>)
  5604. </p>
  5605. <p>
  5606. </p>
  5607. <table>
  5608. <thead>
  5609. <tr>
  5610. <th>Value</th>
  5611. <th>Description</th>
  5612. </tr>
  5613. </thead>
  5614. <tbody><tr><td><p>&#34;KeysAndValues&#34;</p></td>
  5615. <td></td>
  5616. </tr><tr><td><p>&#34;Values&#34;</p></td>
  5617. <td></td>
  5618. </tr></tbody>
  5619. </table>
  5620. <h3 id="external-secrets.io/v1beta1.TemplateTarget">TemplateTarget
  5621. (<code>string</code> alias)</p></h3>
  5622. <p>
  5623. (<em>Appears on:</em>
  5624. <a href="#external-secrets.io/v1beta1.TemplateFrom">TemplateFrom</a>)
  5625. </p>
  5626. <p>
  5627. </p>
  5628. <table>
  5629. <thead>
  5630. <tr>
  5631. <th>Value</th>
  5632. <th>Description</th>
  5633. </tr>
  5634. </thead>
  5635. <tbody><tr><td><p>&#34;Annotations&#34;</p></td>
  5636. <td></td>
  5637. </tr><tr><td><p>&#34;Data&#34;</p></td>
  5638. <td></td>
  5639. </tr><tr><td><p>&#34;Labels&#34;</p></td>
  5640. <td></td>
  5641. </tr><tr><td><p>&#34;StringData&#34;</p></td>
  5642. <td></td>
  5643. </tr></tbody>
  5644. </table>
  5645. <h3 id="external-secrets.io/v1beta1.TokenAuth">TokenAuth
  5646. </h3>
  5647. <p>
  5648. (<em>Appears on:</em>
  5649. <a href="#external-secrets.io/v1beta1.KubernetesAuth">KubernetesAuth</a>)
  5650. </p>
  5651. <p>
  5652. </p>
  5653. <table>
  5654. <thead>
  5655. <tr>
  5656. <th>Field</th>
  5657. <th>Description</th>
  5658. </tr>
  5659. </thead>
  5660. <tbody>
  5661. <tr>
  5662. <td>
  5663. <code>bearerToken</code></br>
  5664. <em>
  5665. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5666. </em>
  5667. </td>
  5668. <td>
  5669. </td>
  5670. </tr>
  5671. </tbody>
  5672. </table>
  5673. <h3 id="external-secrets.io/v1beta1.ValidationResult">ValidationResult
  5674. (<code>byte</code> alias)</p></h3>
  5675. <p>
  5676. </p>
  5677. <table>
  5678. <thead>
  5679. <tr>
  5680. <th>Value</th>
  5681. <th>Description</th>
  5682. </tr>
  5683. </thead>
  5684. <tbody><tr><td><p>2</p></td>
  5685. <td><p>Error indicates that there is a misconfiguration.</p>
  5686. </td>
  5687. </tr><tr><td><p>0</p></td>
  5688. <td><p>Ready indicates that the client is configured correctly
  5689. and can be used.</p>
  5690. </td>
  5691. </tr><tr><td><p>1</p></td>
  5692. <td><p>Unknown indicates that the client can be used
  5693. but information is missing and it can not be validated.</p>
  5694. </td>
  5695. </tr></tbody>
  5696. </table>
  5697. <h3 id="external-secrets.io/v1beta1.VaultAppRole">VaultAppRole
  5698. </h3>
  5699. <p>
  5700. (<em>Appears on:</em>
  5701. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  5702. </p>
  5703. <p>
  5704. <p>VaultAppRole authenticates with Vault using the App Role auth mechanism,
  5705. with the role and secret stored in a Kubernetes Secret resource.</p>
  5706. </p>
  5707. <table>
  5708. <thead>
  5709. <tr>
  5710. <th>Field</th>
  5711. <th>Description</th>
  5712. </tr>
  5713. </thead>
  5714. <tbody>
  5715. <tr>
  5716. <td>
  5717. <code>path</code></br>
  5718. <em>
  5719. string
  5720. </em>
  5721. </td>
  5722. <td>
  5723. <p>Path where the App Role authentication backend is mounted
  5724. in Vault, e.g: &ldquo;approle&rdquo;</p>
  5725. </td>
  5726. </tr>
  5727. <tr>
  5728. <td>
  5729. <code>roleId</code></br>
  5730. <em>
  5731. string
  5732. </em>
  5733. </td>
  5734. <td>
  5735. <p>RoleID configured in the App Role authentication backend when setting
  5736. up the authentication backend in Vault.</p>
  5737. </td>
  5738. </tr>
  5739. <tr>
  5740. <td>
  5741. <code>secretRef</code></br>
  5742. <em>
  5743. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5744. </em>
  5745. </td>
  5746. <td>
  5747. <p>Reference to a key in a Secret that contains the App Role secret used
  5748. to authenticate with Vault.
  5749. The <code>key</code> field must be specified and denotes which entry within the Secret
  5750. resource is used as the app role secret.</p>
  5751. </td>
  5752. </tr>
  5753. </tbody>
  5754. </table>
  5755. <h3 id="external-secrets.io/v1beta1.VaultAuth">VaultAuth
  5756. </h3>
  5757. <p>
  5758. (<em>Appears on:</em>
  5759. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  5760. </p>
  5761. <p>
  5762. <p>VaultAuth is the configuration used to authenticate with a Vault server.
  5763. Only one of <code>tokenSecretRef</code>, <code>appRole</code>, <code>kubernetes</code>, <code>ldap</code>, <code>userPass</code>, <code>jwt</code> or <code>cert</code>
  5764. can be specified.</p>
  5765. </p>
  5766. <table>
  5767. <thead>
  5768. <tr>
  5769. <th>Field</th>
  5770. <th>Description</th>
  5771. </tr>
  5772. </thead>
  5773. <tbody>
  5774. <tr>
  5775. <td>
  5776. <code>tokenSecretRef</code></br>
  5777. <em>
  5778. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5779. </em>
  5780. </td>
  5781. <td>
  5782. <em>(Optional)</em>
  5783. <p>TokenSecretRef authenticates with Vault by presenting a token.</p>
  5784. </td>
  5785. </tr>
  5786. <tr>
  5787. <td>
  5788. <code>appRole</code></br>
  5789. <em>
  5790. <a href="#external-secrets.io/v1beta1.VaultAppRole">
  5791. VaultAppRole
  5792. </a>
  5793. </em>
  5794. </td>
  5795. <td>
  5796. <em>(Optional)</em>
  5797. <p>AppRole authenticates with Vault using the App Role auth mechanism,
  5798. with the role and secret stored in a Kubernetes Secret resource.</p>
  5799. </td>
  5800. </tr>
  5801. <tr>
  5802. <td>
  5803. <code>kubernetes</code></br>
  5804. <em>
  5805. <a href="#external-secrets.io/v1beta1.VaultKubernetesAuth">
  5806. VaultKubernetesAuth
  5807. </a>
  5808. </em>
  5809. </td>
  5810. <td>
  5811. <em>(Optional)</em>
  5812. <p>Kubernetes authenticates with Vault by passing the ServiceAccount
  5813. token stored in the named Secret resource to the Vault server.</p>
  5814. </td>
  5815. </tr>
  5816. <tr>
  5817. <td>
  5818. <code>ldap</code></br>
  5819. <em>
  5820. <a href="#external-secrets.io/v1beta1.VaultLdapAuth">
  5821. VaultLdapAuth
  5822. </a>
  5823. </em>
  5824. </td>
  5825. <td>
  5826. <em>(Optional)</em>
  5827. <p>Ldap authenticates with Vault by passing username/password pair using
  5828. the LDAP authentication method</p>
  5829. </td>
  5830. </tr>
  5831. <tr>
  5832. <td>
  5833. <code>userPass</code></br>
  5834. <em>
  5835. <a href="#external-secrets.io/v1beta1.VaultUserPassAuth">
  5836. VaultUserPassAuth
  5837. </a>
  5838. </em>
  5839. </td>
  5840. <td>
  5841. <em>(Optional)</em>
  5842. <p>UserPass authenticates with Vault by passing username/password pair using
  5843. the userPass authentication method</p>
  5844. </td>
  5845. </tr>
  5846. <tr>
  5847. <td>
  5848. <code>jwt</code></br>
  5849. <em>
  5850. <a href="#external-secrets.io/v1beta1.VaultJwtAuth">
  5851. VaultJwtAuth
  5852. </a>
  5853. </em>
  5854. </td>
  5855. <td>
  5856. <em>(Optional)</em>
  5857. <p>Jwt authenticates with Vault by passing role and JWT token using the
  5858. JWT/OIDC authentication method</p>
  5859. </td>
  5860. </tr>
  5861. <tr>
  5862. <td>
  5863. <code>cert</code></br>
  5864. <em>
  5865. <a href="#external-secrets.io/v1beta1.VaultCertAuth">
  5866. VaultCertAuth
  5867. </a>
  5868. </em>
  5869. </td>
  5870. <td>
  5871. <em>(Optional)</em>
  5872. <p>Cert authenticates with TLS Certificates by passing client certificate, private key and ca certificate
  5873. Cert authentication method</p>
  5874. </td>
  5875. </tr>
  5876. </tbody>
  5877. </table>
  5878. <h3 id="external-secrets.io/v1beta1.VaultCertAuth">VaultCertAuth
  5879. </h3>
  5880. <p>
  5881. (<em>Appears on:</em>
  5882. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  5883. </p>
  5884. <p>
  5885. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  5886. method, with the role name and token stored in a Kubernetes Secret resource.</p>
  5887. </p>
  5888. <table>
  5889. <thead>
  5890. <tr>
  5891. <th>Field</th>
  5892. <th>Description</th>
  5893. </tr>
  5894. </thead>
  5895. <tbody>
  5896. <tr>
  5897. <td>
  5898. <code>clientCert</code></br>
  5899. <em>
  5900. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5901. </em>
  5902. </td>
  5903. <td>
  5904. <em>(Optional)</em>
  5905. <p>ClientCert is a certificate to authenticate using the Cert Vault
  5906. authentication method</p>
  5907. </td>
  5908. </tr>
  5909. <tr>
  5910. <td>
  5911. <code>secretRef</code></br>
  5912. <em>
  5913. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5914. </em>
  5915. </td>
  5916. <td>
  5917. <p>SecretRef to a key in a Secret resource containing client private key to
  5918. authenticate with Vault using the Cert authentication method</p>
  5919. </td>
  5920. </tr>
  5921. </tbody>
  5922. </table>
  5923. <h3 id="external-secrets.io/v1beta1.VaultJwtAuth">VaultJwtAuth
  5924. </h3>
  5925. <p>
  5926. (<em>Appears on:</em>
  5927. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  5928. </p>
  5929. <p>
  5930. <p>VaultJwtAuth authenticates with Vault using the JWT/OIDC authentication
  5931. method, with the role name and a token stored in a Kubernetes Secret resource or
  5932. a Kubernetes service account token retrieved via <code>TokenRequest</code>.</p>
  5933. </p>
  5934. <table>
  5935. <thead>
  5936. <tr>
  5937. <th>Field</th>
  5938. <th>Description</th>
  5939. </tr>
  5940. </thead>
  5941. <tbody>
  5942. <tr>
  5943. <td>
  5944. <code>path</code></br>
  5945. <em>
  5946. string
  5947. </em>
  5948. </td>
  5949. <td>
  5950. <p>Path where the JWT authentication backend is mounted
  5951. in Vault, e.g: &ldquo;jwt&rdquo;</p>
  5952. </td>
  5953. </tr>
  5954. <tr>
  5955. <td>
  5956. <code>role</code></br>
  5957. <em>
  5958. string
  5959. </em>
  5960. </td>
  5961. <td>
  5962. <em>(Optional)</em>
  5963. <p>Role is a JWT role to authenticate using the JWT/OIDC Vault
  5964. authentication method</p>
  5965. </td>
  5966. </tr>
  5967. <tr>
  5968. <td>
  5969. <code>secretRef</code></br>
  5970. <em>
  5971. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  5972. </em>
  5973. </td>
  5974. <td>
  5975. <em>(Optional)</em>
  5976. <p>Optional SecretRef that refers to a key in a Secret resource containing JWT token to
  5977. authenticate with Vault using the JWT/OIDC authentication method.</p>
  5978. </td>
  5979. </tr>
  5980. <tr>
  5981. <td>
  5982. <code>kubernetesServiceAccountToken</code></br>
  5983. <em>
  5984. <a href="#external-secrets.io/v1beta1.VaultKubernetesServiceAccountTokenAuth">
  5985. VaultKubernetesServiceAccountTokenAuth
  5986. </a>
  5987. </em>
  5988. </td>
  5989. <td>
  5990. <em>(Optional)</em>
  5991. <p>Optional ServiceAccountToken specifies the Kubernetes service account for which to request
  5992. a token for with the <code>TokenRequest</code> API.</p>
  5993. </td>
  5994. </tr>
  5995. </tbody>
  5996. </table>
  5997. <h3 id="external-secrets.io/v1beta1.VaultKVStoreVersion">VaultKVStoreVersion
  5998. (<code>string</code> alias)</p></h3>
  5999. <p>
  6000. (<em>Appears on:</em>
  6001. <a href="#external-secrets.io/v1beta1.VaultProvider">VaultProvider</a>)
  6002. </p>
  6003. <p>
  6004. </p>
  6005. <table>
  6006. <thead>
  6007. <tr>
  6008. <th>Value</th>
  6009. <th>Description</th>
  6010. </tr>
  6011. </thead>
  6012. <tbody><tr><td><p>&#34;v1&#34;</p></td>
  6013. <td></td>
  6014. </tr><tr><td><p>&#34;v2&#34;</p></td>
  6015. <td></td>
  6016. </tr></tbody>
  6017. </table>
  6018. <h3 id="external-secrets.io/v1beta1.VaultKubernetesAuth">VaultKubernetesAuth
  6019. </h3>
  6020. <p>
  6021. (<em>Appears on:</em>
  6022. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  6023. </p>
  6024. <p>
  6025. <p>Authenticate against Vault using a Kubernetes ServiceAccount token stored in
  6026. a Secret.</p>
  6027. </p>
  6028. <table>
  6029. <thead>
  6030. <tr>
  6031. <th>Field</th>
  6032. <th>Description</th>
  6033. </tr>
  6034. </thead>
  6035. <tbody>
  6036. <tr>
  6037. <td>
  6038. <code>mountPath</code></br>
  6039. <em>
  6040. string
  6041. </em>
  6042. </td>
  6043. <td>
  6044. <p>Path where the Kubernetes authentication backend is mounted in Vault, e.g:
  6045. &ldquo;kubernetes&rdquo;</p>
  6046. </td>
  6047. </tr>
  6048. <tr>
  6049. <td>
  6050. <code>serviceAccountRef</code></br>
  6051. <em>
  6052. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  6053. </em>
  6054. </td>
  6055. <td>
  6056. <em>(Optional)</em>
  6057. <p>Optional service account field containing the name of a kubernetes ServiceAccount.
  6058. If the service account is specified, the service account secret token JWT will be used
  6059. for authenticating with Vault. If the service account selector is not supplied,
  6060. the secretRef will be used instead.</p>
  6061. </td>
  6062. </tr>
  6063. <tr>
  6064. <td>
  6065. <code>secretRef</code></br>
  6066. <em>
  6067. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  6068. </em>
  6069. </td>
  6070. <td>
  6071. <em>(Optional)</em>
  6072. <p>Optional secret field containing a Kubernetes ServiceAccount JWT used
  6073. for authenticating with Vault. If a name is specified without a key,
  6074. <code>token</code> is the default. If one is not specified, the one bound to
  6075. the controller will be used.</p>
  6076. </td>
  6077. </tr>
  6078. <tr>
  6079. <td>
  6080. <code>role</code></br>
  6081. <em>
  6082. string
  6083. </em>
  6084. </td>
  6085. <td>
  6086. <p>A required field containing the Vault Role to assume. A Role binds a
  6087. Kubernetes ServiceAccount with a set of Vault policies.</p>
  6088. </td>
  6089. </tr>
  6090. </tbody>
  6091. </table>
  6092. <h3 id="external-secrets.io/v1beta1.VaultKubernetesServiceAccountTokenAuth">VaultKubernetesServiceAccountTokenAuth
  6093. </h3>
  6094. <p>
  6095. (<em>Appears on:</em>
  6096. <a href="#external-secrets.io/v1beta1.VaultJwtAuth">VaultJwtAuth</a>)
  6097. </p>
  6098. <p>
  6099. <p>VaultKubernetesServiceAccountTokenAuth authenticates with Vault using a temporary
  6100. Kubernetes service account token retrieved by the <code>TokenRequest</code> API.</p>
  6101. </p>
  6102. <table>
  6103. <thead>
  6104. <tr>
  6105. <th>Field</th>
  6106. <th>Description</th>
  6107. </tr>
  6108. </thead>
  6109. <tbody>
  6110. <tr>
  6111. <td>
  6112. <code>serviceAccountRef</code></br>
  6113. <em>
  6114. github.com/external-secrets/external-secrets/apis/meta/v1.ServiceAccountSelector
  6115. </em>
  6116. </td>
  6117. <td>
  6118. <p>Service account field containing the name of a kubernetes ServiceAccount.</p>
  6119. </td>
  6120. </tr>
  6121. <tr>
  6122. <td>
  6123. <code>audiences</code></br>
  6124. <em>
  6125. []string
  6126. </em>
  6127. </td>
  6128. <td>
  6129. <em>(Optional)</em>
  6130. <p>Optional audiences field that will be used to request a temporary Kubernetes service
  6131. account token for the service account referenced by <code>serviceAccountRef</code>.
  6132. Defaults to a single audience <code>vault</code> it not specified.
  6133. Deprecated: use serviceAccountRef.Audiences instead</p>
  6134. </td>
  6135. </tr>
  6136. <tr>
  6137. <td>
  6138. <code>expirationSeconds</code></br>
  6139. <em>
  6140. int64
  6141. </em>
  6142. </td>
  6143. <td>
  6144. <em>(Optional)</em>
  6145. <p>Optional expiration time in seconds that will be used to request a temporary
  6146. Kubernetes service account token for the service account referenced by
  6147. <code>serviceAccountRef</code>.
  6148. Deprecated: this will be removed in the future.
  6149. Defaults to 10 minutes.</p>
  6150. </td>
  6151. </tr>
  6152. </tbody>
  6153. </table>
  6154. <h3 id="external-secrets.io/v1beta1.VaultLdapAuth">VaultLdapAuth
  6155. </h3>
  6156. <p>
  6157. (<em>Appears on:</em>
  6158. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  6159. </p>
  6160. <p>
  6161. <p>VaultLdapAuth authenticates with Vault using the LDAP authentication method,
  6162. with the username and password stored in a Kubernetes Secret resource.</p>
  6163. </p>
  6164. <table>
  6165. <thead>
  6166. <tr>
  6167. <th>Field</th>
  6168. <th>Description</th>
  6169. </tr>
  6170. </thead>
  6171. <tbody>
  6172. <tr>
  6173. <td>
  6174. <code>path</code></br>
  6175. <em>
  6176. string
  6177. </em>
  6178. </td>
  6179. <td>
  6180. <p>Path where the LDAP authentication backend is mounted
  6181. in Vault, e.g: &ldquo;ldap&rdquo;</p>
  6182. </td>
  6183. </tr>
  6184. <tr>
  6185. <td>
  6186. <code>username</code></br>
  6187. <em>
  6188. string
  6189. </em>
  6190. </td>
  6191. <td>
  6192. <p>Username is a LDAP user name used to authenticate using the LDAP Vault
  6193. authentication method</p>
  6194. </td>
  6195. </tr>
  6196. <tr>
  6197. <td>
  6198. <code>secretRef</code></br>
  6199. <em>
  6200. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  6201. </em>
  6202. </td>
  6203. <td>
  6204. <p>SecretRef to a key in a Secret resource containing password for the LDAP
  6205. user used to authenticate with Vault using the LDAP authentication
  6206. method</p>
  6207. </td>
  6208. </tr>
  6209. </tbody>
  6210. </table>
  6211. <h3 id="external-secrets.io/v1beta1.VaultUserPassAuth">VaultUserPassAuth
  6212. </h3>
  6213. <p>
  6214. (<em>Appears on:</em>
  6215. <a href="#external-secrets.io/v1beta1.VaultAuth">VaultAuth</a>)
  6216. </p>
  6217. <p>
  6218. <p>VaultUserPassAuth authenticates with Vault using the UserPass authentication method,
  6219. with the username and password stored in a Kubernetes Secret resource.</p>
  6220. </p>
  6221. <table>
  6222. <thead>
  6223. <tr>
  6224. <th>Field</th>
  6225. <th>Description</th>
  6226. </tr>
  6227. </thead>
  6228. <tbody>
  6229. <tr>
  6230. <td>
  6231. <code>path</code></br>
  6232. <em>
  6233. string
  6234. </em>
  6235. </td>
  6236. <td>
  6237. <p>Path where the UserPass authentication backend is mounted
  6238. in Vault, e.g: &ldquo;userpass&rdquo;</p>
  6239. </td>
  6240. </tr>
  6241. <tr>
  6242. <td>
  6243. <code>username</code></br>
  6244. <em>
  6245. string
  6246. </em>
  6247. </td>
  6248. <td>
  6249. <p>Username is a user name used to authenticate using the UserPass Vault
  6250. authentication method</p>
  6251. </td>
  6252. </tr>
  6253. <tr>
  6254. <td>
  6255. <code>secretRef</code></br>
  6256. <em>
  6257. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  6258. </em>
  6259. </td>
  6260. <td>
  6261. <p>SecretRef to a key in a Secret resource containing password for the
  6262. user used to authenticate with Vault using the UserPass authentication
  6263. method</p>
  6264. </td>
  6265. </tr>
  6266. </tbody>
  6267. </table>
  6268. <h3 id="external-secrets.io/v1beta1.VaultProvider">VaultProvider
  6269. </h3>
  6270. <p>
  6271. (<em>Appears on:</em>
  6272. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  6273. </p>
  6274. <p>
  6275. <p>Configures an store to sync secrets using a HashiCorp Vault
  6276. KV backend.</p>
  6277. </p>
  6278. <table>
  6279. <thead>
  6280. <tr>
  6281. <th>Field</th>
  6282. <th>Description</th>
  6283. </tr>
  6284. </thead>
  6285. <tbody>
  6286. <tr>
  6287. <td>
  6288. <code>auth</code></br>
  6289. <em>
  6290. <a href="#external-secrets.io/v1beta1.VaultAuth">
  6291. VaultAuth
  6292. </a>
  6293. </em>
  6294. </td>
  6295. <td>
  6296. <p>Auth configures how secret-manager authenticates with the Vault server.</p>
  6297. </td>
  6298. </tr>
  6299. <tr>
  6300. <td>
  6301. <code>server</code></br>
  6302. <em>
  6303. string
  6304. </em>
  6305. </td>
  6306. <td>
  6307. <p>Server is the connection address for the Vault server, e.g: &ldquo;<a href="https://vault.example.com:8200&quot;">https://vault.example.com:8200&rdquo;</a>.</p>
  6308. </td>
  6309. </tr>
  6310. <tr>
  6311. <td>
  6312. <code>path</code></br>
  6313. <em>
  6314. string
  6315. </em>
  6316. </td>
  6317. <td>
  6318. <em>(Optional)</em>
  6319. <p>Path is the mount path of the Vault KV backend endpoint, e.g:
  6320. &ldquo;secret&rdquo;. The v2 KV secret engine version specific &ldquo;/data&rdquo; path suffix
  6321. for fetching secrets from Vault is optional and will be appended
  6322. if not present in specified path.</p>
  6323. </td>
  6324. </tr>
  6325. <tr>
  6326. <td>
  6327. <code>version</code></br>
  6328. <em>
  6329. <a href="#external-secrets.io/v1beta1.VaultKVStoreVersion">
  6330. VaultKVStoreVersion
  6331. </a>
  6332. </em>
  6333. </td>
  6334. <td>
  6335. <p>Version is the Vault KV secret engine version. This can be either &ldquo;v1&rdquo; or
  6336. &ldquo;v2&rdquo;. Version defaults to &ldquo;v2&rdquo;.</p>
  6337. </td>
  6338. </tr>
  6339. <tr>
  6340. <td>
  6341. <code>namespace</code></br>
  6342. <em>
  6343. string
  6344. </em>
  6345. </td>
  6346. <td>
  6347. <em>(Optional)</em>
  6348. <p>Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows
  6349. Vault environments to support Secure Multi-tenancy. e.g: &ldquo;ns1&rdquo;.
  6350. More about namespaces can be found here <a href="https://www.vaultproject.io/docs/enterprise/namespaces">https://www.vaultproject.io/docs/enterprise/namespaces</a></p>
  6351. </td>
  6352. </tr>
  6353. <tr>
  6354. <td>
  6355. <code>caBundle</code></br>
  6356. <em>
  6357. []byte
  6358. </em>
  6359. </td>
  6360. <td>
  6361. <em>(Optional)</em>
  6362. <p>PEM encoded CA bundle used to validate Vault server certificate. Only used
  6363. if the Server URL is using HTTPS protocol. This parameter is ignored for
  6364. plain HTTP protocol connection. If not set the system root certificates
  6365. are used to validate the TLS connection.</p>
  6366. </td>
  6367. </tr>
  6368. <tr>
  6369. <td>
  6370. <code>caProvider</code></br>
  6371. <em>
  6372. <a href="#external-secrets.io/v1beta1.CAProvider">
  6373. CAProvider
  6374. </a>
  6375. </em>
  6376. </td>
  6377. <td>
  6378. <em>(Optional)</em>
  6379. <p>The provider for the CA bundle to use to validate Vault server certificate.</p>
  6380. </td>
  6381. </tr>
  6382. <tr>
  6383. <td>
  6384. <code>readYourWrites</code></br>
  6385. <em>
  6386. bool
  6387. </em>
  6388. </td>
  6389. <td>
  6390. <em>(Optional)</em>
  6391. <p>ReadYourWrites ensures isolated read-after-write semantics by
  6392. providing discovered cluster replication states in each request.
  6393. More information about eventual consistency in Vault can be found here
  6394. <a href="https://www.vaultproject.io/docs/enterprise/consistency">https://www.vaultproject.io/docs/enterprise/consistency</a></p>
  6395. </td>
  6396. </tr>
  6397. <tr>
  6398. <td>
  6399. <code>forwardInconsistent</code></br>
  6400. <em>
  6401. bool
  6402. </em>
  6403. </td>
  6404. <td>
  6405. <em>(Optional)</em>
  6406. <p>ForwardInconsistent tells Vault to forward read-after-write requests to the Vault
  6407. leader instead of simply retrying within a loop. This can increase performance if
  6408. the option is enabled serverside.
  6409. <a href="https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header">https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header</a></p>
  6410. </td>
  6411. </tr>
  6412. </tbody>
  6413. </table>
  6414. <h3 id="external-secrets.io/v1beta1.WebhookCAProvider">WebhookCAProvider
  6415. </h3>
  6416. <p>
  6417. (<em>Appears on:</em>
  6418. <a href="#external-secrets.io/v1beta1.WebhookProvider">WebhookProvider</a>)
  6419. </p>
  6420. <p>
  6421. <p>Defines a location to fetch the cert for the webhook provider from.</p>
  6422. </p>
  6423. <table>
  6424. <thead>
  6425. <tr>
  6426. <th>Field</th>
  6427. <th>Description</th>
  6428. </tr>
  6429. </thead>
  6430. <tbody>
  6431. <tr>
  6432. <td>
  6433. <code>type</code></br>
  6434. <em>
  6435. <a href="#external-secrets.io/v1beta1.WebhookCAProviderType">
  6436. WebhookCAProviderType
  6437. </a>
  6438. </em>
  6439. </td>
  6440. <td>
  6441. <p>The type of provider to use such as &ldquo;Secret&rdquo;, or &ldquo;ConfigMap&rdquo;.</p>
  6442. </td>
  6443. </tr>
  6444. <tr>
  6445. <td>
  6446. <code>name</code></br>
  6447. <em>
  6448. string
  6449. </em>
  6450. </td>
  6451. <td>
  6452. <p>The name of the object located at the provider type.</p>
  6453. </td>
  6454. </tr>
  6455. <tr>
  6456. <td>
  6457. <code>key</code></br>
  6458. <em>
  6459. string
  6460. </em>
  6461. </td>
  6462. <td>
  6463. <p>The key the value inside of the provider type to use, only used with &ldquo;Secret&rdquo; type</p>
  6464. </td>
  6465. </tr>
  6466. <tr>
  6467. <td>
  6468. <code>namespace</code></br>
  6469. <em>
  6470. string
  6471. </em>
  6472. </td>
  6473. <td>
  6474. <em>(Optional)</em>
  6475. <p>The namespace the Provider type is in.</p>
  6476. </td>
  6477. </tr>
  6478. </tbody>
  6479. </table>
  6480. <h3 id="external-secrets.io/v1beta1.WebhookCAProviderType">WebhookCAProviderType
  6481. (<code>string</code> alias)</p></h3>
  6482. <p>
  6483. (<em>Appears on:</em>
  6484. <a href="#external-secrets.io/v1beta1.WebhookCAProvider">WebhookCAProvider</a>)
  6485. </p>
  6486. <p>
  6487. </p>
  6488. <table>
  6489. <thead>
  6490. <tr>
  6491. <th>Value</th>
  6492. <th>Description</th>
  6493. </tr>
  6494. </thead>
  6495. <tbody><tr><td><p>&#34;ConfigMap&#34;</p></td>
  6496. <td></td>
  6497. </tr><tr><td><p>&#34;Secret&#34;</p></td>
  6498. <td></td>
  6499. </tr></tbody>
  6500. </table>
  6501. <h3 id="external-secrets.io/v1beta1.WebhookProvider">WebhookProvider
  6502. </h3>
  6503. <p>
  6504. (<em>Appears on:</em>
  6505. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  6506. </p>
  6507. <p>
  6508. <p>AkeylessProvider Configures an store to sync secrets using Akeyless KV.</p>
  6509. </p>
  6510. <table>
  6511. <thead>
  6512. <tr>
  6513. <th>Field</th>
  6514. <th>Description</th>
  6515. </tr>
  6516. </thead>
  6517. <tbody>
  6518. <tr>
  6519. <td>
  6520. <code>method</code></br>
  6521. <em>
  6522. string
  6523. </em>
  6524. </td>
  6525. <td>
  6526. <p>Webhook Method</p>
  6527. </td>
  6528. </tr>
  6529. <tr>
  6530. <td>
  6531. <code>url</code></br>
  6532. <em>
  6533. string
  6534. </em>
  6535. </td>
  6536. <td>
  6537. <p>Webhook url to call</p>
  6538. </td>
  6539. </tr>
  6540. <tr>
  6541. <td>
  6542. <code>headers</code></br>
  6543. <em>
  6544. map[string]string
  6545. </em>
  6546. </td>
  6547. <td>
  6548. <em>(Optional)</em>
  6549. <p>Headers</p>
  6550. </td>
  6551. </tr>
  6552. <tr>
  6553. <td>
  6554. <code>body</code></br>
  6555. <em>
  6556. string
  6557. </em>
  6558. </td>
  6559. <td>
  6560. <em>(Optional)</em>
  6561. <p>Body</p>
  6562. </td>
  6563. </tr>
  6564. <tr>
  6565. <td>
  6566. <code>timeout</code></br>
  6567. <em>
  6568. <a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.18/#duration-v1-meta">
  6569. Kubernetes meta/v1.Duration
  6570. </a>
  6571. </em>
  6572. </td>
  6573. <td>
  6574. <em>(Optional)</em>
  6575. <p>Timeout</p>
  6576. </td>
  6577. </tr>
  6578. <tr>
  6579. <td>
  6580. <code>result</code></br>
  6581. <em>
  6582. <a href="#external-secrets.io/v1beta1.WebhookResult">
  6583. WebhookResult
  6584. </a>
  6585. </em>
  6586. </td>
  6587. <td>
  6588. <p>Result formatting</p>
  6589. </td>
  6590. </tr>
  6591. <tr>
  6592. <td>
  6593. <code>secrets</code></br>
  6594. <em>
  6595. <a href="#external-secrets.io/v1beta1.WebhookSecret">
  6596. []WebhookSecret
  6597. </a>
  6598. </em>
  6599. </td>
  6600. <td>
  6601. <em>(Optional)</em>
  6602. <p>Secrets to fill in templates
  6603. These secrets will be passed to the templating function as key value pairs under the given name</p>
  6604. </td>
  6605. </tr>
  6606. <tr>
  6607. <td>
  6608. <code>caBundle</code></br>
  6609. <em>
  6610. []byte
  6611. </em>
  6612. </td>
  6613. <td>
  6614. <em>(Optional)</em>
  6615. <p>PEM encoded CA bundle used to validate webhook server certificate. Only used
  6616. if the Server URL is using HTTPS protocol. This parameter is ignored for
  6617. plain HTTP protocol connection. If not set the system root certificates
  6618. are used to validate the TLS connection.</p>
  6619. </td>
  6620. </tr>
  6621. <tr>
  6622. <td>
  6623. <code>caProvider</code></br>
  6624. <em>
  6625. <a href="#external-secrets.io/v1beta1.WebhookCAProvider">
  6626. WebhookCAProvider
  6627. </a>
  6628. </em>
  6629. </td>
  6630. <td>
  6631. <em>(Optional)</em>
  6632. <p>The provider for the CA bundle to use to validate webhook server certificate.</p>
  6633. </td>
  6634. </tr>
  6635. </tbody>
  6636. </table>
  6637. <h3 id="external-secrets.io/v1beta1.WebhookResult">WebhookResult
  6638. </h3>
  6639. <p>
  6640. (<em>Appears on:</em>
  6641. <a href="#external-secrets.io/v1beta1.WebhookProvider">WebhookProvider</a>)
  6642. </p>
  6643. <p>
  6644. </p>
  6645. <table>
  6646. <thead>
  6647. <tr>
  6648. <th>Field</th>
  6649. <th>Description</th>
  6650. </tr>
  6651. </thead>
  6652. <tbody>
  6653. <tr>
  6654. <td>
  6655. <code>jsonPath</code></br>
  6656. <em>
  6657. string
  6658. </em>
  6659. </td>
  6660. <td>
  6661. <em>(Optional)</em>
  6662. <p>Json path of return value</p>
  6663. </td>
  6664. </tr>
  6665. </tbody>
  6666. </table>
  6667. <h3 id="external-secrets.io/v1beta1.WebhookSecret">WebhookSecret
  6668. </h3>
  6669. <p>
  6670. (<em>Appears on:</em>
  6671. <a href="#external-secrets.io/v1beta1.WebhookProvider">WebhookProvider</a>)
  6672. </p>
  6673. <p>
  6674. </p>
  6675. <table>
  6676. <thead>
  6677. <tr>
  6678. <th>Field</th>
  6679. <th>Description</th>
  6680. </tr>
  6681. </thead>
  6682. <tbody>
  6683. <tr>
  6684. <td>
  6685. <code>name</code></br>
  6686. <em>
  6687. string
  6688. </em>
  6689. </td>
  6690. <td>
  6691. <p>Name of this secret in templates</p>
  6692. </td>
  6693. </tr>
  6694. <tr>
  6695. <td>
  6696. <code>secretRef</code></br>
  6697. <em>
  6698. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  6699. </em>
  6700. </td>
  6701. <td>
  6702. <p>Secret ref to fill in credentials</p>
  6703. </td>
  6704. </tr>
  6705. </tbody>
  6706. </table>
  6707. <h3 id="external-secrets.io/v1beta1.YandexCertificateManagerAuth">YandexCertificateManagerAuth
  6708. </h3>
  6709. <p>
  6710. (<em>Appears on:</em>
  6711. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>)
  6712. </p>
  6713. <p>
  6714. </p>
  6715. <table>
  6716. <thead>
  6717. <tr>
  6718. <th>Field</th>
  6719. <th>Description</th>
  6720. </tr>
  6721. </thead>
  6722. <tbody>
  6723. <tr>
  6724. <td>
  6725. <code>authorizedKeySecretRef</code></br>
  6726. <em>
  6727. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  6728. </em>
  6729. </td>
  6730. <td>
  6731. <em>(Optional)</em>
  6732. <p>The authorized key used for authentication</p>
  6733. </td>
  6734. </tr>
  6735. </tbody>
  6736. </table>
  6737. <h3 id="external-secrets.io/v1beta1.YandexCertificateManagerCAProvider">YandexCertificateManagerCAProvider
  6738. </h3>
  6739. <p>
  6740. (<em>Appears on:</em>
  6741. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerProvider">YandexCertificateManagerProvider</a>)
  6742. </p>
  6743. <p>
  6744. </p>
  6745. <table>
  6746. <thead>
  6747. <tr>
  6748. <th>Field</th>
  6749. <th>Description</th>
  6750. </tr>
  6751. </thead>
  6752. <tbody>
  6753. <tr>
  6754. <td>
  6755. <code>certSecretRef</code></br>
  6756. <em>
  6757. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  6758. </em>
  6759. </td>
  6760. <td>
  6761. </td>
  6762. </tr>
  6763. </tbody>
  6764. </table>
  6765. <h3 id="external-secrets.io/v1beta1.YandexCertificateManagerProvider">YandexCertificateManagerProvider
  6766. </h3>
  6767. <p>
  6768. (<em>Appears on:</em>
  6769. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  6770. </p>
  6771. <p>
  6772. <p>YandexCertificateManagerProvider Configures a store to sync secrets using the Yandex Certificate Manager provider.</p>
  6773. </p>
  6774. <table>
  6775. <thead>
  6776. <tr>
  6777. <th>Field</th>
  6778. <th>Description</th>
  6779. </tr>
  6780. </thead>
  6781. <tbody>
  6782. <tr>
  6783. <td>
  6784. <code>apiEndpoint</code></br>
  6785. <em>
  6786. string
  6787. </em>
  6788. </td>
  6789. <td>
  6790. <em>(Optional)</em>
  6791. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  6792. </td>
  6793. </tr>
  6794. <tr>
  6795. <td>
  6796. <code>auth</code></br>
  6797. <em>
  6798. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerAuth">
  6799. YandexCertificateManagerAuth
  6800. </a>
  6801. </em>
  6802. </td>
  6803. <td>
  6804. <p>Auth defines the information necessary to authenticate against Yandex Certificate Manager</p>
  6805. </td>
  6806. </tr>
  6807. <tr>
  6808. <td>
  6809. <code>caProvider</code></br>
  6810. <em>
  6811. <a href="#external-secrets.io/v1beta1.YandexCertificateManagerCAProvider">
  6812. YandexCertificateManagerCAProvider
  6813. </a>
  6814. </em>
  6815. </td>
  6816. <td>
  6817. <em>(Optional)</em>
  6818. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  6819. </td>
  6820. </tr>
  6821. </tbody>
  6822. </table>
  6823. <h3 id="external-secrets.io/v1beta1.YandexLockboxAuth">YandexLockboxAuth
  6824. </h3>
  6825. <p>
  6826. (<em>Appears on:</em>
  6827. <a href="#external-secrets.io/v1beta1.YandexLockboxProvider">YandexLockboxProvider</a>)
  6828. </p>
  6829. <p>
  6830. </p>
  6831. <table>
  6832. <thead>
  6833. <tr>
  6834. <th>Field</th>
  6835. <th>Description</th>
  6836. </tr>
  6837. </thead>
  6838. <tbody>
  6839. <tr>
  6840. <td>
  6841. <code>authorizedKeySecretRef</code></br>
  6842. <em>
  6843. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  6844. </em>
  6845. </td>
  6846. <td>
  6847. <em>(Optional)</em>
  6848. <p>The authorized key used for authentication</p>
  6849. </td>
  6850. </tr>
  6851. </tbody>
  6852. </table>
  6853. <h3 id="external-secrets.io/v1beta1.YandexLockboxCAProvider">YandexLockboxCAProvider
  6854. </h3>
  6855. <p>
  6856. (<em>Appears on:</em>
  6857. <a href="#external-secrets.io/v1beta1.YandexLockboxProvider">YandexLockboxProvider</a>)
  6858. </p>
  6859. <p>
  6860. </p>
  6861. <table>
  6862. <thead>
  6863. <tr>
  6864. <th>Field</th>
  6865. <th>Description</th>
  6866. </tr>
  6867. </thead>
  6868. <tbody>
  6869. <tr>
  6870. <td>
  6871. <code>certSecretRef</code></br>
  6872. <em>
  6873. github.com/external-secrets/external-secrets/apis/meta/v1.SecretKeySelector
  6874. </em>
  6875. </td>
  6876. <td>
  6877. </td>
  6878. </tr>
  6879. </tbody>
  6880. </table>
  6881. <h3 id="external-secrets.io/v1beta1.YandexLockboxProvider">YandexLockboxProvider
  6882. </h3>
  6883. <p>
  6884. (<em>Appears on:</em>
  6885. <a href="#external-secrets.io/v1beta1.SecretStoreProvider">SecretStoreProvider</a>)
  6886. </p>
  6887. <p>
  6888. <p>YandexLockboxProvider Configures a store to sync secrets using the Yandex Lockbox provider.</p>
  6889. </p>
  6890. <table>
  6891. <thead>
  6892. <tr>
  6893. <th>Field</th>
  6894. <th>Description</th>
  6895. </tr>
  6896. </thead>
  6897. <tbody>
  6898. <tr>
  6899. <td>
  6900. <code>apiEndpoint</code></br>
  6901. <em>
  6902. string
  6903. </em>
  6904. </td>
  6905. <td>
  6906. <em>(Optional)</em>
  6907. <p>Yandex.Cloud API endpoint (e.g. &lsquo;api.cloud.yandex.net:443&rsquo;)</p>
  6908. </td>
  6909. </tr>
  6910. <tr>
  6911. <td>
  6912. <code>auth</code></br>
  6913. <em>
  6914. <a href="#external-secrets.io/v1beta1.YandexLockboxAuth">
  6915. YandexLockboxAuth
  6916. </a>
  6917. </em>
  6918. </td>
  6919. <td>
  6920. <p>Auth defines the information necessary to authenticate against Yandex Lockbox</p>
  6921. </td>
  6922. </tr>
  6923. <tr>
  6924. <td>
  6925. <code>caProvider</code></br>
  6926. <em>
  6927. <a href="#external-secrets.io/v1beta1.YandexLockboxCAProvider">
  6928. YandexLockboxCAProvider
  6929. </a>
  6930. </em>
  6931. </td>
  6932. <td>
  6933. <em>(Optional)</em>
  6934. <p>The provider for the CA bundle to use to validate Yandex.Cloud server certificate.</p>
  6935. </td>
  6936. </tr>
  6937. </tbody>
  6938. </table>
  6939. <hr/>
  6940. <p><em>
  6941. Generated with <code>gen-crd-api-reference-docs</code>.
  6942. </em></p>
  6943. </article>
  6944. </div>
  6945. </div>
  6946. </main>
  6947. <footer class="md-footer">
  6948. <div class="md-footer-meta md-typeset">
  6949. <div class="md-footer-meta__inner md-grid">
  6950. <div class="md-copyright">
  6951. <div class="md-copyright__highlight">
  6952. &copy; 2023 The external-secrets Authors.<br/>
  6953. &copy; 2023 The Linux Foundation. All rights reserved.<br/><br/>
  6954. The Linux Foundation has registered trademarks and uses trademarks.<br/>
  6955. For a list of trademarks of The Linux Foundation, please see our <a href="https://www.linuxfoundation.org/trademark-usage/">Trademark Usage page</a>.
  6956. </div>
  6957. Made with
  6958. <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
  6959. Material for MkDocs
  6960. </a>
  6961. </div>
  6962. </div>
  6963. </div>
  6964. </footer>
  6965. </div>
  6966. <div class="md-dialog" data-md-component="dialog">
  6967. <div class="md-dialog__inner md-typeset"></div>
  6968. </div>
  6969. <script id="__config" type="application/json">{"base": "..", "features": ["navigation.tabs", "navigation.indexes", "navigation.expand"], "search": "../assets/javascripts/workers/search.208ed371.min.js", "translations": {"clipboard.copied": "Copied to clipboard", "clipboard.copy": "Copy to clipboard", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.placeholder": "Type to start searching", "search.result.term.missing": "Missing", "select.version": "Select version"}, "version": {"provider": "mike"}}</script>
  6970. <script src="../assets/javascripts/bundle.fac441b0.min.js"></script>
  6971. </body>
  6972. </html>